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); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 100 | static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 101 | struct btrfs_space_info *space_info, |
| 102 | u64 orig_bytes, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 103 | enum btrfs_reserve_flush_enum flush, |
| 104 | bool system_chunk); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 105 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 106 | struct btrfs_space_info *space_info, |
| 107 | u64 num_bytes); |
| 108 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 109 | struct btrfs_space_info *space_info, |
| 110 | u64 num_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 111 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 112 | static noinline int |
| 113 | block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 114 | { |
| 115 | smp_mb(); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 116 | return cache->cached == BTRFS_CACHE_FINISHED || |
| 117 | cache->cached == BTRFS_CACHE_ERROR; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 118 | } |
| 119 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 120 | static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits) |
| 121 | { |
| 122 | return (cache->flags & bits) == bits; |
| 123 | } |
| 124 | |
Filipe Manana | 758f2df | 2015-11-19 11:45:48 +0000 | [diff] [blame] | 125 | void btrfs_get_block_group(struct btrfs_block_group_cache *cache) |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 126 | { |
| 127 | atomic_inc(&cache->count); |
| 128 | } |
| 129 | |
| 130 | void btrfs_put_block_group(struct btrfs_block_group_cache *cache) |
| 131 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 132 | if (atomic_dec_and_test(&cache->count)) { |
| 133 | WARN_ON(cache->pinned > 0); |
| 134 | WARN_ON(cache->reserved > 0); |
Qu Wenruo | 0966a7b | 2017-04-14 08:35:54 +0800 | [diff] [blame] | 135 | |
| 136 | /* |
| 137 | * If not empty, someone is still holding mutex of |
| 138 | * full_stripe_lock, which can only be released by caller. |
| 139 | * And it will definitely cause use-after-free when caller |
| 140 | * tries to release full stripe lock. |
| 141 | * |
| 142 | * No better way to resolve, but only to warn. |
| 143 | */ |
| 144 | WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root)); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 145 | kfree(cache->free_space_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 146 | kfree(cache); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 147 | } |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 150 | /* |
| 151 | * this adds the block group to the fs_info rb tree for the block group |
| 152 | * cache |
| 153 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 154 | static int btrfs_add_block_group_cache(struct btrfs_fs_info *info, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 155 | struct btrfs_block_group_cache *block_group) |
| 156 | { |
| 157 | struct rb_node **p; |
| 158 | struct rb_node *parent = NULL; |
| 159 | struct btrfs_block_group_cache *cache; |
| 160 | |
| 161 | spin_lock(&info->block_group_cache_lock); |
| 162 | p = &info->block_group_cache_tree.rb_node; |
| 163 | |
| 164 | while (*p) { |
| 165 | parent = *p; |
| 166 | cache = rb_entry(parent, struct btrfs_block_group_cache, |
| 167 | cache_node); |
| 168 | if (block_group->key.objectid < cache->key.objectid) { |
| 169 | p = &(*p)->rb_left; |
| 170 | } else if (block_group->key.objectid > cache->key.objectid) { |
| 171 | p = &(*p)->rb_right; |
| 172 | } else { |
| 173 | spin_unlock(&info->block_group_cache_lock); |
| 174 | return -EEXIST; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | rb_link_node(&block_group->cache_node, parent, p); |
| 179 | rb_insert_color(&block_group->cache_node, |
| 180 | &info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 181 | |
| 182 | if (info->first_logical_byte > block_group->key.objectid) |
| 183 | info->first_logical_byte = block_group->key.objectid; |
| 184 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 185 | spin_unlock(&info->block_group_cache_lock); |
| 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | * This will return the block group at or after bytenr if contains is 0, else |
| 192 | * it will return the block group that contains the bytenr |
| 193 | */ |
| 194 | static struct btrfs_block_group_cache * |
| 195 | block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr, |
| 196 | int contains) |
| 197 | { |
| 198 | struct btrfs_block_group_cache *cache, *ret = NULL; |
| 199 | struct rb_node *n; |
| 200 | u64 end, start; |
| 201 | |
| 202 | spin_lock(&info->block_group_cache_lock); |
| 203 | n = info->block_group_cache_tree.rb_node; |
| 204 | |
| 205 | while (n) { |
| 206 | cache = rb_entry(n, struct btrfs_block_group_cache, |
| 207 | cache_node); |
| 208 | end = cache->key.objectid + cache->key.offset - 1; |
| 209 | start = cache->key.objectid; |
| 210 | |
| 211 | if (bytenr < start) { |
| 212 | if (!contains && (!ret || start < ret->key.objectid)) |
| 213 | ret = cache; |
| 214 | n = n->rb_left; |
| 215 | } else if (bytenr > start) { |
| 216 | if (contains && bytenr <= end) { |
| 217 | ret = cache; |
| 218 | break; |
| 219 | } |
| 220 | n = n->rb_right; |
| 221 | } else { |
| 222 | ret = cache; |
| 223 | break; |
| 224 | } |
| 225 | } |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 226 | if (ret) { |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 227 | btrfs_get_block_group(ret); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 228 | if (bytenr == 0 && info->first_logical_byte > ret->key.objectid) |
| 229 | info->first_logical_byte = ret->key.objectid; |
| 230 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 231 | spin_unlock(&info->block_group_cache_lock); |
| 232 | |
| 233 | return ret; |
| 234 | } |
| 235 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 236 | static int add_excluded_extent(struct btrfs_fs_info *fs_info, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 237 | u64 start, u64 num_bytes) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 238 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 239 | u64 end = start + num_bytes - 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 240 | set_extent_bits(&fs_info->freed_extents[0], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 241 | start, end, EXTENT_UPTODATE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 242 | set_extent_bits(&fs_info->freed_extents[1], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 243 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 244 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 245 | } |
| 246 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 247 | static void free_excluded_extents(struct btrfs_fs_info *fs_info, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 248 | struct btrfs_block_group_cache *cache) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 249 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 250 | u64 start, end; |
| 251 | |
| 252 | start = cache->key.objectid; |
| 253 | end = start + cache->key.offset - 1; |
| 254 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 255 | clear_extent_bits(&fs_info->freed_extents[0], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 256 | start, end, EXTENT_UPTODATE); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 257 | clear_extent_bits(&fs_info->freed_extents[1], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 258 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 259 | } |
| 260 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 261 | static int exclude_super_stripes(struct btrfs_fs_info *fs_info, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 262 | struct btrfs_block_group_cache *cache) |
| 263 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 264 | u64 bytenr; |
| 265 | u64 *logical; |
| 266 | int stripe_len; |
| 267 | int i, nr, ret; |
| 268 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 269 | if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) { |
| 270 | stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid; |
| 271 | cache->bytes_super += stripe_len; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 272 | ret = add_excluded_extent(fs_info, cache->key.objectid, |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 273 | stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 274 | if (ret) |
| 275 | return ret; |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 278 | for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 279 | bytenr = btrfs_sb_offset(i); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 280 | ret = btrfs_rmap_block(fs_info, cache->key.objectid, |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 281 | bytenr, 0, &logical, &nr, &stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 282 | if (ret) |
| 283 | return ret; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 284 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 285 | while (nr--) { |
Josef Bacik | 51bf5f0 | 2013-04-23 12:55:21 -0400 | [diff] [blame] | 286 | u64 start, len; |
| 287 | |
| 288 | if (logical[nr] > cache->key.objectid + |
| 289 | cache->key.offset) |
| 290 | continue; |
| 291 | |
| 292 | if (logical[nr] + stripe_len <= cache->key.objectid) |
| 293 | continue; |
| 294 | |
| 295 | start = logical[nr]; |
| 296 | if (start < cache->key.objectid) { |
| 297 | start = cache->key.objectid; |
| 298 | len = (logical[nr] + stripe_len) - start; |
| 299 | } else { |
| 300 | len = min_t(u64, stripe_len, |
| 301 | cache->key.objectid + |
| 302 | cache->key.offset - start); |
| 303 | } |
| 304 | |
| 305 | cache->bytes_super += len; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 306 | ret = add_excluded_extent(fs_info, start, len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 307 | if (ret) { |
| 308 | kfree(logical); |
| 309 | return ret; |
| 310 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 311 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 312 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 313 | kfree(logical); |
| 314 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 315 | return 0; |
| 316 | } |
| 317 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 318 | static struct btrfs_caching_control * |
| 319 | get_caching_control(struct btrfs_block_group_cache *cache) |
| 320 | { |
| 321 | struct btrfs_caching_control *ctl; |
| 322 | |
| 323 | spin_lock(&cache->lock); |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 324 | if (!cache->caching_ctl) { |
| 325 | spin_unlock(&cache->lock); |
| 326 | return NULL; |
| 327 | } |
| 328 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 329 | ctl = cache->caching_ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 330 | refcount_inc(&ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 331 | spin_unlock(&cache->lock); |
| 332 | return ctl; |
| 333 | } |
| 334 | |
| 335 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 336 | { |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 337 | if (refcount_dec_and_test(&ctl->count)) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 338 | kfree(ctl); |
| 339 | } |
| 340 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 341 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 342 | static void fragment_free_space(struct btrfs_block_group_cache *block_group) |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 343 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 344 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 345 | u64 start = block_group->key.objectid; |
| 346 | u64 len = block_group->key.offset; |
| 347 | u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ? |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 348 | fs_info->nodesize : fs_info->sectorsize; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 349 | u64 step = chunk << 1; |
| 350 | |
| 351 | while (len > chunk) { |
| 352 | btrfs_remove_free_space(block_group, start, chunk); |
| 353 | start += step; |
| 354 | if (len < step) |
| 355 | len = 0; |
| 356 | else |
| 357 | len -= step; |
| 358 | } |
| 359 | } |
| 360 | #endif |
| 361 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 362 | /* |
| 363 | * this is only called by cache_block_group, since we could have freed extents |
| 364 | * we need to check the pinned_extents for any extents that can't be used yet |
| 365 | * since their free space will be released as soon as the transaction commits. |
| 366 | */ |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 367 | u64 add_new_free_space(struct btrfs_block_group_cache *block_group, |
| 368 | struct btrfs_fs_info *info, u64 start, u64 end) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 369 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 370 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 371 | int ret; |
| 372 | |
| 373 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 374 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 375 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 376 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 377 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 378 | if (ret) |
| 379 | break; |
| 380 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 381 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 382 | start = extent_end + 1; |
| 383 | } else if (extent_start > start && extent_start < end) { |
| 384 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 385 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 386 | ret = btrfs_add_free_space(block_group, start, |
| 387 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 388 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 389 | start = extent_end + 1; |
| 390 | } else { |
| 391 | break; |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | if (start < end) { |
| 396 | size = end - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 397 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 398 | ret = btrfs_add_free_space(block_group, start, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 399 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 400 | } |
| 401 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 402 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 403 | } |
| 404 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 405 | static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 406 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 407 | struct btrfs_block_group_cache *block_group = caching_ctl->block_group; |
| 408 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
| 409 | struct btrfs_root *extent_root = fs_info->extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 410 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 411 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 412 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 413 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 414 | u64 last = 0; |
| 415 | u32 nritems; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 416 | int ret; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 417 | bool wakeup = true; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 418 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 419 | path = btrfs_alloc_path(); |
| 420 | if (!path) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 421 | return -ENOMEM; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 422 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 423 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 424 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 425 | #ifdef CONFIG_BTRFS_DEBUG |
| 426 | /* |
| 427 | * If we're fragmenting we don't want to make anybody think we can |
| 428 | * allocate from this block group until we've had a chance to fragment |
| 429 | * the free space. |
| 430 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 431 | if (btrfs_should_fragment_free_space(block_group)) |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 432 | wakeup = false; |
| 433 | #endif |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 434 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 435 | * We don't want to deadlock with somebody trying to allocate a new |
| 436 | * extent for the extent root while also trying to search the extent |
| 437 | * root to add free space. So we skip locking and search the commit |
| 438 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 439 | */ |
| 440 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 441 | path->search_commit_root = 1; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 442 | path->reada = READA_FORWARD; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 443 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 444 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 445 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 446 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 447 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 448 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 449 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 450 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 451 | goto out; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 452 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 453 | leaf = path->nodes[0]; |
| 454 | nritems = btrfs_header_nritems(leaf); |
| 455 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 456 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 457 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 458 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 459 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 460 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 461 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 462 | if (path->slots[0] < nritems) { |
| 463 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 464 | } else { |
| 465 | ret = find_next_key(path, 0, &key); |
| 466 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 467 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 468 | |
Josef Bacik | c9ea7b2 | 2013-09-19 10:02:11 -0400 | [diff] [blame] | 469 | if (need_resched() || |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 470 | rwsem_is_contended(&fs_info->commit_root_sem)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 471 | if (wakeup) |
| 472 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 473 | btrfs_release_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 474 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 475 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 476 | cond_resched(); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 477 | mutex_lock(&caching_ctl->mutex); |
| 478 | down_read(&fs_info->commit_root_sem); |
| 479 | goto next; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 480 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 481 | |
| 482 | ret = btrfs_next_leaf(extent_root, path); |
| 483 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 484 | goto out; |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 485 | if (ret) |
| 486 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 487 | leaf = path->nodes[0]; |
| 488 | nritems = btrfs_header_nritems(leaf); |
| 489 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 490 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 491 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 492 | if (key.objectid < last) { |
| 493 | key.objectid = last; |
| 494 | key.offset = 0; |
| 495 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 496 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 497 | if (wakeup) |
| 498 | caching_ctl->progress = last; |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 499 | btrfs_release_path(path); |
| 500 | goto next; |
| 501 | } |
| 502 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 503 | if (key.objectid < block_group->key.objectid) { |
| 504 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 505 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 506 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 507 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 508 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 509 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 510 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 511 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 512 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 513 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 514 | total_found += add_new_free_space(block_group, |
| 515 | fs_info, last, |
| 516 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 517 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 518 | last = key.objectid + |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 519 | fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 520 | else |
| 521 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 522 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 523 | if (total_found > CACHING_CTL_WAKE_UP) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 524 | total_found = 0; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 525 | if (wakeup) |
| 526 | wake_up(&caching_ctl->wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 527 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 528 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 529 | path->slots[0]++; |
| 530 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 531 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 532 | |
| 533 | total_found += add_new_free_space(block_group, fs_info, last, |
| 534 | block_group->key.objectid + |
| 535 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 536 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 537 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 538 | out: |
| 539 | btrfs_free_path(path); |
| 540 | return ret; |
| 541 | } |
| 542 | |
| 543 | static noinline void caching_thread(struct btrfs_work *work) |
| 544 | { |
| 545 | struct btrfs_block_group_cache *block_group; |
| 546 | struct btrfs_fs_info *fs_info; |
| 547 | struct btrfs_caching_control *caching_ctl; |
Chris Mason | b4570aa | 2015-12-30 07:37:26 -0800 | [diff] [blame] | 548 | struct btrfs_root *extent_root; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 549 | int ret; |
| 550 | |
| 551 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 552 | block_group = caching_ctl->block_group; |
| 553 | fs_info = block_group->fs_info; |
Chris Mason | b4570aa | 2015-12-30 07:37:26 -0800 | [diff] [blame] | 554 | extent_root = fs_info->extent_root; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 555 | |
| 556 | mutex_lock(&caching_ctl->mutex); |
| 557 | down_read(&fs_info->commit_root_sem); |
| 558 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 559 | if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) |
| 560 | ret = load_free_space_tree(caching_ctl); |
| 561 | else |
| 562 | ret = load_extent_tree_free(caching_ctl); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 563 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 564 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 565 | block_group->caching_ctl = NULL; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 566 | block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 567 | spin_unlock(&block_group->lock); |
| 568 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 569 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 570 | if (btrfs_should_fragment_free_space(block_group)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 571 | u64 bytes_used; |
| 572 | |
| 573 | spin_lock(&block_group->space_info->lock); |
| 574 | spin_lock(&block_group->lock); |
| 575 | bytes_used = block_group->key.offset - |
| 576 | btrfs_block_group_used(&block_group->item); |
| 577 | block_group->space_info->bytes_used += bytes_used >> 1; |
| 578 | spin_unlock(&block_group->lock); |
| 579 | spin_unlock(&block_group->space_info->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 580 | fragment_free_space(block_group); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 581 | } |
| 582 | #endif |
| 583 | |
| 584 | caching_ctl->progress = (u64)-1; |
Chris Mason | f7d3d2f | 2015-12-18 11:11:10 -0800 | [diff] [blame] | 585 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 586 | up_read(&fs_info->commit_root_sem); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 587 | free_excluded_extents(fs_info, block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 588 | mutex_unlock(&caching_ctl->mutex); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 589 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 590 | wake_up(&caching_ctl->wait); |
| 591 | |
| 592 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 593 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 594 | } |
| 595 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 596 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 597 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 598 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 599 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 600 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 601 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 602 | int ret = 0; |
| 603 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 604 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 605 | if (!caching_ctl) |
| 606 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 607 | |
| 608 | INIT_LIST_HEAD(&caching_ctl->list); |
| 609 | mutex_init(&caching_ctl->mutex); |
| 610 | init_waitqueue_head(&caching_ctl->wait); |
| 611 | caching_ctl->block_group = cache; |
| 612 | caching_ctl->progress = cache->key.objectid; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 613 | refcount_set(&caching_ctl->count, 1); |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 614 | btrfs_init_work(&caching_ctl->work, btrfs_cache_helper, |
| 615 | caching_thread, NULL, NULL); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 616 | |
| 617 | spin_lock(&cache->lock); |
| 618 | /* |
| 619 | * This should be a rare occasion, but this could happen I think in the |
| 620 | * case where one thread starts to load the space cache info, and then |
| 621 | * some other thread starts a transaction commit which tries to do an |
| 622 | * allocation while the other thread is still loading the space cache |
| 623 | * info. The previous loop should have kept us from choosing this block |
| 624 | * group, but if we've moved to the state where we will wait on caching |
| 625 | * block groups we need to first check if we're doing a fast load here, |
| 626 | * so we can wait for it to finish, otherwise we could end up allocating |
| 627 | * from a block group who's cache gets evicted for one reason or |
| 628 | * another. |
| 629 | */ |
| 630 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 631 | struct btrfs_caching_control *ctl; |
| 632 | |
| 633 | ctl = cache->caching_ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 634 | refcount_inc(&ctl->count); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 635 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 636 | spin_unlock(&cache->lock); |
| 637 | |
| 638 | schedule(); |
| 639 | |
| 640 | finish_wait(&ctl->wait, &wait); |
| 641 | put_caching_control(ctl); |
| 642 | spin_lock(&cache->lock); |
| 643 | } |
| 644 | |
| 645 | if (cache->cached != BTRFS_CACHE_NO) { |
| 646 | spin_unlock(&cache->lock); |
| 647 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 648 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 649 | } |
| 650 | WARN_ON(cache->caching_ctl); |
| 651 | cache->caching_ctl = caching_ctl; |
| 652 | cache->cached = BTRFS_CACHE_FAST; |
| 653 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 654 | |
Josef Bacik | d53ba47 | 2012-04-12 16:03:57 -0400 | [diff] [blame] | 655 | if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 656 | mutex_lock(&caching_ctl->mutex); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 657 | ret = load_free_space_cache(fs_info, cache); |
| 658 | |
| 659 | spin_lock(&cache->lock); |
| 660 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 661 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 662 | cache->cached = BTRFS_CACHE_FINISHED; |
| 663 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 664 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 665 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 666 | if (load_cache_only) { |
| 667 | cache->caching_ctl = NULL; |
| 668 | cache->cached = BTRFS_CACHE_NO; |
| 669 | } else { |
| 670 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 671 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 672 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 673 | } |
| 674 | spin_unlock(&cache->lock); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 675 | #ifdef CONFIG_BTRFS_DEBUG |
| 676 | if (ret == 1 && |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 677 | btrfs_should_fragment_free_space(cache)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 678 | u64 bytes_used; |
| 679 | |
| 680 | spin_lock(&cache->space_info->lock); |
| 681 | spin_lock(&cache->lock); |
| 682 | bytes_used = cache->key.offset - |
| 683 | btrfs_block_group_used(&cache->item); |
| 684 | cache->space_info->bytes_used += bytes_used >> 1; |
| 685 | spin_unlock(&cache->lock); |
| 686 | spin_unlock(&cache->space_info->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 687 | fragment_free_space(cache); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 688 | } |
| 689 | #endif |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 690 | mutex_unlock(&caching_ctl->mutex); |
| 691 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 692 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 693 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 694 | put_caching_control(caching_ctl); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 695 | free_excluded_extents(fs_info, cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 696 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 697 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 698 | } else { |
| 699 | /* |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 700 | * We're either using the free space tree or no caching at all. |
| 701 | * Set cached to the appropriate value and wakeup any waiters. |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 702 | */ |
| 703 | spin_lock(&cache->lock); |
| 704 | if (load_cache_only) { |
| 705 | cache->caching_ctl = NULL; |
| 706 | cache->cached = BTRFS_CACHE_NO; |
| 707 | } else { |
| 708 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 709 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 710 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 711 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 712 | wake_up(&caching_ctl->wait); |
| 713 | } |
| 714 | |
| 715 | if (load_cache_only) { |
| 716 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 717 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 718 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 719 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 720 | down_write(&fs_info->commit_root_sem); |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 721 | refcount_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 722 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 723 | up_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 724 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 725 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 726 | |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 727 | btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 728 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 729 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 730 | } |
| 731 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 732 | /* |
| 733 | * return the block group that starts at or after bytenr |
| 734 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 735 | static struct btrfs_block_group_cache * |
| 736 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 737 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 738 | return block_group_cache_tree_search(info, bytenr, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 739 | } |
| 740 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 741 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 742 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 743 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 744 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 745 | struct btrfs_fs_info *info, |
| 746 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 747 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 748 | return block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 749 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 750 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 751 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 752 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 753 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 754 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 755 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 756 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 757 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 758 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 759 | rcu_read_lock(); |
| 760 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 761 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 762 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 763 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 764 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 765 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 766 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 767 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 768 | } |
| 769 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 770 | /* |
| 771 | * after adding space to the filesystem, we need to clear the full flags |
| 772 | * on all the space infos. |
| 773 | */ |
| 774 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 775 | { |
| 776 | struct list_head *head = &info->space_info; |
| 777 | struct btrfs_space_info *found; |
| 778 | |
| 779 | rcu_read_lock(); |
| 780 | list_for_each_entry_rcu(found, head, list) |
| 781 | found->full = 0; |
| 782 | rcu_read_unlock(); |
| 783 | } |
| 784 | |
Filipe Manana | 1a4ed8f | 2014-10-27 10:44:24 +0000 | [diff] [blame] | 785 | /* 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] | 786 | 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] | 787 | { |
| 788 | int ret; |
| 789 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 790 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 791 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 792 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 793 | if (!path) |
| 794 | return -ENOMEM; |
| 795 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 796 | key.objectid = start; |
| 797 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 798 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 799 | 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] | 800 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 801 | return ret; |
| 802 | } |
| 803 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 804 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 805 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 806 | * |
| 807 | * the head node for delayed ref is used to store the sum of all the |
| 808 | * reference count modifications queued up in the rbtree. the head |
| 809 | * node may also store the extent flags to set. This way you can check |
| 810 | * to see what the reference count and extent flags would be if all of |
| 811 | * the delayed refs are not processed. |
| 812 | */ |
| 813 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 814 | struct btrfs_fs_info *fs_info, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 815 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 816 | { |
| 817 | struct btrfs_delayed_ref_head *head; |
| 818 | struct btrfs_delayed_ref_root *delayed_refs; |
| 819 | struct btrfs_path *path; |
| 820 | struct btrfs_extent_item *ei; |
| 821 | struct extent_buffer *leaf; |
| 822 | struct btrfs_key key; |
| 823 | u32 item_size; |
| 824 | u64 num_refs; |
| 825 | u64 extent_flags; |
| 826 | int ret; |
| 827 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 828 | /* |
| 829 | * If we don't have skinny metadata, don't bother doing anything |
| 830 | * different |
| 831 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 832 | if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) { |
| 833 | offset = fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 834 | metadata = 0; |
| 835 | } |
| 836 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 837 | path = btrfs_alloc_path(); |
| 838 | if (!path) |
| 839 | return -ENOMEM; |
| 840 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 841 | if (!trans) { |
| 842 | path->skip_locking = 1; |
| 843 | path->search_commit_root = 1; |
| 844 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 845 | |
| 846 | search_again: |
| 847 | key.objectid = bytenr; |
| 848 | key.offset = offset; |
| 849 | if (metadata) |
| 850 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 851 | else |
| 852 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 853 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 854 | 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] | 855 | if (ret < 0) |
| 856 | goto out_free; |
| 857 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 858 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 859 | if (path->slots[0]) { |
| 860 | path->slots[0]--; |
| 861 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 862 | path->slots[0]); |
| 863 | if (key.objectid == bytenr && |
| 864 | key.type == BTRFS_EXTENT_ITEM_KEY && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 865 | key.offset == fs_info->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 866 | ret = 0; |
| 867 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 868 | } |
| 869 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 870 | if (ret == 0) { |
| 871 | leaf = path->nodes[0]; |
| 872 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 873 | if (item_size >= sizeof(*ei)) { |
| 874 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 875 | struct btrfs_extent_item); |
| 876 | num_refs = btrfs_extent_refs(leaf, ei); |
| 877 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 878 | } else { |
| 879 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 880 | struct btrfs_extent_item_v0 *ei0; |
| 881 | BUG_ON(item_size != sizeof(*ei0)); |
| 882 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 883 | struct btrfs_extent_item_v0); |
| 884 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 885 | /* FIXME: this isn't correct for data */ |
| 886 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 887 | #else |
| 888 | BUG(); |
| 889 | #endif |
| 890 | } |
| 891 | BUG_ON(num_refs == 0); |
| 892 | } else { |
| 893 | num_refs = 0; |
| 894 | extent_flags = 0; |
| 895 | ret = 0; |
| 896 | } |
| 897 | |
| 898 | if (!trans) |
| 899 | goto out; |
| 900 | |
| 901 | delayed_refs = &trans->transaction->delayed_refs; |
| 902 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 903 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 904 | if (head) { |
| 905 | if (!mutex_trylock(&head->mutex)) { |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 906 | refcount_inc(&head->node.refs); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 907 | spin_unlock(&delayed_refs->lock); |
| 908 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 909 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 910 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 911 | /* |
| 912 | * Mutex was contended, block until it's released and try |
| 913 | * again |
| 914 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 915 | mutex_lock(&head->mutex); |
| 916 | mutex_unlock(&head->mutex); |
| 917 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 918 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 919 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 920 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 921 | if (head->extent_op && head->extent_op->update_flags) |
| 922 | extent_flags |= head->extent_op->flags_to_set; |
| 923 | else |
| 924 | BUG_ON(num_refs == 0); |
| 925 | |
| 926 | num_refs += head->node.ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 927 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 928 | mutex_unlock(&head->mutex); |
| 929 | } |
| 930 | spin_unlock(&delayed_refs->lock); |
| 931 | out: |
| 932 | WARN_ON(num_refs == 0); |
| 933 | if (refs) |
| 934 | *refs = num_refs; |
| 935 | if (flags) |
| 936 | *flags = extent_flags; |
| 937 | out_free: |
| 938 | btrfs_free_path(path); |
| 939 | return ret; |
| 940 | } |
| 941 | |
| 942 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 943 | * Back reference rules. Back refs have three main goals: |
| 944 | * |
| 945 | * 1) differentiate between all holders of references to an extent so that |
| 946 | * when a reference is dropped we can make sure it was a valid reference |
| 947 | * before freeing the extent. |
| 948 | * |
| 949 | * 2) Provide enough information to quickly find the holders of an extent |
| 950 | * if we notice a given block is corrupted or bad. |
| 951 | * |
| 952 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 953 | * maintenance. This is actually the same as #2, but with a slightly |
| 954 | * different use case. |
| 955 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 956 | * There are two kinds of back refs. The implicit back refs is optimized |
| 957 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 958 | * back refs of this kind provide information about the block's owner tree |
| 959 | * and the pointer's key. These information allow us to find the block by |
| 960 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 961 | * referenced by their owner trees. The location of tree block is recorded |
| 962 | * in the back refs. Actually the full back refs is generic, and can be |
| 963 | * used in all cases the implicit back refs is used. The major shortcoming |
| 964 | * of the full back refs is its overhead. Every time a tree block gets |
| 965 | * COWed, we have to update back refs entry for all pointers in it. |
| 966 | * |
| 967 | * For a newly allocated tree block, we use implicit back refs for |
| 968 | * pointers in it. This means most tree related operations only involve |
| 969 | * implicit back refs. For a tree block created in old transaction, the |
| 970 | * only way to drop a reference to it is COW it. So we can detect the |
| 971 | * event that tree block loses its owner tree's reference and do the |
| 972 | * back refs conversion. |
| 973 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 974 | * 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] | 975 | * |
| 976 | * The reference count of the block is one and the tree is the block's |
| 977 | * owner tree. Nothing to do in this case. |
| 978 | * |
| 979 | * The reference count of the block is one and the tree is not the |
| 980 | * block's owner tree. In this case, full back refs is used for pointers |
| 981 | * in the block. Remove these full back refs, add implicit back refs for |
| 982 | * every pointers in the new block. |
| 983 | * |
| 984 | * The reference count of the block is greater than one and the tree is |
| 985 | * the block's owner tree. In this case, implicit back refs is used for |
| 986 | * pointers in the block. Add full back refs for every pointers in the |
| 987 | * block, increase lower level extents' reference counts. The original |
| 988 | * implicit back refs are entailed to the new block. |
| 989 | * |
| 990 | * The reference count of the block is greater than one and the tree is |
| 991 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 992 | * the new block, increase lower level extents' reference count. |
| 993 | * |
| 994 | * Back Reference Key composing: |
| 995 | * |
| 996 | * The key objectid corresponds to the first byte in the extent, |
| 997 | * The key type is used to differentiate between types of back refs. |
| 998 | * There are different meanings of the key offset for different types |
| 999 | * of back refs. |
| 1000 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1001 | * File extents can be referenced by: |
| 1002 | * |
| 1003 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1004 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1005 | * - different offsets inside a file (bookend extents in file.c) |
| 1006 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1007 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1008 | * |
| 1009 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1010 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1011 | * - original offset in the file |
| 1012 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1013 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1014 | * The key offset for the implicit back refs is hash of the first |
| 1015 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1016 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1017 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1018 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1019 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1020 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1021 | * The key offset for the implicit back refs is the first byte of |
| 1022 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1023 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1024 | * When a file extent is allocated, The implicit back refs is used. |
| 1025 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1026 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1027 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 1028 | * |
| 1029 | * When a file extent is removed file truncation, we find the |
| 1030 | * corresponding implicit back refs and check the following fields: |
| 1031 | * |
| 1032 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1033 | * |
| 1034 | * Btree extents can be referenced by: |
| 1035 | * |
| 1036 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1037 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1038 | * Both the implicit back refs and the full back refs for tree blocks |
| 1039 | * only consist of key. The key offset for the implicit back refs is |
| 1040 | * objectid of block's owner tree. The key offset for the full back refs |
| 1041 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1042 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1043 | * When implicit back refs is used, information about the lowest key and |
| 1044 | * level of the tree block are required. These information are stored in |
| 1045 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1046 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1047 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1048 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1049 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1050 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1051 | struct btrfs_path *path, |
| 1052 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1053 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1054 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1055 | struct btrfs_extent_item *item; |
| 1056 | struct btrfs_extent_item_v0 *ei0; |
| 1057 | struct btrfs_extent_ref_v0 *ref0; |
| 1058 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1059 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1060 | struct btrfs_key key; |
| 1061 | struct btrfs_key found_key; |
| 1062 | u32 new_size = sizeof(*item); |
| 1063 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1064 | int ret; |
| 1065 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1066 | leaf = path->nodes[0]; |
| 1067 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1068 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1069 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1070 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1071 | struct btrfs_extent_item_v0); |
| 1072 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1073 | |
| 1074 | if (owner == (u64)-1) { |
| 1075 | while (1) { |
| 1076 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1077 | ret = btrfs_next_leaf(root, path); |
| 1078 | if (ret < 0) |
| 1079 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1080 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1081 | leaf = path->nodes[0]; |
| 1082 | } |
| 1083 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1084 | path->slots[0]); |
| 1085 | BUG_ON(key.objectid != found_key.objectid); |
| 1086 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1087 | path->slots[0]++; |
| 1088 | continue; |
| 1089 | } |
| 1090 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1091 | struct btrfs_extent_ref_v0); |
| 1092 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1093 | break; |
| 1094 | } |
| 1095 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1096 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1097 | |
| 1098 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1099 | new_size += sizeof(*bi); |
| 1100 | |
| 1101 | new_size -= sizeof(*ei0); |
| 1102 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1103 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1104 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1105 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1106 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1107 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1108 | btrfs_extend_item(fs_info, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1109 | |
| 1110 | leaf = path->nodes[0]; |
| 1111 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1112 | btrfs_set_extent_refs(leaf, item, refs); |
| 1113 | /* FIXME: get real generation */ |
| 1114 | btrfs_set_extent_generation(leaf, item, 0); |
| 1115 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1116 | btrfs_set_extent_flags(leaf, item, |
| 1117 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1118 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1119 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1120 | /* FIXME: get first key of the block */ |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 1121 | memzero_extent_buffer(leaf, (unsigned long)bi, sizeof(*bi)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1122 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1123 | } else { |
| 1124 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1125 | } |
| 1126 | btrfs_mark_buffer_dirty(leaf); |
| 1127 | return 0; |
| 1128 | } |
| 1129 | #endif |
| 1130 | |
| 1131 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1132 | { |
| 1133 | u32 high_crc = ~(u32)0; |
| 1134 | u32 low_crc = ~(u32)0; |
| 1135 | __le64 lenum; |
| 1136 | |
| 1137 | lenum = cpu_to_le64(root_objectid); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1138 | high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1139 | lenum = cpu_to_le64(owner); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1140 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1141 | lenum = cpu_to_le64(offset); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1142 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1143 | |
| 1144 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1145 | } |
| 1146 | |
| 1147 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1148 | struct btrfs_extent_data_ref *ref) |
| 1149 | { |
| 1150 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1151 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1152 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1153 | } |
| 1154 | |
| 1155 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1156 | struct btrfs_extent_data_ref *ref, |
| 1157 | u64 root_objectid, u64 owner, u64 offset) |
| 1158 | { |
| 1159 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1160 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1161 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1162 | return 0; |
| 1163 | return 1; |
| 1164 | } |
| 1165 | |
| 1166 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1167 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1168 | struct btrfs_path *path, |
| 1169 | u64 bytenr, u64 parent, |
| 1170 | u64 root_objectid, |
| 1171 | u64 owner, u64 offset) |
| 1172 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1173 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1174 | struct btrfs_key key; |
| 1175 | struct btrfs_extent_data_ref *ref; |
| 1176 | struct extent_buffer *leaf; |
| 1177 | u32 nritems; |
| 1178 | int ret; |
| 1179 | int recow; |
| 1180 | int err = -ENOENT; |
| 1181 | |
| 1182 | key.objectid = bytenr; |
| 1183 | if (parent) { |
| 1184 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1185 | key.offset = parent; |
| 1186 | } else { |
| 1187 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1188 | key.offset = hash_extent_data_ref(root_objectid, |
| 1189 | owner, offset); |
| 1190 | } |
| 1191 | again: |
| 1192 | recow = 0; |
| 1193 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1194 | if (ret < 0) { |
| 1195 | err = ret; |
| 1196 | goto fail; |
| 1197 | } |
| 1198 | |
| 1199 | if (parent) { |
| 1200 | if (!ret) |
| 1201 | return 0; |
| 1202 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1203 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1204 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1205 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1206 | if (ret < 0) { |
| 1207 | err = ret; |
| 1208 | goto fail; |
| 1209 | } |
| 1210 | if (!ret) |
| 1211 | return 0; |
| 1212 | #endif |
| 1213 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1214 | } |
| 1215 | |
| 1216 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1217 | nritems = btrfs_header_nritems(leaf); |
| 1218 | while (1) { |
| 1219 | if (path->slots[0] >= nritems) { |
| 1220 | ret = btrfs_next_leaf(root, path); |
| 1221 | if (ret < 0) |
| 1222 | err = ret; |
| 1223 | if (ret) |
| 1224 | goto fail; |
| 1225 | |
| 1226 | leaf = path->nodes[0]; |
| 1227 | nritems = btrfs_header_nritems(leaf); |
| 1228 | recow = 1; |
| 1229 | } |
| 1230 | |
| 1231 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1232 | if (key.objectid != bytenr || |
| 1233 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1234 | goto fail; |
| 1235 | |
| 1236 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1237 | struct btrfs_extent_data_ref); |
| 1238 | |
| 1239 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1240 | owner, offset)) { |
| 1241 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1242 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1243 | goto again; |
| 1244 | } |
| 1245 | err = 0; |
| 1246 | break; |
| 1247 | } |
| 1248 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1249 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1250 | fail: |
| 1251 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1252 | } |
| 1253 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1254 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1255 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1256 | struct btrfs_path *path, |
| 1257 | u64 bytenr, u64 parent, |
| 1258 | u64 root_objectid, u64 owner, |
| 1259 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1260 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1261 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1262 | struct btrfs_key key; |
| 1263 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1264 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1265 | u32 num_refs; |
| 1266 | int ret; |
| 1267 | |
| 1268 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1269 | if (parent) { |
| 1270 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1271 | key.offset = parent; |
| 1272 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1273 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1274 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1275 | key.offset = hash_extent_data_ref(root_objectid, |
| 1276 | owner, offset); |
| 1277 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1278 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1279 | |
| 1280 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1281 | if (ret && ret != -EEXIST) |
| 1282 | goto fail; |
| 1283 | |
| 1284 | leaf = path->nodes[0]; |
| 1285 | if (parent) { |
| 1286 | struct btrfs_shared_data_ref *ref; |
| 1287 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1288 | struct btrfs_shared_data_ref); |
| 1289 | if (ret == 0) { |
| 1290 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1291 | } else { |
| 1292 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1293 | num_refs += refs_to_add; |
| 1294 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1295 | } |
| 1296 | } else { |
| 1297 | struct btrfs_extent_data_ref *ref; |
| 1298 | while (ret == -EEXIST) { |
| 1299 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1300 | struct btrfs_extent_data_ref); |
| 1301 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1302 | owner, offset)) |
| 1303 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1304 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1305 | key.offset++; |
| 1306 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1307 | size); |
| 1308 | if (ret && ret != -EEXIST) |
| 1309 | goto fail; |
| 1310 | |
| 1311 | leaf = path->nodes[0]; |
| 1312 | } |
| 1313 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1314 | struct btrfs_extent_data_ref); |
| 1315 | if (ret == 0) { |
| 1316 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1317 | root_objectid); |
| 1318 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1319 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1320 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1321 | } else { |
| 1322 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1323 | num_refs += refs_to_add; |
| 1324 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1325 | } |
| 1326 | } |
| 1327 | btrfs_mark_buffer_dirty(leaf); |
| 1328 | ret = 0; |
| 1329 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1330 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1331 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1332 | } |
| 1333 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1334 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1335 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1336 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1337 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1338 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1339 | struct btrfs_key key; |
| 1340 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1341 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1342 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1343 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1344 | int ret = 0; |
| 1345 | |
| 1346 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1347 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1348 | |
| 1349 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1350 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1351 | struct btrfs_extent_data_ref); |
| 1352 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1353 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1354 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1355 | struct btrfs_shared_data_ref); |
| 1356 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1357 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1358 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1359 | struct btrfs_extent_ref_v0 *ref0; |
| 1360 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1361 | struct btrfs_extent_ref_v0); |
| 1362 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1363 | #endif |
| 1364 | } else { |
| 1365 | BUG(); |
| 1366 | } |
| 1367 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1368 | BUG_ON(num_refs < refs_to_drop); |
| 1369 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1370 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1371 | if (num_refs == 0) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1372 | ret = btrfs_del_item(trans, fs_info->extent_root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1373 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1374 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1375 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1376 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1377 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1378 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1379 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1380 | else { |
| 1381 | struct btrfs_extent_ref_v0 *ref0; |
| 1382 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1383 | struct btrfs_extent_ref_v0); |
| 1384 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1385 | } |
| 1386 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1387 | btrfs_mark_buffer_dirty(leaf); |
| 1388 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1389 | return ret; |
| 1390 | } |
| 1391 | |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 1392 | static noinline u32 extent_data_ref_count(struct btrfs_path *path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1393 | struct btrfs_extent_inline_ref *iref) |
| 1394 | { |
| 1395 | struct btrfs_key key; |
| 1396 | struct extent_buffer *leaf; |
| 1397 | struct btrfs_extent_data_ref *ref1; |
| 1398 | struct btrfs_shared_data_ref *ref2; |
| 1399 | u32 num_refs = 0; |
| 1400 | |
| 1401 | leaf = path->nodes[0]; |
| 1402 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1403 | if (iref) { |
| 1404 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1405 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1406 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1407 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1408 | } else { |
| 1409 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1410 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1411 | } |
| 1412 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1413 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1414 | struct btrfs_extent_data_ref); |
| 1415 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1416 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1417 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1418 | struct btrfs_shared_data_ref); |
| 1419 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1420 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1421 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1422 | struct btrfs_extent_ref_v0 *ref0; |
| 1423 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1424 | struct btrfs_extent_ref_v0); |
| 1425 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1426 | #endif |
| 1427 | } else { |
| 1428 | WARN_ON(1); |
| 1429 | } |
| 1430 | return num_refs; |
| 1431 | } |
| 1432 | |
| 1433 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1434 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1435 | struct btrfs_path *path, |
| 1436 | u64 bytenr, u64 parent, |
| 1437 | u64 root_objectid) |
| 1438 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1439 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1440 | struct btrfs_key key; |
| 1441 | int ret; |
| 1442 | |
| 1443 | key.objectid = bytenr; |
| 1444 | if (parent) { |
| 1445 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1446 | key.offset = parent; |
| 1447 | } else { |
| 1448 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1449 | key.offset = root_objectid; |
| 1450 | } |
| 1451 | |
| 1452 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1453 | if (ret > 0) |
| 1454 | ret = -ENOENT; |
| 1455 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1456 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1457 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1458 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1459 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1460 | if (ret > 0) |
| 1461 | ret = -ENOENT; |
| 1462 | } |
| 1463 | #endif |
| 1464 | return ret; |
| 1465 | } |
| 1466 | |
| 1467 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1468 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1469 | struct btrfs_path *path, |
| 1470 | u64 bytenr, u64 parent, |
| 1471 | u64 root_objectid) |
| 1472 | { |
| 1473 | struct btrfs_key key; |
| 1474 | int ret; |
| 1475 | |
| 1476 | key.objectid = bytenr; |
| 1477 | if (parent) { |
| 1478 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1479 | key.offset = parent; |
| 1480 | } else { |
| 1481 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1482 | key.offset = root_objectid; |
| 1483 | } |
| 1484 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1485 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, |
| 1486 | path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1487 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1488 | return ret; |
| 1489 | } |
| 1490 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1491 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1492 | { |
| 1493 | int type; |
| 1494 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1495 | if (parent > 0) |
| 1496 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1497 | else |
| 1498 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1499 | } else { |
| 1500 | if (parent > 0) |
| 1501 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1502 | else |
| 1503 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1504 | } |
| 1505 | return type; |
| 1506 | } |
| 1507 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1508 | static int find_next_key(struct btrfs_path *path, int level, |
| 1509 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1510 | |
| 1511 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1512 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1513 | if (!path->nodes[level]) |
| 1514 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1515 | if (path->slots[level] + 1 >= |
| 1516 | btrfs_header_nritems(path->nodes[level])) |
| 1517 | continue; |
| 1518 | if (level == 0) |
| 1519 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1520 | path->slots[level] + 1); |
| 1521 | else |
| 1522 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1523 | path->slots[level] + 1); |
| 1524 | return 0; |
| 1525 | } |
| 1526 | return 1; |
| 1527 | } |
| 1528 | |
| 1529 | /* |
| 1530 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1531 | * to the address of inline back ref, and 0 is returned. |
| 1532 | * |
| 1533 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1534 | * should be inserted, and -ENOENT is returned. |
| 1535 | * |
| 1536 | * if insert is true and there are too many inline back refs, the path |
| 1537 | * points to the extent item, and -EAGAIN is returned. |
| 1538 | * |
| 1539 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1540 | * items in the tree are ordered. |
| 1541 | */ |
| 1542 | static noinline_for_stack |
| 1543 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1544 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1545 | struct btrfs_path *path, |
| 1546 | struct btrfs_extent_inline_ref **ref_ret, |
| 1547 | u64 bytenr, u64 num_bytes, |
| 1548 | u64 parent, u64 root_objectid, |
| 1549 | u64 owner, u64 offset, int insert) |
| 1550 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1551 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1552 | struct btrfs_key key; |
| 1553 | struct extent_buffer *leaf; |
| 1554 | struct btrfs_extent_item *ei; |
| 1555 | struct btrfs_extent_inline_ref *iref; |
| 1556 | u64 flags; |
| 1557 | u64 item_size; |
| 1558 | unsigned long ptr; |
| 1559 | unsigned long end; |
| 1560 | int extra_size; |
| 1561 | int type; |
| 1562 | int want; |
| 1563 | int ret; |
| 1564 | int err = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1565 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1566 | |
| 1567 | key.objectid = bytenr; |
| 1568 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1569 | key.offset = num_bytes; |
| 1570 | |
| 1571 | want = extent_ref_type(parent, owner); |
| 1572 | if (insert) { |
| 1573 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1574 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1575 | } else |
| 1576 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1577 | |
| 1578 | /* |
| 1579 | * Owner is our parent level, so we can just add one to get the level |
| 1580 | * for the block we are interested in. |
| 1581 | */ |
| 1582 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1583 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1584 | key.offset = owner; |
| 1585 | } |
| 1586 | |
| 1587 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1588 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1589 | if (ret < 0) { |
| 1590 | err = ret; |
| 1591 | goto out; |
| 1592 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1593 | |
| 1594 | /* |
| 1595 | * We may be a newly converted file system which still has the old fat |
| 1596 | * extent entries for metadata, so try and see if we have one of those. |
| 1597 | */ |
| 1598 | if (ret > 0 && skinny_metadata) { |
| 1599 | skinny_metadata = false; |
| 1600 | if (path->slots[0]) { |
| 1601 | path->slots[0]--; |
| 1602 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1603 | path->slots[0]); |
| 1604 | if (key.objectid == bytenr && |
| 1605 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1606 | key.offset == num_bytes) |
| 1607 | ret = 0; |
| 1608 | } |
| 1609 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1610 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1611 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1612 | key.offset = num_bytes; |
| 1613 | btrfs_release_path(path); |
| 1614 | goto again; |
| 1615 | } |
| 1616 | } |
| 1617 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1618 | if (ret && !insert) { |
| 1619 | err = -ENOENT; |
| 1620 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1621 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1622 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1623 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1624 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1625 | |
| 1626 | leaf = path->nodes[0]; |
| 1627 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1628 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1629 | if (item_size < sizeof(*ei)) { |
| 1630 | if (!insert) { |
| 1631 | err = -ENOENT; |
| 1632 | goto out; |
| 1633 | } |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1634 | ret = convert_extent_item_v0(trans, fs_info, path, owner, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1635 | extra_size); |
| 1636 | if (ret < 0) { |
| 1637 | err = ret; |
| 1638 | goto out; |
| 1639 | } |
| 1640 | leaf = path->nodes[0]; |
| 1641 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1642 | } |
| 1643 | #endif |
| 1644 | BUG_ON(item_size < sizeof(*ei)); |
| 1645 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1646 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1647 | flags = btrfs_extent_flags(leaf, ei); |
| 1648 | |
| 1649 | ptr = (unsigned long)(ei + 1); |
| 1650 | end = (unsigned long)ei + item_size; |
| 1651 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1652 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1653 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1654 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1655 | } |
| 1656 | |
| 1657 | err = -ENOENT; |
| 1658 | while (1) { |
| 1659 | if (ptr >= end) { |
| 1660 | WARN_ON(ptr > end); |
| 1661 | break; |
| 1662 | } |
| 1663 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1664 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1665 | if (want < type) |
| 1666 | break; |
| 1667 | if (want > type) { |
| 1668 | ptr += btrfs_extent_inline_ref_size(type); |
| 1669 | continue; |
| 1670 | } |
| 1671 | |
| 1672 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1673 | struct btrfs_extent_data_ref *dref; |
| 1674 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1675 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1676 | owner, offset)) { |
| 1677 | err = 0; |
| 1678 | break; |
| 1679 | } |
| 1680 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1681 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1682 | break; |
| 1683 | } else { |
| 1684 | u64 ref_offset; |
| 1685 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1686 | if (parent > 0) { |
| 1687 | if (parent == ref_offset) { |
| 1688 | err = 0; |
| 1689 | break; |
| 1690 | } |
| 1691 | if (ref_offset < parent) |
| 1692 | break; |
| 1693 | } else { |
| 1694 | if (root_objectid == ref_offset) { |
| 1695 | err = 0; |
| 1696 | break; |
| 1697 | } |
| 1698 | if (ref_offset < root_objectid) |
| 1699 | break; |
| 1700 | } |
| 1701 | } |
| 1702 | ptr += btrfs_extent_inline_ref_size(type); |
| 1703 | } |
| 1704 | if (err == -ENOENT && insert) { |
| 1705 | if (item_size + extra_size >= |
| 1706 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1707 | err = -EAGAIN; |
| 1708 | goto out; |
| 1709 | } |
| 1710 | /* |
| 1711 | * To add new inline back ref, we have to make sure |
| 1712 | * there is no corresponding back ref item. |
| 1713 | * For simplicity, we just do not add new inline back |
| 1714 | * ref if there is any kind of item for this block |
| 1715 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1716 | if (find_next_key(path, 0, &key) == 0 && |
| 1717 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1718 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1719 | err = -EAGAIN; |
| 1720 | goto out; |
| 1721 | } |
| 1722 | } |
| 1723 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1724 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1725 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1726 | path->keep_locks = 0; |
| 1727 | btrfs_unlock_up_safe(path, 1); |
| 1728 | } |
| 1729 | return err; |
| 1730 | } |
| 1731 | |
| 1732 | /* |
| 1733 | * helper to add new inline back ref |
| 1734 | */ |
| 1735 | static noinline_for_stack |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1736 | void setup_inline_extent_backref(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1737 | struct btrfs_path *path, |
| 1738 | struct btrfs_extent_inline_ref *iref, |
| 1739 | u64 parent, u64 root_objectid, |
| 1740 | u64 owner, u64 offset, int refs_to_add, |
| 1741 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1742 | { |
| 1743 | struct extent_buffer *leaf; |
| 1744 | struct btrfs_extent_item *ei; |
| 1745 | unsigned long ptr; |
| 1746 | unsigned long end; |
| 1747 | unsigned long item_offset; |
| 1748 | u64 refs; |
| 1749 | int size; |
| 1750 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1751 | |
| 1752 | leaf = path->nodes[0]; |
| 1753 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1754 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1755 | |
| 1756 | type = extent_ref_type(parent, owner); |
| 1757 | size = btrfs_extent_inline_ref_size(type); |
| 1758 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1759 | btrfs_extend_item(fs_info, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1760 | |
| 1761 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1762 | refs = btrfs_extent_refs(leaf, ei); |
| 1763 | refs += refs_to_add; |
| 1764 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1765 | if (extent_op) |
| 1766 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1767 | |
| 1768 | ptr = (unsigned long)ei + item_offset; |
| 1769 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1770 | if (ptr < end - size) |
| 1771 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1772 | end - size - ptr); |
| 1773 | |
| 1774 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1775 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1776 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1777 | struct btrfs_extent_data_ref *dref; |
| 1778 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1779 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1780 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1781 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1782 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1783 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1784 | struct btrfs_shared_data_ref *sref; |
| 1785 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1786 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1787 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1788 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1789 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1790 | } else { |
| 1791 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1792 | } |
| 1793 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1794 | } |
| 1795 | |
| 1796 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1797 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1798 | struct btrfs_path *path, |
| 1799 | struct btrfs_extent_inline_ref **ref_ret, |
| 1800 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1801 | u64 root_objectid, u64 owner, u64 offset) |
| 1802 | { |
| 1803 | int ret; |
| 1804 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1805 | ret = lookup_inline_extent_backref(trans, fs_info, path, ref_ret, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1806 | bytenr, num_bytes, parent, |
| 1807 | root_objectid, owner, offset, 0); |
| 1808 | if (ret != -ENOENT) |
| 1809 | return ret; |
| 1810 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1811 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1812 | *ref_ret = NULL; |
| 1813 | |
| 1814 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1815 | ret = lookup_tree_block_ref(trans, fs_info, path, bytenr, |
| 1816 | parent, root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1817 | } else { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1818 | ret = lookup_extent_data_ref(trans, fs_info, path, bytenr, |
| 1819 | parent, root_objectid, owner, |
| 1820 | offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1821 | } |
| 1822 | return ret; |
| 1823 | } |
| 1824 | |
| 1825 | /* |
| 1826 | * helper to update/remove inline back ref |
| 1827 | */ |
| 1828 | static noinline_for_stack |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1829 | void update_inline_extent_backref(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1830 | struct btrfs_path *path, |
| 1831 | struct btrfs_extent_inline_ref *iref, |
| 1832 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1833 | struct btrfs_delayed_extent_op *extent_op, |
| 1834 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1835 | { |
| 1836 | struct extent_buffer *leaf; |
| 1837 | struct btrfs_extent_item *ei; |
| 1838 | struct btrfs_extent_data_ref *dref = NULL; |
| 1839 | struct btrfs_shared_data_ref *sref = NULL; |
| 1840 | unsigned long ptr; |
| 1841 | unsigned long end; |
| 1842 | u32 item_size; |
| 1843 | int size; |
| 1844 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1845 | u64 refs; |
| 1846 | |
| 1847 | leaf = path->nodes[0]; |
| 1848 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1849 | refs = btrfs_extent_refs(leaf, ei); |
| 1850 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1851 | refs += refs_to_mod; |
| 1852 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1853 | if (extent_op) |
| 1854 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1855 | |
| 1856 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1857 | |
| 1858 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1859 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1860 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1861 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1862 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1863 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1864 | } else { |
| 1865 | refs = 1; |
| 1866 | BUG_ON(refs_to_mod != -1); |
| 1867 | } |
| 1868 | |
| 1869 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1870 | refs += refs_to_mod; |
| 1871 | |
| 1872 | if (refs > 0) { |
| 1873 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1874 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1875 | else |
| 1876 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1877 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1878 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1879 | size = btrfs_extent_inline_ref_size(type); |
| 1880 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1881 | ptr = (unsigned long)iref; |
| 1882 | end = (unsigned long)ei + item_size; |
| 1883 | if (ptr + size < end) |
| 1884 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1885 | end - ptr - size); |
| 1886 | item_size -= size; |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1887 | btrfs_truncate_item(fs_info, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1888 | } |
| 1889 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1890 | } |
| 1891 | |
| 1892 | static noinline_for_stack |
| 1893 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1894 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1895 | struct btrfs_path *path, |
| 1896 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1897 | u64 root_objectid, u64 owner, |
| 1898 | u64 offset, int refs_to_add, |
| 1899 | struct btrfs_delayed_extent_op *extent_op) |
| 1900 | { |
| 1901 | struct btrfs_extent_inline_ref *iref; |
| 1902 | int ret; |
| 1903 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1904 | ret = lookup_inline_extent_backref(trans, fs_info, path, &iref, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1905 | bytenr, num_bytes, parent, |
| 1906 | root_objectid, owner, offset, 1); |
| 1907 | if (ret == 0) { |
| 1908 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1909 | update_inline_extent_backref(fs_info, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1910 | refs_to_add, extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1911 | } else if (ret == -ENOENT) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1912 | setup_inline_extent_backref(fs_info, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1913 | root_objectid, owner, offset, |
| 1914 | refs_to_add, extent_op); |
| 1915 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1916 | } |
| 1917 | return ret; |
| 1918 | } |
| 1919 | |
| 1920 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1921 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1922 | struct btrfs_path *path, |
| 1923 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1924 | u64 owner, u64 offset, int refs_to_add) |
| 1925 | { |
| 1926 | int ret; |
| 1927 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1928 | BUG_ON(refs_to_add != 1); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1929 | ret = insert_tree_block_ref(trans, fs_info, path, bytenr, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1930 | parent, root_objectid); |
| 1931 | } else { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1932 | ret = insert_extent_data_ref(trans, fs_info, path, bytenr, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1933 | parent, root_objectid, |
| 1934 | owner, offset, refs_to_add); |
| 1935 | } |
| 1936 | return ret; |
| 1937 | } |
| 1938 | |
| 1939 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1940 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1941 | struct btrfs_path *path, |
| 1942 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1943 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1944 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1945 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1946 | |
| 1947 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1948 | if (iref) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1949 | update_inline_extent_backref(fs_info, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1950 | -refs_to_drop, NULL, last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1951 | } else if (is_data) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1952 | ret = remove_extent_data_ref(trans, fs_info, path, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1953 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1954 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1955 | *last_ref = 1; |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1956 | ret = btrfs_del_item(trans, fs_info->extent_root, path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1957 | } |
| 1958 | return ret; |
| 1959 | } |
| 1960 | |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1961 | #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1962 | static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len, |
| 1963 | u64 *discarded_bytes) |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1964 | { |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1965 | int j, ret = 0; |
| 1966 | u64 bytes_left, end; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1967 | u64 aligned_start = ALIGN(start, 1 << 9); |
| 1968 | |
| 1969 | if (WARN_ON(start != aligned_start)) { |
| 1970 | len -= aligned_start - start; |
| 1971 | len = round_down(len, 1 << 9); |
| 1972 | start = aligned_start; |
| 1973 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1974 | |
| 1975 | *discarded_bytes = 0; |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1976 | |
| 1977 | if (!len) |
| 1978 | return 0; |
| 1979 | |
| 1980 | end = start + len; |
| 1981 | bytes_left = len; |
| 1982 | |
| 1983 | /* Skip any superblocks on this device. */ |
| 1984 | for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) { |
| 1985 | u64 sb_start = btrfs_sb_offset(j); |
| 1986 | u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE; |
| 1987 | u64 size = sb_start - start; |
| 1988 | |
| 1989 | if (!in_range(sb_start, start, bytes_left) && |
| 1990 | !in_range(sb_end, start, bytes_left) && |
| 1991 | !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE)) |
| 1992 | continue; |
| 1993 | |
| 1994 | /* |
| 1995 | * Superblock spans beginning of range. Adjust start and |
| 1996 | * try again. |
| 1997 | */ |
| 1998 | if (sb_start <= start) { |
| 1999 | start += sb_end - start; |
| 2000 | if (start > end) { |
| 2001 | bytes_left = 0; |
| 2002 | break; |
| 2003 | } |
| 2004 | bytes_left = end - start; |
| 2005 | continue; |
| 2006 | } |
| 2007 | |
| 2008 | if (size) { |
| 2009 | ret = blkdev_issue_discard(bdev, start >> 9, size >> 9, |
| 2010 | GFP_NOFS, 0); |
| 2011 | if (!ret) |
| 2012 | *discarded_bytes += size; |
| 2013 | else if (ret != -EOPNOTSUPP) |
| 2014 | return ret; |
| 2015 | } |
| 2016 | |
| 2017 | start = sb_end; |
| 2018 | if (start > end) { |
| 2019 | bytes_left = 0; |
| 2020 | break; |
| 2021 | } |
| 2022 | bytes_left = end - start; |
| 2023 | } |
| 2024 | |
| 2025 | if (bytes_left) { |
| 2026 | ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9, |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2027 | GFP_NOFS, 0); |
| 2028 | if (!ret) |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 2029 | *discarded_bytes += bytes_left; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2030 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2031 | return ret; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2032 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2033 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2034 | int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr, |
Filipe Manana | 1edb647b | 2014-12-08 14:01:12 +0000 | [diff] [blame] | 2035 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2036 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2037 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2038 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2039 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2040 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2041 | |
Filipe Manana | 2999241 | 2016-05-27 17:42:05 +0100 | [diff] [blame] | 2042 | /* |
| 2043 | * Avoid races with device replace and make sure our bbio has devices |
| 2044 | * associated to its stripes that don't go away while we are discarding. |
| 2045 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2046 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2047 | /* Tell the block device(s) that the sectors can be discarded */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2048 | ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes, |
| 2049 | &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2050 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2051 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2052 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2053 | int i; |
| 2054 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2055 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2056 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2057 | u64 bytes; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2058 | if (!stripe->dev->can_discard) |
| 2059 | continue; |
| 2060 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2061 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 2062 | stripe->physical, |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2063 | stripe->length, |
| 2064 | &bytes); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2065 | if (!ret) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2066 | discarded_bytes += bytes; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2067 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2068 | 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] | 2069 | |
| 2070 | /* |
| 2071 | * Just in case we get back EOPNOTSUPP for some reason, |
| 2072 | * just ignore the return value so we don't screw up |
| 2073 | * people calling discard_extent. |
| 2074 | */ |
| 2075 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2076 | } |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2077 | btrfs_put_bbio(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2078 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2079 | btrfs_bio_counter_dec(fs_info); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2080 | |
| 2081 | if (actual_bytes) |
| 2082 | *actual_bytes = discarded_bytes; |
| 2083 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2084 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2085 | if (ret == -EOPNOTSUPP) |
| 2086 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2087 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2088 | } |
| 2089 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2090 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2091 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2092 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2093 | u64 bytenr, u64 num_bytes, u64 parent, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2094 | u64 root_objectid, u64 owner, u64 offset) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2095 | { |
| 2096 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2097 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2098 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 2099 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2100 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2101 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2102 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 2103 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2104 | parent, root_objectid, (int)owner, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2105 | BTRFS_ADD_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2106 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2107 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 2108 | num_bytes, parent, root_objectid, |
| 2109 | owner, offset, 0, |
Jeff Mahoney | fef394f | 2016-12-13 14:39:34 -0500 | [diff] [blame] | 2110 | BTRFS_ADD_DELAYED_REF); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2111 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2112 | return ret; |
| 2113 | } |
| 2114 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2115 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2116 | struct btrfs_fs_info *fs_info, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2117 | struct btrfs_delayed_ref_node *node, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2118 | u64 parent, u64 root_objectid, |
| 2119 | u64 owner, u64 offset, int refs_to_add, |
| 2120 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2121 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2122 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2123 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 2124 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2125 | struct btrfs_key key; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2126 | u64 bytenr = node->bytenr; |
| 2127 | u64 num_bytes = node->num_bytes; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2128 | u64 refs; |
| 2129 | int ret; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 2130 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2131 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2132 | if (!path) |
| 2133 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2134 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2135 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2136 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2137 | /* this will setup the path even if it fails to insert the back ref */ |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 2138 | ret = insert_inline_extent_backref(trans, fs_info, path, bytenr, |
| 2139 | num_bytes, parent, root_objectid, |
| 2140 | owner, offset, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2141 | refs_to_add, extent_op); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 2142 | if ((ret < 0 && ret != -EAGAIN) || !ret) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2143 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2144 | |
| 2145 | /* |
| 2146 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2147 | * inline extent ref, so just update the reference count and add a |
| 2148 | * normal backref. |
| 2149 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2150 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2151 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2152 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2153 | refs = btrfs_extent_refs(leaf, item); |
| 2154 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2155 | if (extent_op) |
| 2156 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2157 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2158 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2159 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2160 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2161 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2162 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2163 | /* now insert the actual backref */ |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 2164 | ret = insert_extent_backref(trans, fs_info, path, bytenr, parent, |
| 2165 | root_objectid, owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2166 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2167 | btrfs_abort_transaction(trans, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2168 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2169 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2170 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2171 | } |
| 2172 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2173 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2174 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2175 | struct btrfs_delayed_ref_node *node, |
| 2176 | struct btrfs_delayed_extent_op *extent_op, |
| 2177 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2178 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2179 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2180 | struct btrfs_delayed_data_ref *ref; |
| 2181 | struct btrfs_key ins; |
| 2182 | u64 parent = 0; |
| 2183 | u64 ref_root = 0; |
| 2184 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2185 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2186 | ins.objectid = node->bytenr; |
| 2187 | ins.offset = node->num_bytes; |
| 2188 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2189 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2190 | ref = btrfs_delayed_node_to_data_ref(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2191 | trace_run_delayed_data_ref(fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2192 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2193 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2194 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2195 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2196 | |
| 2197 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2198 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2199 | flags |= extent_op->flags_to_set; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2200 | ret = alloc_reserved_file_extent(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2201 | parent, ref_root, flags, |
| 2202 | ref->objectid, ref->offset, |
| 2203 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2204 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2205 | ret = __btrfs_inc_extent_ref(trans, fs_info, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2206 | ref_root, ref->objectid, |
| 2207 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2208 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2209 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2210 | ret = __btrfs_free_extent(trans, fs_info, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2211 | ref_root, ref->objectid, |
| 2212 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2213 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2214 | } else { |
| 2215 | BUG(); |
| 2216 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2217 | return ret; |
| 2218 | } |
| 2219 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2220 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2221 | struct extent_buffer *leaf, |
| 2222 | struct btrfs_extent_item *ei) |
| 2223 | { |
| 2224 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2225 | if (extent_op->update_flags) { |
| 2226 | flags |= extent_op->flags_to_set; |
| 2227 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2228 | } |
| 2229 | |
| 2230 | if (extent_op->update_key) { |
| 2231 | struct btrfs_tree_block_info *bi; |
| 2232 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2233 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2234 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2235 | } |
| 2236 | } |
| 2237 | |
| 2238 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2239 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2240 | struct btrfs_delayed_ref_node *node, |
| 2241 | struct btrfs_delayed_extent_op *extent_op) |
| 2242 | { |
| 2243 | struct btrfs_key key; |
| 2244 | struct btrfs_path *path; |
| 2245 | struct btrfs_extent_item *ei; |
| 2246 | struct extent_buffer *leaf; |
| 2247 | u32 item_size; |
| 2248 | int ret; |
| 2249 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2250 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2251 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2252 | if (trans->aborted) |
| 2253 | return 0; |
| 2254 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2255 | if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2256 | metadata = 0; |
| 2257 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2258 | path = btrfs_alloc_path(); |
| 2259 | if (!path) |
| 2260 | return -ENOMEM; |
| 2261 | |
| 2262 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2263 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2264 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2265 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2266 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2267 | } else { |
| 2268 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2269 | key.offset = node->num_bytes; |
| 2270 | } |
| 2271 | |
| 2272 | again: |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2273 | path->reada = READA_FORWARD; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2274 | path->leave_spinning = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2275 | 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] | 2276 | if (ret < 0) { |
| 2277 | err = ret; |
| 2278 | goto out; |
| 2279 | } |
| 2280 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2281 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2282 | if (path->slots[0] > 0) { |
| 2283 | path->slots[0]--; |
| 2284 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2285 | path->slots[0]); |
| 2286 | if (key.objectid == node->bytenr && |
| 2287 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2288 | key.offset == node->num_bytes) |
| 2289 | ret = 0; |
| 2290 | } |
| 2291 | if (ret > 0) { |
| 2292 | btrfs_release_path(path); |
| 2293 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2294 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2295 | key.objectid = node->bytenr; |
| 2296 | key.offset = node->num_bytes; |
| 2297 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2298 | goto again; |
| 2299 | } |
| 2300 | } else { |
| 2301 | err = -EIO; |
| 2302 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2303 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2304 | } |
| 2305 | |
| 2306 | leaf = path->nodes[0]; |
| 2307 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2308 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2309 | if (item_size < sizeof(*ei)) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 2310 | ret = convert_extent_item_v0(trans, fs_info, path, (u64)-1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2311 | if (ret < 0) { |
| 2312 | err = ret; |
| 2313 | goto out; |
| 2314 | } |
| 2315 | leaf = path->nodes[0]; |
| 2316 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2317 | } |
| 2318 | #endif |
| 2319 | BUG_ON(item_size < sizeof(*ei)); |
| 2320 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2321 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2322 | |
| 2323 | btrfs_mark_buffer_dirty(leaf); |
| 2324 | out: |
| 2325 | btrfs_free_path(path); |
| 2326 | return err; |
| 2327 | } |
| 2328 | |
| 2329 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2330 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2331 | struct btrfs_delayed_ref_node *node, |
| 2332 | struct btrfs_delayed_extent_op *extent_op, |
| 2333 | int insert_reserved) |
| 2334 | { |
| 2335 | int ret = 0; |
| 2336 | struct btrfs_delayed_tree_ref *ref; |
| 2337 | struct btrfs_key ins; |
| 2338 | u64 parent = 0; |
| 2339 | u64 ref_root = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2340 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2341 | |
| 2342 | ref = btrfs_delayed_node_to_tree_ref(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2343 | trace_run_delayed_tree_ref(fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2344 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2345 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2346 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2347 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2348 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2349 | ins.objectid = node->bytenr; |
| 2350 | if (skinny_metadata) { |
| 2351 | ins.offset = ref->level; |
| 2352 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2353 | } else { |
| 2354 | ins.offset = node->num_bytes; |
| 2355 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2356 | } |
| 2357 | |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2358 | if (node->ref_mod != 1) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2359 | btrfs_err(fs_info, |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2360 | "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu", |
| 2361 | node->bytenr, node->ref_mod, node->action, ref_root, |
| 2362 | parent); |
| 2363 | return -EIO; |
| 2364 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2365 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2366 | BUG_ON(!extent_op || !extent_op->update_flags); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2367 | ret = alloc_reserved_tree_block(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2368 | parent, ref_root, |
| 2369 | extent_op->flags_to_set, |
| 2370 | &extent_op->key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2371 | ref->level, &ins); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2372 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2373 | ret = __btrfs_inc_extent_ref(trans, fs_info, node, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2374 | parent, ref_root, |
| 2375 | ref->level, 0, 1, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2376 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2377 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2378 | ret = __btrfs_free_extent(trans, fs_info, node, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2379 | parent, ref_root, |
| 2380 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2381 | } else { |
| 2382 | BUG(); |
| 2383 | } |
| 2384 | return ret; |
| 2385 | } |
| 2386 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2387 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2388 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2389 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2390 | struct btrfs_delayed_ref_node *node, |
| 2391 | struct btrfs_delayed_extent_op *extent_op, |
| 2392 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2393 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2394 | int ret = 0; |
| 2395 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2396 | if (trans->aborted) { |
| 2397 | if (insert_reserved) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2398 | btrfs_pin_extent(fs_info, node->bytenr, |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2399 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2400 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2401 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2402 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2403 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2404 | struct btrfs_delayed_ref_head *head; |
| 2405 | /* |
| 2406 | * we've hit the end of the chain and we were supposed |
| 2407 | * to insert this extent into the tree. But, it got |
| 2408 | * deleted before we ever needed to insert it, so all |
| 2409 | * we have to do is clean up the accounting |
| 2410 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2411 | BUG_ON(extent_op); |
| 2412 | head = btrfs_delayed_node_to_head(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2413 | trace_run_delayed_ref_head(fs_info, node, head, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2414 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2415 | if (insert_reserved) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2416 | btrfs_pin_extent(fs_info, node->bytenr, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2417 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2418 | if (head->is_data) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2419 | ret = btrfs_del_csums(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2420 | node->bytenr, |
| 2421 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2422 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2423 | } |
Qu Wenruo | 297d750 | 2015-09-08 17:08:37 +0800 | [diff] [blame] | 2424 | |
| 2425 | /* Also free its reserved qgroup space */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2426 | btrfs_qgroup_free_delayed_ref(fs_info, head->qgroup_ref_root, |
Qu Wenruo | 297d750 | 2015-09-08 17:08:37 +0800 | [diff] [blame] | 2427 | head->qgroup_reserved); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2428 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2429 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2430 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2431 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2432 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2433 | ret = run_delayed_tree_ref(trans, fs_info, node, extent_op, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2434 | insert_reserved); |
| 2435 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2436 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2437 | ret = run_delayed_data_ref(trans, fs_info, node, extent_op, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2438 | insert_reserved); |
| 2439 | else |
| 2440 | BUG(); |
| 2441 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2442 | } |
| 2443 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2444 | static inline struct btrfs_delayed_ref_node * |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2445 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2446 | { |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2447 | struct btrfs_delayed_ref_node *ref; |
| 2448 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2449 | if (list_empty(&head->ref_list)) |
| 2450 | return NULL; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2451 | |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2452 | /* |
| 2453 | * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2454 | * This is to prevent a ref count from going down to zero, which deletes |
| 2455 | * the extent item from the extent tree, when there still are references |
| 2456 | * to add, which would fail because they would not find the extent item. |
| 2457 | */ |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2458 | if (!list_empty(&head->ref_add_list)) |
| 2459 | return list_first_entry(&head->ref_add_list, |
| 2460 | struct btrfs_delayed_ref_node, add_list); |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2461 | |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2462 | ref = list_first_entry(&head->ref_list, struct btrfs_delayed_ref_node, |
| 2463 | list); |
| 2464 | ASSERT(list_empty(&ref->add_list)); |
| 2465 | return ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2466 | } |
| 2467 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2468 | /* |
| 2469 | * Returns 0 on success or if called with an already aborted transaction. |
| 2470 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2471 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2472 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2473 | struct btrfs_fs_info *fs_info, |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2474 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2475 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2476 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2477 | struct btrfs_delayed_ref_node *ref; |
| 2478 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2479 | struct btrfs_delayed_extent_op *extent_op; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2480 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2481 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2482 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2483 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2484 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2485 | |
| 2486 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2487 | while (1) { |
| 2488 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2489 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2490 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2491 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2492 | spin_lock(&delayed_refs->lock); |
| 2493 | locked_ref = btrfs_select_ref_head(trans); |
| 2494 | if (!locked_ref) { |
| 2495 | spin_unlock(&delayed_refs->lock); |
| 2496 | break; |
| 2497 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2498 | |
| 2499 | /* grab the lock that says we are going to process |
| 2500 | * all the refs for this head */ |
| 2501 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2502 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2503 | /* |
| 2504 | * we may have dropped the spin lock to get the head |
| 2505 | * mutex lock, and that might have given someone else |
| 2506 | * time to free the head. If that's true, it has been |
| 2507 | * removed from our list and we can move on. |
| 2508 | */ |
| 2509 | if (ret == -EAGAIN) { |
| 2510 | locked_ref = NULL; |
| 2511 | count++; |
| 2512 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2513 | } |
| 2514 | } |
| 2515 | |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2516 | /* |
| 2517 | * We need to try and merge add/drops of the same ref since we |
| 2518 | * can run into issues with relocate dropping the implicit ref |
| 2519 | * and then it being added back again before the drop can |
| 2520 | * finish. If we merged anything we need to re-loop so we can |
| 2521 | * get a good ref. |
| 2522 | * Or we can get node references of the same type that weren't |
| 2523 | * merged when created due to bumps in the tree mod seq, and |
| 2524 | * we need to merge them to prevent adding an inline extent |
| 2525 | * backref before dropping it (triggering a BUG_ON at |
| 2526 | * insert_inline_extent_backref()). |
| 2527 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2528 | spin_lock(&locked_ref->lock); |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2529 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2530 | locked_ref); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2531 | |
| 2532 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2533 | * locked_ref is the head node, so we have to go one |
| 2534 | * node back for any delayed ref updates |
| 2535 | */ |
| 2536 | ref = select_delayed_ref(locked_ref); |
| 2537 | |
| 2538 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2539 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2540 | spin_unlock(&locked_ref->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2541 | spin_lock(&delayed_refs->lock); |
| 2542 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2543 | delayed_refs->num_heads_ready++; |
| 2544 | spin_unlock(&delayed_refs->lock); |
Jeff Mahoney | d028099 | 2016-12-20 13:28:28 -0500 | [diff] [blame] | 2545 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2546 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2547 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2548 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2549 | continue; |
| 2550 | } |
| 2551 | |
| 2552 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2553 | * record the must insert reserved flag before we |
| 2554 | * drop the spin lock. |
| 2555 | */ |
| 2556 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2557 | locked_ref->must_insert_reserved = 0; |
| 2558 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2559 | extent_op = locked_ref->extent_op; |
| 2560 | locked_ref->extent_op = NULL; |
| 2561 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2562 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2563 | |
| 2564 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2565 | /* All delayed refs have been processed, Go ahead |
| 2566 | * and send the head node to run_one_delayed_ref, |
| 2567 | * so that any accounting fixes can happen |
| 2568 | */ |
| 2569 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2570 | |
| 2571 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2572 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2573 | extent_op = NULL; |
| 2574 | } |
| 2575 | |
| 2576 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2577 | spin_unlock(&locked_ref->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2578 | ret = run_delayed_extent_op(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2579 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2580 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2581 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2582 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2583 | /* |
| 2584 | * Need to reset must_insert_reserved if |
| 2585 | * there was an error so the abort stuff |
| 2586 | * can cleanup the reserved space |
| 2587 | * properly. |
| 2588 | */ |
| 2589 | if (must_insert_reserved) |
| 2590 | locked_ref->must_insert_reserved = 1; |
Jeff Mahoney | aa7c8da | 2016-12-20 13:28:27 -0500 | [diff] [blame] | 2591 | spin_lock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2592 | locked_ref->processing = 0; |
Jeff Mahoney | aa7c8da | 2016-12-20 13:28:27 -0500 | [diff] [blame] | 2593 | delayed_refs->num_heads_ready++; |
| 2594 | spin_unlock(&delayed_refs->lock); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2595 | btrfs_debug(fs_info, |
| 2596 | "run_delayed_extent_op returned %d", |
| 2597 | ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2598 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2599 | return ret; |
| 2600 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2601 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2602 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2603 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2604 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2605 | * Need to drop our head ref lock and re-acquire the |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2606 | * delayed ref lock and then re-check to make sure |
| 2607 | * nobody got added. |
| 2608 | */ |
| 2609 | spin_unlock(&locked_ref->lock); |
| 2610 | spin_lock(&delayed_refs->lock); |
| 2611 | spin_lock(&locked_ref->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2612 | if (!list_empty(&locked_ref->ref_list) || |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2613 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2614 | spin_unlock(&locked_ref->lock); |
| 2615 | spin_unlock(&delayed_refs->lock); |
| 2616 | continue; |
| 2617 | } |
| 2618 | ref->in_tree = 0; |
| 2619 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2620 | rb_erase(&locked_ref->href_node, |
| 2621 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2622 | spin_unlock(&delayed_refs->lock); |
| 2623 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2624 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2625 | ref->in_tree = 0; |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2626 | list_del(&ref->list); |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2627 | if (!list_empty(&ref->add_list)) |
| 2628 | list_del(&ref->add_list); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2629 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2630 | atomic_dec(&delayed_refs->num_entries); |
| 2631 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2632 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2633 | /* |
| 2634 | * when we play the delayed ref, also correct the |
| 2635 | * ref_mod on head |
| 2636 | */ |
| 2637 | switch (ref->action) { |
| 2638 | case BTRFS_ADD_DELAYED_REF: |
| 2639 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2640 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2641 | break; |
| 2642 | case BTRFS_DROP_DELAYED_REF: |
| 2643 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2644 | break; |
| 2645 | default: |
| 2646 | WARN_ON(1); |
| 2647 | } |
| 2648 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2649 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2650 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2651 | ret = run_one_delayed_ref(trans, fs_info, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2652 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2653 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2654 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2655 | if (ret) { |
Wang Xiaoguang | 9d1032c | 2016-06-20 09:18:52 +0800 | [diff] [blame] | 2656 | spin_lock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2657 | locked_ref->processing = 0; |
Wang Xiaoguang | 9d1032c | 2016-06-20 09:18:52 +0800 | [diff] [blame] | 2658 | delayed_refs->num_heads_ready++; |
| 2659 | spin_unlock(&delayed_refs->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2660 | btrfs_delayed_ref_unlock(locked_ref); |
| 2661 | btrfs_put_delayed_ref(ref); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2662 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", |
| 2663 | ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2664 | return ret; |
| 2665 | } |
| 2666 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2667 | /* |
| 2668 | * If this node is a head, that means all the refs in this head |
| 2669 | * have been dealt with, and we will pick the next head to deal |
| 2670 | * with, so we must unlock the head and drop it from the cluster |
| 2671 | * list before we release it. |
| 2672 | */ |
| 2673 | if (btrfs_delayed_ref_is_head(ref)) { |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2674 | if (locked_ref->is_data && |
| 2675 | locked_ref->total_ref_mod < 0) { |
| 2676 | spin_lock(&delayed_refs->lock); |
| 2677 | delayed_refs->pending_csums -= ref->num_bytes; |
| 2678 | spin_unlock(&delayed_refs->lock); |
| 2679 | } |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2680 | btrfs_delayed_ref_unlock(locked_ref); |
| 2681 | locked_ref = NULL; |
| 2682 | } |
| 2683 | btrfs_put_delayed_ref(ref); |
| 2684 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2685 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2686 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2687 | |
| 2688 | /* |
| 2689 | * We don't want to include ref heads since we can have empty ref heads |
| 2690 | * and those will drastically skew our runtime down since we just do |
| 2691 | * accounting, no actual extent tree updates. |
| 2692 | */ |
| 2693 | if (actual_count > 0) { |
| 2694 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2695 | u64 avg; |
| 2696 | |
| 2697 | /* |
| 2698 | * We weigh the current average higher than our current runtime |
| 2699 | * to avoid large swings in the average. |
| 2700 | */ |
| 2701 | spin_lock(&delayed_refs->lock); |
| 2702 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2703 | fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */ |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2704 | spin_unlock(&delayed_refs->lock); |
| 2705 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2706 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2707 | } |
| 2708 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2709 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2710 | /* |
| 2711 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2712 | * correlates in most cases to the order added. To expose dependencies on this |
| 2713 | * order, we start to process the tree in the middle instead of the beginning |
| 2714 | */ |
| 2715 | static u64 find_middle(struct rb_root *root) |
| 2716 | { |
| 2717 | struct rb_node *n = root->rb_node; |
| 2718 | struct btrfs_delayed_ref_node *entry; |
| 2719 | int alt = 1; |
| 2720 | u64 middle; |
| 2721 | u64 first = 0, last = 0; |
| 2722 | |
| 2723 | n = rb_first(root); |
| 2724 | if (n) { |
| 2725 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2726 | first = entry->bytenr; |
| 2727 | } |
| 2728 | n = rb_last(root); |
| 2729 | if (n) { |
| 2730 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2731 | last = entry->bytenr; |
| 2732 | } |
| 2733 | n = root->rb_node; |
| 2734 | |
| 2735 | while (n) { |
| 2736 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2737 | WARN_ON(!entry->in_tree); |
| 2738 | |
| 2739 | middle = entry->bytenr; |
| 2740 | |
| 2741 | if (alt) |
| 2742 | n = n->rb_left; |
| 2743 | else |
| 2744 | n = n->rb_right; |
| 2745 | |
| 2746 | alt = 1 - alt; |
| 2747 | } |
| 2748 | return middle; |
| 2749 | } |
| 2750 | #endif |
| 2751 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2752 | 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] | 2753 | { |
| 2754 | u64 num_bytes; |
| 2755 | |
| 2756 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2757 | sizeof(struct btrfs_extent_inline_ref)); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2758 | if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA)) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2759 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2760 | |
| 2761 | /* |
| 2762 | * 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] | 2763 | * closer to what we're really going to want to use. |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2764 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2765 | return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info)); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2766 | } |
| 2767 | |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2768 | /* |
| 2769 | * Takes the number of bytes to be csumm'ed and figures out how many leaves it |
| 2770 | * would require to store the csums for that many bytes. |
| 2771 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2772 | 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] | 2773 | { |
| 2774 | u64 csum_size; |
| 2775 | u64 num_csums_per_leaf; |
| 2776 | u64 num_csums; |
| 2777 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2778 | csum_size = BTRFS_MAX_ITEM_SIZE(fs_info); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2779 | num_csums_per_leaf = div64_u64(csum_size, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2780 | (u64)btrfs_super_csum_size(fs_info->super_copy)); |
| 2781 | num_csums = div64_u64(csum_bytes, fs_info->sectorsize); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2782 | num_csums += num_csums_per_leaf - 1; |
| 2783 | num_csums = div64_u64(num_csums, num_csums_per_leaf); |
| 2784 | return num_csums; |
| 2785 | } |
| 2786 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2787 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2788 | struct btrfs_fs_info *fs_info) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2789 | { |
| 2790 | struct btrfs_block_rsv *global_rsv; |
| 2791 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2792 | u64 csum_bytes = trans->transaction->delayed_refs.pending_csums; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2793 | u64 num_dirty_bgs = trans->transaction->num_dirty_bgs; |
| 2794 | u64 num_bytes, num_dirty_bgs_bytes; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2795 | int ret = 0; |
| 2796 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2797 | num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2798 | num_heads = heads_to_leaves(fs_info, num_heads); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2799 | if (num_heads > 1) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2800 | num_bytes += (num_heads - 1) * fs_info->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2801 | num_bytes <<= 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2802 | num_bytes += btrfs_csum_bytes_to_leaves(fs_info, csum_bytes) * |
| 2803 | fs_info->nodesize; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2804 | num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(fs_info, |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2805 | num_dirty_bgs); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2806 | global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2807 | |
| 2808 | /* |
| 2809 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2810 | * wiggle room since running delayed refs can create more delayed refs. |
| 2811 | */ |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2812 | if (global_rsv->space_info->full) { |
| 2813 | num_dirty_bgs_bytes <<= 1; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2814 | num_bytes <<= 1; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2815 | } |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2816 | |
| 2817 | spin_lock(&global_rsv->lock); |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2818 | if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2819 | ret = 1; |
| 2820 | spin_unlock(&global_rsv->lock); |
| 2821 | return ret; |
| 2822 | } |
| 2823 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2824 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2825 | struct btrfs_fs_info *fs_info) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2826 | { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2827 | u64 num_entries = |
| 2828 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2829 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2830 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2831 | |
| 2832 | smp_mb(); |
| 2833 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2834 | val = num_entries * avg_runtime; |
Wang Xiaoguang | dc1a90c | 2016-10-26 15:23:01 +0800 | [diff] [blame] | 2835 | if (val >= NSEC_PER_SEC) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2836 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2837 | if (val >= NSEC_PER_SEC / 2) |
| 2838 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2839 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2840 | return btrfs_check_space_for_delayed_refs(trans, fs_info); |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2841 | } |
| 2842 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2843 | struct async_delayed_refs { |
| 2844 | struct btrfs_root *root; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2845 | u64 transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2846 | int count; |
| 2847 | int error; |
| 2848 | int sync; |
| 2849 | struct completion wait; |
| 2850 | struct btrfs_work work; |
| 2851 | }; |
| 2852 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2853 | static inline struct async_delayed_refs * |
| 2854 | to_async_delayed_refs(struct btrfs_work *work) |
| 2855 | { |
| 2856 | return container_of(work, struct async_delayed_refs, work); |
| 2857 | } |
| 2858 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2859 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2860 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2861 | struct async_delayed_refs *async = to_async_delayed_refs(work); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2862 | struct btrfs_trans_handle *trans; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2863 | struct btrfs_fs_info *fs_info = async->root->fs_info; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2864 | int ret; |
| 2865 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2866 | /* 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] | 2867 | if (btrfs_transaction_blocked(fs_info)) |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2868 | goto done; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2869 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2870 | trans = btrfs_join_transaction(async->root); |
| 2871 | if (IS_ERR(trans)) { |
| 2872 | async->error = PTR_ERR(trans); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2873 | goto done; |
| 2874 | } |
| 2875 | |
| 2876 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2877 | * trans->sync means that when we call end_transaction, we won't |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2878 | * wait on delayed refs |
| 2879 | */ |
| 2880 | trans->sync = true; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2881 | |
| 2882 | /* Don't bother flushing if we got into a different transaction */ |
| 2883 | if (trans->transid > async->transid) |
| 2884 | goto end; |
| 2885 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2886 | ret = btrfs_run_delayed_refs(trans, fs_info, async->count); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2887 | if (ret) |
| 2888 | async->error = ret; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2889 | end: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2890 | ret = btrfs_end_transaction(trans); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2891 | if (ret && !async->error) |
| 2892 | async->error = ret; |
| 2893 | done: |
| 2894 | if (async->sync) |
| 2895 | complete(&async->wait); |
| 2896 | else |
| 2897 | kfree(async); |
| 2898 | } |
| 2899 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2900 | int btrfs_async_run_delayed_refs(struct btrfs_fs_info *fs_info, |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2901 | unsigned long count, u64 transid, int wait) |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2902 | { |
| 2903 | struct async_delayed_refs *async; |
| 2904 | int ret; |
| 2905 | |
| 2906 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2907 | if (!async) |
| 2908 | return -ENOMEM; |
| 2909 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2910 | async->root = fs_info->tree_root; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2911 | async->count = count; |
| 2912 | async->error = 0; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2913 | async->transid = transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2914 | if (wait) |
| 2915 | async->sync = 1; |
| 2916 | else |
| 2917 | async->sync = 0; |
| 2918 | init_completion(&async->wait); |
| 2919 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2920 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2921 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2922 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2923 | btrfs_queue_work(fs_info->extent_workers, &async->work); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2924 | |
| 2925 | if (wait) { |
| 2926 | wait_for_completion(&async->wait); |
| 2927 | ret = async->error; |
| 2928 | kfree(async); |
| 2929 | return ret; |
| 2930 | } |
| 2931 | return 0; |
| 2932 | } |
| 2933 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2934 | /* |
| 2935 | * this starts processing the delayed reference count updates and |
| 2936 | * extent insertions we have queued up so far. count can be |
| 2937 | * 0, which means to process everything in the tree at the start |
| 2938 | * of the run (but not newly added entries), or it can be some target |
| 2939 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2940 | * |
| 2941 | * Returns 0 on success or if called with an aborted transaction |
| 2942 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2943 | */ |
| 2944 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2945 | struct btrfs_fs_info *fs_info, unsigned long count) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2946 | { |
| 2947 | struct rb_node *node; |
| 2948 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2949 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2950 | int ret; |
| 2951 | int run_all = count == (unsigned long)-1; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2952 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2953 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2954 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2955 | if (trans->aborted) |
| 2956 | return 0; |
| 2957 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2958 | if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags)) |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 2959 | return 0; |
| 2960 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2961 | delayed_refs = &trans->transaction->delayed_refs; |
Liu Bo | 26455d3 | 2014-12-17 16:14:09 +0800 | [diff] [blame] | 2962 | if (count == 0) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2963 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2964 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2965 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2966 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2967 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2968 | #endif |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2969 | trans->can_flush_pending_bgs = false; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2970 | ret = __btrfs_run_delayed_refs(trans, fs_info, count); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2971 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2972 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2973 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2974 | } |
| 2975 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2976 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2977 | if (!list_empty(&trans->new_bgs)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2978 | btrfs_create_pending_block_groups(trans, fs_info); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2979 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2980 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2981 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2982 | if (!node) { |
| 2983 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2984 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2985 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2986 | |
| 2987 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2988 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2989 | href_node); |
| 2990 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2991 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2992 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2993 | ref = &head->node; |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 2994 | refcount_inc(&ref->refs); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2995 | |
| 2996 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2997 | /* |
| 2998 | * Mutex was contended, block until it's |
| 2999 | * released and try again |
| 3000 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3001 | mutex_lock(&head->mutex); |
| 3002 | mutex_unlock(&head->mutex); |
| 3003 | |
| 3004 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 3005 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3006 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 3007 | } else { |
| 3008 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3009 | } |
| 3010 | node = rb_next(node); |
| 3011 | } |
| 3012 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3013 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3014 | goto again; |
| 3015 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3016 | out: |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 3017 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 3018 | return 0; |
| 3019 | } |
| 3020 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3021 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3022 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3023 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3024 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3025 | { |
| 3026 | struct btrfs_delayed_extent_op *extent_op; |
| 3027 | int ret; |
| 3028 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3029 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3030 | if (!extent_op) |
| 3031 | return -ENOMEM; |
| 3032 | |
| 3033 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 3034 | extent_op->update_flags = true; |
| 3035 | extent_op->update_key = false; |
| 3036 | extent_op->is_data = is_data ? true : false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3037 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3038 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3039 | ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3040 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3041 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3042 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3043 | return ret; |
| 3044 | } |
| 3045 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3046 | static noinline int check_delayed_ref(struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3047 | struct btrfs_path *path, |
| 3048 | u64 objectid, u64 offset, u64 bytenr) |
| 3049 | { |
| 3050 | struct btrfs_delayed_ref_head *head; |
| 3051 | struct btrfs_delayed_ref_node *ref; |
| 3052 | struct btrfs_delayed_data_ref *data_ref; |
| 3053 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3054 | struct btrfs_transaction *cur_trans; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3055 | int ret = 0; |
| 3056 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3057 | cur_trans = root->fs_info->running_transaction; |
| 3058 | if (!cur_trans) |
| 3059 | return 0; |
| 3060 | |
| 3061 | delayed_refs = &cur_trans->delayed_refs; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3062 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 3063 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3064 | if (!head) { |
| 3065 | spin_unlock(&delayed_refs->lock); |
| 3066 | return 0; |
| 3067 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3068 | |
| 3069 | if (!mutex_trylock(&head->mutex)) { |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 3070 | refcount_inc(&head->node.refs); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3071 | spin_unlock(&delayed_refs->lock); |
| 3072 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3073 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3074 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 3075 | /* |
| 3076 | * Mutex was contended, block until it's released and let |
| 3077 | * caller try again |
| 3078 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3079 | mutex_lock(&head->mutex); |
| 3080 | mutex_unlock(&head->mutex); |
| 3081 | btrfs_put_delayed_ref(&head->node); |
| 3082 | return -EAGAIN; |
| 3083 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3084 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3085 | |
| 3086 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 3087 | list_for_each_entry(ref, &head->ref_list, list) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3088 | /* If it's a shared ref we know a cross reference exists */ |
| 3089 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 3090 | ret = 1; |
| 3091 | break; |
| 3092 | } |
| 3093 | |
| 3094 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 3095 | |
| 3096 | /* |
| 3097 | * If our ref doesn't match the one we're currently looking at |
| 3098 | * then we have a cross reference. |
| 3099 | */ |
| 3100 | if (data_ref->root != root->root_key.objectid || |
| 3101 | data_ref->objectid != objectid || |
| 3102 | data_ref->offset != offset) { |
| 3103 | ret = 1; |
| 3104 | break; |
| 3105 | } |
| 3106 | } |
| 3107 | spin_unlock(&head->lock); |
| 3108 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3109 | return ret; |
| 3110 | } |
| 3111 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3112 | static noinline int check_committed_ref(struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3113 | struct btrfs_path *path, |
| 3114 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3115 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3116 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 3117 | struct btrfs_root *extent_root = fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3118 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3119 | struct btrfs_extent_data_ref *ref; |
| 3120 | struct btrfs_extent_inline_ref *iref; |
| 3121 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3122 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3123 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3124 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3125 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3126 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3127 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3128 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3129 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3130 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 3131 | if (ret < 0) |
| 3132 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3133 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 3134 | |
| 3135 | ret = -ENOENT; |
| 3136 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3137 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3138 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3139 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3140 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3141 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3142 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3143 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3144 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3145 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3146 | ret = 1; |
| 3147 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 3148 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 3149 | if (item_size < sizeof(*ei)) { |
| 3150 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 3151 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3152 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3153 | #endif |
| 3154 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 3155 | |
| 3156 | if (item_size != sizeof(*ei) + |
| 3157 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 3158 | goto out; |
| 3159 | |
| 3160 | if (btrfs_extent_generation(leaf, ei) <= |
| 3161 | btrfs_root_last_snapshot(&root->root_item)) |
| 3162 | goto out; |
| 3163 | |
| 3164 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 3165 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 3166 | BTRFS_EXTENT_DATA_REF_KEY) |
| 3167 | goto out; |
| 3168 | |
| 3169 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 3170 | if (btrfs_extent_refs(leaf, ei) != |
| 3171 | btrfs_extent_data_ref_count(leaf, ref) || |
| 3172 | btrfs_extent_data_ref_root(leaf, ref) != |
| 3173 | root->root_key.objectid || |
| 3174 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3175 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3176 | goto out; |
| 3177 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3178 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3179 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3180 | return ret; |
| 3181 | } |
| 3182 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3183 | int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset, |
| 3184 | u64 bytenr) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3185 | { |
| 3186 | struct btrfs_path *path; |
| 3187 | int ret; |
| 3188 | int ret2; |
| 3189 | |
| 3190 | path = btrfs_alloc_path(); |
| 3191 | if (!path) |
| 3192 | return -ENOENT; |
| 3193 | |
| 3194 | do { |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3195 | ret = check_committed_ref(root, path, objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3196 | offset, bytenr); |
| 3197 | if (ret && ret != -ENOENT) |
| 3198 | goto out; |
| 3199 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3200 | ret2 = check_delayed_ref(root, path, objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3201 | offset, bytenr); |
| 3202 | } while (ret2 == -EAGAIN); |
| 3203 | |
| 3204 | if (ret2 && ret2 != -ENOENT) { |
| 3205 | ret = ret2; |
| 3206 | goto out; |
| 3207 | } |
| 3208 | |
| 3209 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3210 | ret = 0; |
| 3211 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3212 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3213 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3214 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3215 | return ret; |
| 3216 | } |
| 3217 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3218 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3219 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3220 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3221 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3222 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3223 | struct btrfs_fs_info *fs_info = root->fs_info; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3224 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3225 | u64 num_bytes; |
| 3226 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3227 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3228 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3229 | struct btrfs_key key; |
| 3230 | struct btrfs_file_extent_item *fi; |
| 3231 | int i; |
| 3232 | int level; |
| 3233 | int ret = 0; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3234 | int (*process_func)(struct btrfs_trans_handle *, |
| 3235 | struct btrfs_fs_info *, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3236 | u64, u64, u64, u64, u64, u64); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3237 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3238 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3239 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3240 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3241 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3242 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3243 | nritems = btrfs_header_nritems(buf); |
| 3244 | level = btrfs_header_level(buf); |
| 3245 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3246 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3247 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3248 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3249 | if (inc) |
| 3250 | process_func = btrfs_inc_extent_ref; |
| 3251 | else |
| 3252 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3253 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3254 | if (full_backref) |
| 3255 | parent = buf->start; |
| 3256 | else |
| 3257 | parent = 0; |
| 3258 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3259 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3260 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3261 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3262 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3263 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3264 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3265 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3266 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3267 | BTRFS_FILE_EXTENT_INLINE) |
| 3268 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3269 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3270 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3271 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3272 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3273 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3274 | key.offset -= btrfs_file_extent_offset(buf, fi); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3275 | ret = process_func(trans, fs_info, bytenr, num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3276 | parent, ref_root, key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3277 | key.offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3278 | if (ret) |
| 3279 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3280 | } else { |
| 3281 | bytenr = btrfs_node_blockptr(buf, i); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3282 | num_bytes = fs_info->nodesize; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3283 | ret = process_func(trans, fs_info, bytenr, num_bytes, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3284 | parent, ref_root, level - 1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3285 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3286 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3287 | } |
| 3288 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3289 | return 0; |
| 3290 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3291 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3292 | } |
| 3293 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3294 | 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] | 3295 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3296 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3297 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3298 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3299 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3300 | 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] | 3301 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3302 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3303 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3304 | } |
| 3305 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3306 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3307 | struct btrfs_fs_info *fs_info, |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3308 | struct btrfs_path *path, |
| 3309 | struct btrfs_block_group_cache *cache) |
| 3310 | { |
| 3311 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3312 | struct btrfs_root *extent_root = fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3313 | unsigned long bi; |
| 3314 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3315 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3316 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3317 | if (ret) { |
| 3318 | if (ret > 0) |
| 3319 | ret = -ENOENT; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3320 | goto fail; |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3321 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3322 | |
| 3323 | leaf = path->nodes[0]; |
| 3324 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3325 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3326 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3327 | fail: |
Filipe Manana | 24b89d0 | 2015-04-25 18:31:05 +0100 | [diff] [blame] | 3328 | btrfs_release_path(path); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3329 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3330 | |
| 3331 | } |
| 3332 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3333 | static struct btrfs_block_group_cache * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3334 | next_block_group(struct btrfs_fs_info *fs_info, |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3335 | struct btrfs_block_group_cache *cache) |
| 3336 | { |
| 3337 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3338 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3339 | spin_lock(&fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3340 | |
| 3341 | /* If our block group was removed, we need a full search. */ |
| 3342 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3343 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3344 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3345 | spin_unlock(&fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3346 | btrfs_put_block_group(cache); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3347 | cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3348 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3349 | node = rb_next(&cache->cache_node); |
| 3350 | btrfs_put_block_group(cache); |
| 3351 | if (node) { |
| 3352 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3353 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3354 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3355 | } else |
| 3356 | cache = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3357 | spin_unlock(&fs_info->block_group_cache_lock); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3358 | return cache; |
| 3359 | } |
| 3360 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3361 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3362 | struct btrfs_trans_handle *trans, |
| 3363 | struct btrfs_path *path) |
| 3364 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3365 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
| 3366 | struct btrfs_root *root = fs_info->tree_root; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3367 | struct inode *inode = NULL; |
| 3368 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3369 | int dcs = BTRFS_DC_ERROR; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3370 | u64 num_pages = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3371 | int retries = 0; |
| 3372 | int ret = 0; |
| 3373 | |
| 3374 | /* |
| 3375 | * If this block group is smaller than 100 megs don't bother caching the |
| 3376 | * block group. |
| 3377 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3378 | if (block_group->key.offset < (100 * SZ_1M)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3379 | spin_lock(&block_group->lock); |
| 3380 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3381 | spin_unlock(&block_group->lock); |
| 3382 | return 0; |
| 3383 | } |
| 3384 | |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3385 | if (trans->aborted) |
| 3386 | return 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3387 | again: |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3388 | inode = lookup_free_space_inode(fs_info, block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3389 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3390 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3391 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3392 | goto out; |
| 3393 | } |
| 3394 | |
| 3395 | if (IS_ERR(inode)) { |
| 3396 | BUG_ON(retries); |
| 3397 | retries++; |
| 3398 | |
| 3399 | if (block_group->ro) |
| 3400 | goto out_free; |
| 3401 | |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3402 | ret = create_free_space_inode(fs_info, trans, block_group, |
| 3403 | path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3404 | if (ret) |
| 3405 | goto out_free; |
| 3406 | goto again; |
| 3407 | } |
| 3408 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3409 | /* We've already setup this transaction, go ahead and exit */ |
| 3410 | if (block_group->cache_generation == trans->transid && |
| 3411 | i_size_read(inode)) { |
| 3412 | dcs = BTRFS_DC_SETUP; |
| 3413 | goto out_put; |
| 3414 | } |
| 3415 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3416 | /* |
| 3417 | * We want to set the generation to 0, that way if anything goes wrong |
| 3418 | * from here on out we know not to trust this cache when we load up next |
| 3419 | * time. |
| 3420 | */ |
| 3421 | BTRFS_I(inode)->generation = 0; |
| 3422 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3423 | if (ret) { |
| 3424 | /* |
| 3425 | * So theoretically we could recover from this, simply set the |
| 3426 | * super cache generation to 0 so we know to invalidate the |
| 3427 | * cache, but then we'd have to keep track of the block groups |
| 3428 | * that fail this way so we know we _have_ to reset this cache |
| 3429 | * before the next commit or risk reading stale cache. So to |
| 3430 | * limit our exposure to horrible edge cases lets just abort the |
| 3431 | * transaction, this only happens in really bad situations |
| 3432 | * anyway. |
| 3433 | */ |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3434 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3435 | goto out_put; |
| 3436 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3437 | WARN_ON(ret); |
| 3438 | |
| 3439 | if (i_size_read(inode) > 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3440 | ret = btrfs_check_trunc_cache_free_space(fs_info, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3441 | &fs_info->global_block_rsv); |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3442 | if (ret) |
| 3443 | goto out_put; |
| 3444 | |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3445 | ret = btrfs_truncate_free_space_cache(trans, NULL, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3446 | if (ret) |
| 3447 | goto out_put; |
| 3448 | } |
| 3449 | |
| 3450 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3451 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3452 | !btrfs_test_opt(fs_info, SPACE_CACHE)) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3453 | /* |
| 3454 | * don't bother trying to write stuff out _if_ |
| 3455 | * a) we're not cached, |
Liu Bo | 1a79c1f | 2017-03-06 13:49:02 -0800 | [diff] [blame] | 3456 | * b) we're with nospace_cache mount option, |
| 3457 | * c) we're with v2 space_cache (FREE_SPACE_TREE). |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3458 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3459 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3460 | spin_unlock(&block_group->lock); |
| 3461 | goto out_put; |
| 3462 | } |
| 3463 | spin_unlock(&block_group->lock); |
| 3464 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3465 | /* |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3466 | * We hit an ENOSPC when setting up the cache in this transaction, just |
| 3467 | * skip doing the setup, we've already cleared the cache so we're safe. |
| 3468 | */ |
| 3469 | if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) { |
| 3470 | ret = -ENOSPC; |
| 3471 | goto out_put; |
| 3472 | } |
| 3473 | |
| 3474 | /* |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3475 | * Try to preallocate enough space based on how big the block group is. |
| 3476 | * Keep in mind this has to include any pinned space which could end up |
| 3477 | * taking up quite a bit since it's not folded into the other space |
| 3478 | * cache. |
| 3479 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3480 | num_pages = div_u64(block_group->key.offset, SZ_256M); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3481 | if (!num_pages) |
| 3482 | num_pages = 1; |
| 3483 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3484 | num_pages *= 16; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3485 | num_pages *= PAGE_SIZE; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3486 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 3487 | ret = btrfs_check_data_free_space(inode, 0, num_pages); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3488 | if (ret) |
| 3489 | goto out_put; |
| 3490 | |
| 3491 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3492 | num_pages, num_pages, |
| 3493 | &alloc_hint); |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3494 | /* |
| 3495 | * Our cache requires contiguous chunks so that we don't modify a bunch |
| 3496 | * of metadata or split extents when writing the cache out, which means |
| 3497 | * we can enospc if we are heavily fragmented in addition to just normal |
| 3498 | * out of space conditions. So if we hit this just skip setting up any |
| 3499 | * other block groups for this transaction, maybe we'll unpin enough |
| 3500 | * space the next time around. |
| 3501 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3502 | if (!ret) |
| 3503 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3504 | else if (ret == -ENOSPC) |
| 3505 | set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3506 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3507 | out_put: |
| 3508 | iput(inode); |
| 3509 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3510 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3511 | out: |
| 3512 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3513 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3514 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3515 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3516 | spin_unlock(&block_group->lock); |
| 3517 | |
| 3518 | return ret; |
| 3519 | } |
| 3520 | |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3521 | int btrfs_setup_space_cache(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3522 | struct btrfs_fs_info *fs_info) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3523 | { |
| 3524 | struct btrfs_block_group_cache *cache, *tmp; |
| 3525 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3526 | struct btrfs_path *path; |
| 3527 | |
| 3528 | if (list_empty(&cur_trans->dirty_bgs) || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3529 | !btrfs_test_opt(fs_info, SPACE_CACHE)) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3530 | return 0; |
| 3531 | |
| 3532 | path = btrfs_alloc_path(); |
| 3533 | if (!path) |
| 3534 | return -ENOMEM; |
| 3535 | |
| 3536 | /* Could add new block groups, use _safe just in case */ |
| 3537 | list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs, |
| 3538 | dirty_list) { |
| 3539 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3540 | cache_save_setup(cache, trans, path); |
| 3541 | } |
| 3542 | |
| 3543 | btrfs_free_path(path); |
| 3544 | return 0; |
| 3545 | } |
| 3546 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3547 | /* |
| 3548 | * transaction commit does final block group cache writeback during a |
| 3549 | * critical section where nothing is allowed to change the FS. This is |
| 3550 | * required in order for the cache to actually match the block group, |
| 3551 | * but can introduce a lot of latency into the commit. |
| 3552 | * |
| 3553 | * So, btrfs_start_dirty_block_groups is here to kick off block group |
| 3554 | * cache IO. There's a chance we'll have to redo some of it if the |
| 3555 | * block group changes again during the commit, but it greatly reduces |
| 3556 | * the commit latency by getting rid of the easy block groups while |
| 3557 | * we're still allowing others to join the commit. |
| 3558 | */ |
| 3559 | int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3560 | struct btrfs_fs_info *fs_info) |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3561 | { |
| 3562 | struct btrfs_block_group_cache *cache; |
| 3563 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3564 | int ret = 0; |
| 3565 | int should_put; |
| 3566 | struct btrfs_path *path = NULL; |
| 3567 | LIST_HEAD(dirty); |
| 3568 | struct list_head *io = &cur_trans->io_bgs; |
| 3569 | int num_started = 0; |
| 3570 | int loops = 0; |
| 3571 | |
| 3572 | spin_lock(&cur_trans->dirty_bgs_lock); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3573 | if (list_empty(&cur_trans->dirty_bgs)) { |
| 3574 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3575 | return 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3576 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3577 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3578 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3579 | |
| 3580 | again: |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3581 | /* |
| 3582 | * make sure all the block groups on our dirty list actually |
| 3583 | * exist |
| 3584 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3585 | btrfs_create_pending_block_groups(trans, fs_info); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3586 | |
| 3587 | if (!path) { |
| 3588 | path = btrfs_alloc_path(); |
| 3589 | if (!path) |
| 3590 | return -ENOMEM; |
| 3591 | } |
| 3592 | |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3593 | /* |
| 3594 | * cache_write_mutex is here only to save us from balance or automatic |
| 3595 | * removal of empty block groups deleting this block group while we are |
| 3596 | * writing out the cache |
| 3597 | */ |
| 3598 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3599 | while (!list_empty(&dirty)) { |
| 3600 | cache = list_first_entry(&dirty, |
| 3601 | struct btrfs_block_group_cache, |
| 3602 | dirty_list); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3603 | /* |
| 3604 | * this can happen if something re-dirties a block |
| 3605 | * group that is already under IO. Just wait for it to |
| 3606 | * finish and then do it all again |
| 3607 | */ |
| 3608 | if (!list_empty(&cache->io_list)) { |
| 3609 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3610 | btrfs_wait_cache_io(trans, cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3611 | btrfs_put_block_group(cache); |
| 3612 | } |
| 3613 | |
| 3614 | |
| 3615 | /* |
| 3616 | * btrfs_wait_cache_io uses the cache->dirty_list to decide |
| 3617 | * if it should update the cache_state. Don't delete |
| 3618 | * until after we wait. |
| 3619 | * |
| 3620 | * Since we're not running in the commit critical section |
| 3621 | * we need the dirty_bgs_lock to protect from update_block_group |
| 3622 | */ |
| 3623 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3624 | list_del_init(&cache->dirty_list); |
| 3625 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3626 | |
| 3627 | should_put = 1; |
| 3628 | |
| 3629 | cache_save_setup(cache, trans, path); |
| 3630 | |
| 3631 | if (cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3632 | cache->io_ctl.inode = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3633 | ret = btrfs_write_out_cache(fs_info, trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3634 | cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3635 | if (ret == 0 && cache->io_ctl.inode) { |
| 3636 | num_started++; |
| 3637 | should_put = 0; |
| 3638 | |
| 3639 | /* |
| 3640 | * the cache_write_mutex is protecting |
| 3641 | * the io_list |
| 3642 | */ |
| 3643 | list_add_tail(&cache->io_list, io); |
| 3644 | } else { |
| 3645 | /* |
| 3646 | * if we failed to write the cache, the |
| 3647 | * generation will be bad and life goes on |
| 3648 | */ |
| 3649 | ret = 0; |
| 3650 | } |
| 3651 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3652 | if (!ret) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3653 | ret = write_one_cache_group(trans, fs_info, |
| 3654 | path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3655 | /* |
| 3656 | * Our block group might still be attached to the list |
| 3657 | * of new block groups in the transaction handle of some |
| 3658 | * other task (struct btrfs_trans_handle->new_bgs). This |
| 3659 | * means its block group item isn't yet in the extent |
| 3660 | * tree. If this happens ignore the error, as we will |
| 3661 | * try again later in the critical section of the |
| 3662 | * transaction commit. |
| 3663 | */ |
| 3664 | if (ret == -ENOENT) { |
| 3665 | ret = 0; |
| 3666 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3667 | if (list_empty(&cache->dirty_list)) { |
| 3668 | list_add_tail(&cache->dirty_list, |
| 3669 | &cur_trans->dirty_bgs); |
| 3670 | btrfs_get_block_group(cache); |
| 3671 | } |
| 3672 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3673 | } else if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3674 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3675 | } |
| 3676 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3677 | |
| 3678 | /* if its not on the io list, we need to put the block group */ |
| 3679 | if (should_put) |
| 3680 | btrfs_put_block_group(cache); |
| 3681 | |
| 3682 | if (ret) |
| 3683 | break; |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3684 | |
| 3685 | /* |
| 3686 | * Avoid blocking other tasks for too long. It might even save |
| 3687 | * us from writing caches for block groups that are going to be |
| 3688 | * removed. |
| 3689 | */ |
| 3690 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 3691 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3692 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3693 | mutex_unlock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3694 | |
| 3695 | /* |
| 3696 | * go through delayed refs for all the stuff we've just kicked off |
| 3697 | * and then loop back (just once) |
| 3698 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3699 | ret = btrfs_run_delayed_refs(trans, fs_info, 0); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3700 | if (!ret && loops == 0) { |
| 3701 | loops++; |
| 3702 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3703 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3704 | /* |
| 3705 | * dirty_bgs_lock protects us from concurrent block group |
| 3706 | * deletes too (not just cache_write_mutex). |
| 3707 | */ |
| 3708 | if (!list_empty(&dirty)) { |
| 3709 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3710 | goto again; |
| 3711 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3712 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 3713 | } else if (ret < 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3714 | btrfs_cleanup_dirty_bgs(cur_trans, fs_info); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3715 | } |
| 3716 | |
| 3717 | btrfs_free_path(path); |
| 3718 | return ret; |
| 3719 | } |
| 3720 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3721 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3722 | struct btrfs_fs_info *fs_info) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3723 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3724 | struct btrfs_block_group_cache *cache; |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3725 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3726 | int ret = 0; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3727 | int should_put; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3728 | struct btrfs_path *path; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3729 | struct list_head *io = &cur_trans->io_bgs; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3730 | int num_started = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3731 | |
| 3732 | path = btrfs_alloc_path(); |
| 3733 | if (!path) |
| 3734 | return -ENOMEM; |
| 3735 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3736 | /* |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3737 | * Even though we are in the critical section of the transaction commit, |
| 3738 | * we can still have concurrent tasks adding elements to this |
| 3739 | * transaction's list of dirty block groups. These tasks correspond to |
| 3740 | * endio free space workers started when writeback finishes for a |
| 3741 | * space cache, which run inode.c:btrfs_finish_ordered_io(), and can |
| 3742 | * allocate new block groups as a result of COWing nodes of the root |
| 3743 | * tree when updating the free space inode. The writeback for the space |
| 3744 | * caches is triggered by an earlier call to |
| 3745 | * btrfs_start_dirty_block_groups() and iterations of the following |
| 3746 | * loop. |
| 3747 | * 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] | 3748 | * delayed refs to make sure we have the best chance at doing this all |
| 3749 | * in one shot. |
| 3750 | */ |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3751 | spin_lock(&cur_trans->dirty_bgs_lock); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3752 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 3753 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 3754 | struct btrfs_block_group_cache, |
| 3755 | dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3756 | |
| 3757 | /* |
| 3758 | * this can happen if cache_save_setup re-dirties a block |
| 3759 | * group that is already under IO. Just wait for it to |
| 3760 | * finish and then do it all again |
| 3761 | */ |
| 3762 | if (!list_empty(&cache->io_list)) { |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3763 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3764 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3765 | btrfs_wait_cache_io(trans, cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3766 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3767 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3768 | } |
| 3769 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3770 | /* |
| 3771 | * don't remove from the dirty list until after we've waited |
| 3772 | * on any pending IO |
| 3773 | */ |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3774 | list_del_init(&cache->dirty_list); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3775 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3776 | should_put = 1; |
| 3777 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3778 | cache_save_setup(cache, trans, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3779 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3780 | if (!ret) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3781 | ret = btrfs_run_delayed_refs(trans, fs_info, |
| 3782 | (unsigned long) -1); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3783 | |
| 3784 | if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3785 | cache->io_ctl.inode = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3786 | ret = btrfs_write_out_cache(fs_info, trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3787 | cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3788 | if (ret == 0 && cache->io_ctl.inode) { |
| 3789 | num_started++; |
| 3790 | should_put = 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3791 | list_add_tail(&cache->io_list, io); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3792 | } else { |
| 3793 | /* |
| 3794 | * if we failed to write the cache, the |
| 3795 | * generation will be bad and life goes on |
| 3796 | */ |
| 3797 | ret = 0; |
| 3798 | } |
| 3799 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3800 | if (!ret) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3801 | ret = write_one_cache_group(trans, fs_info, |
| 3802 | path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3803 | /* |
| 3804 | * One of the free space endio workers might have |
| 3805 | * created a new block group while updating a free space |
| 3806 | * cache's inode (at inode.c:btrfs_finish_ordered_io()) |
| 3807 | * and hasn't released its transaction handle yet, in |
| 3808 | * which case the new block group is still attached to |
| 3809 | * its transaction handle and its creation has not |
| 3810 | * finished yet (no block group item in the extent tree |
| 3811 | * yet, etc). If this is the case, wait for all free |
| 3812 | * space endio workers to finish and retry. This is a |
| 3813 | * a very rare case so no need for a more efficient and |
| 3814 | * complex approach. |
| 3815 | */ |
| 3816 | if (ret == -ENOENT) { |
| 3817 | wait_event(cur_trans->writer_wait, |
| 3818 | atomic_read(&cur_trans->num_writers) == 1); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3819 | ret = write_one_cache_group(trans, fs_info, |
| 3820 | path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3821 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3822 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3823 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3824 | } |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3825 | |
| 3826 | /* if its not on the io list, we need to put the block group */ |
| 3827 | if (should_put) |
| 3828 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3829 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3830 | } |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3831 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3832 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3833 | while (!list_empty(io)) { |
| 3834 | cache = list_first_entry(io, struct btrfs_block_group_cache, |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3835 | io_list); |
| 3836 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3837 | btrfs_wait_cache_io(trans, cache, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3838 | btrfs_put_block_group(cache); |
| 3839 | } |
| 3840 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3841 | btrfs_free_path(path); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3842 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3843 | } |
| 3844 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3845 | int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr) |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3846 | { |
| 3847 | struct btrfs_block_group_cache *block_group; |
| 3848 | int readonly = 0; |
| 3849 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3850 | block_group = btrfs_lookup_block_group(fs_info, bytenr); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3851 | if (!block_group || block_group->ro) |
| 3852 | readonly = 1; |
| 3853 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3854 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3855 | return readonly; |
| 3856 | } |
| 3857 | |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3858 | bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3859 | { |
| 3860 | struct btrfs_block_group_cache *bg; |
| 3861 | bool ret = true; |
| 3862 | |
| 3863 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3864 | if (!bg) |
| 3865 | return false; |
| 3866 | |
| 3867 | spin_lock(&bg->lock); |
| 3868 | if (bg->ro) |
| 3869 | ret = false; |
| 3870 | else |
| 3871 | atomic_inc(&bg->nocow_writers); |
| 3872 | spin_unlock(&bg->lock); |
| 3873 | |
| 3874 | /* no put on block group, done by btrfs_dec_nocow_writers */ |
| 3875 | if (!ret) |
| 3876 | btrfs_put_block_group(bg); |
| 3877 | |
| 3878 | return ret; |
| 3879 | |
| 3880 | } |
| 3881 | |
| 3882 | void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3883 | { |
| 3884 | struct btrfs_block_group_cache *bg; |
| 3885 | |
| 3886 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3887 | ASSERT(bg); |
| 3888 | if (atomic_dec_and_test(&bg->nocow_writers)) |
| 3889 | wake_up_atomic_t(&bg->nocow_writers); |
| 3890 | /* |
| 3891 | * Once for our lookup and once for the lookup done by a previous call |
| 3892 | * to btrfs_inc_nocow_writers() |
| 3893 | */ |
| 3894 | btrfs_put_block_group(bg); |
| 3895 | btrfs_put_block_group(bg); |
| 3896 | } |
| 3897 | |
| 3898 | static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a) |
| 3899 | { |
| 3900 | schedule(); |
| 3901 | return 0; |
| 3902 | } |
| 3903 | |
| 3904 | void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg) |
| 3905 | { |
| 3906 | wait_on_atomic_t(&bg->nocow_writers, |
| 3907 | btrfs_wait_nocow_writers_atomic_t, |
| 3908 | TASK_UNINTERRUPTIBLE); |
| 3909 | } |
| 3910 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3911 | static const char *alloc_name(u64 flags) |
| 3912 | { |
| 3913 | switch (flags) { |
| 3914 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3915 | return "mixed"; |
| 3916 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3917 | return "metadata"; |
| 3918 | case BTRFS_BLOCK_GROUP_DATA: |
| 3919 | return "data"; |
| 3920 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3921 | return "system"; |
| 3922 | default: |
| 3923 | WARN_ON(1); |
| 3924 | return "invalid-combination"; |
| 3925 | }; |
| 3926 | } |
| 3927 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3928 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3929 | u64 total_bytes, u64 bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3930 | u64 bytes_readonly, |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3931 | struct btrfs_space_info **space_info) |
| 3932 | { |
| 3933 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3934 | int i; |
| 3935 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3936 | int ret; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3937 | |
| 3938 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3939 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3940 | factor = 2; |
| 3941 | else |
| 3942 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3943 | |
| 3944 | found = __find_space_info(info, flags); |
| 3945 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3946 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3947 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3948 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3949 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3950 | found->disk_used += bytes_used * factor; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3951 | found->bytes_readonly += bytes_readonly; |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 3952 | if (total_bytes > 0) |
| 3953 | found->full = 0; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 3954 | space_info_add_new_bytes(info, found, total_bytes - |
| 3955 | bytes_used - bytes_readonly); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3956 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3957 | *space_info = found; |
| 3958 | return 0; |
| 3959 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3960 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3961 | if (!found) |
| 3962 | return -ENOMEM; |
| 3963 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 3964 | ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3965 | if (ret) { |
| 3966 | kfree(found); |
| 3967 | return ret; |
| 3968 | } |
| 3969 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 3970 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3971 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3972 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3973 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3974 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3975 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3976 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3977 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3978 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3979 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3980 | found->bytes_reserved = 0; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3981 | found->bytes_readonly = bytes_readonly; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3982 | found->bytes_may_use = 0; |
Filipe Manana | 6af3e3a | 2015-09-07 10:41:12 +0100 | [diff] [blame] | 3983 | found->full = 0; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 3984 | found->max_extent_size = 0; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3985 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3986 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3987 | found->flush = 0; |
| 3988 | init_waitqueue_head(&found->wait); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 3989 | INIT_LIST_HEAD(&found->ro_bgs); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 3990 | INIT_LIST_HEAD(&found->tickets); |
| 3991 | INIT_LIST_HEAD(&found->priority_tickets); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3992 | |
| 3993 | ret = kobject_init_and_add(&found->kobj, &space_info_ktype, |
| 3994 | info->space_info_kobj, "%s", |
| 3995 | alloc_name(found->flags)); |
| 3996 | if (ret) { |
Jeff Mahoney | 896533a | 2017-05-17 09:49:37 -0400 | [diff] [blame] | 3997 | percpu_counter_destroy(&found->total_bytes_pinned); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3998 | kfree(found); |
| 3999 | return ret; |
| 4000 | } |
| 4001 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4002 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 4003 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4004 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4005 | info->data_sinfo = found; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 4006 | |
| 4007 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4008 | } |
| 4009 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4010 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 4011 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 4012 | u64 extra_flags = chunk_to_extended(flags) & |
| 4013 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4014 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4015 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4016 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4017 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 4018 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 4019 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 4020 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 4021 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4022 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4023 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4024 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4025 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4026 | * returns target flags in extended format or 0 if restripe for this |
| 4027 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 4028 | * |
| 4029 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4030 | */ |
| 4031 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 4032 | { |
| 4033 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 4034 | u64 target = 0; |
| 4035 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4036 | if (!bctl) |
| 4037 | return 0; |
| 4038 | |
| 4039 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 4040 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4041 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 4042 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 4043 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4044 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 4045 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 4046 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4047 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 4048 | } |
| 4049 | |
| 4050 | return target; |
| 4051 | } |
| 4052 | |
| 4053 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4054 | * @flags: available profiles in extended format (see ctree.h) |
| 4055 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4056 | * Returns reduced profile in chunk format. If profile changing is in |
| 4057 | * progress (either running or paused) picks the target profile (if it's |
| 4058 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4059 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4060 | 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] | 4061 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4062 | u64 num_devices = fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4063 | u64 target; |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4064 | u64 raid_type; |
| 4065 | u64 allowed = 0; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4066 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4067 | /* |
| 4068 | * see if restripe for this chunk_type is in progress, if so |
| 4069 | * try to reduce to the target profile |
| 4070 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4071 | spin_lock(&fs_info->balance_lock); |
| 4072 | target = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4073 | if (target) { |
| 4074 | /* pick target profile only if it's already available */ |
| 4075 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4076 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4077 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4078 | } |
| 4079 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4080 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4081 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4082 | /* First, mask out the RAID levels which aren't possible */ |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4083 | for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) { |
| 4084 | if (num_devices >= btrfs_raid_array[raid_type].devs_min) |
| 4085 | allowed |= btrfs_raid_group[raid_type]; |
| 4086 | } |
| 4087 | allowed &= flags; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4088 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4089 | if (allowed & BTRFS_BLOCK_GROUP_RAID6) |
| 4090 | allowed = BTRFS_BLOCK_GROUP_RAID6; |
| 4091 | else if (allowed & BTRFS_BLOCK_GROUP_RAID5) |
| 4092 | allowed = BTRFS_BLOCK_GROUP_RAID5; |
| 4093 | else if (allowed & BTRFS_BLOCK_GROUP_RAID10) |
| 4094 | allowed = BTRFS_BLOCK_GROUP_RAID10; |
| 4095 | else if (allowed & BTRFS_BLOCK_GROUP_RAID1) |
| 4096 | allowed = BTRFS_BLOCK_GROUP_RAID1; |
| 4097 | else if (allowed & BTRFS_BLOCK_GROUP_RAID0) |
| 4098 | allowed = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4099 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4100 | flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4101 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4102 | return extended_to_chunk(flags | allowed); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4103 | } |
| 4104 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4105 | 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] | 4106 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4107 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4108 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4109 | |
| 4110 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4111 | flags = orig_flags; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4112 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4113 | |
| 4114 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4115 | flags |= fs_info->avail_data_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4116 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4117 | flags |= fs_info->avail_system_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4118 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4119 | flags |= fs_info->avail_metadata_alloc_bits; |
| 4120 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4121 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4122 | return btrfs_reduce_alloc_profile(fs_info, flags); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4123 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4124 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4125 | static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4126 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4127 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4128 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4129 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4130 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4131 | if (data) |
| 4132 | flags = BTRFS_BLOCK_GROUP_DATA; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4133 | else if (root == fs_info->chunk_root) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4134 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 4135 | else |
| 4136 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 4137 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4138 | ret = get_alloc_profile(fs_info, flags); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4139 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4140 | } |
| 4141 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4142 | u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4143 | { |
| 4144 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 4145 | } |
| 4146 | |
| 4147 | u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4148 | { |
| 4149 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4150 | } |
| 4151 | |
| 4152 | u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4153 | { |
| 4154 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4155 | } |
| 4156 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4157 | static u64 btrfs_space_info_used(struct btrfs_space_info *s_info, |
| 4158 | bool may_use_included) |
| 4159 | { |
| 4160 | ASSERT(s_info); |
| 4161 | return s_info->bytes_used + s_info->bytes_reserved + |
| 4162 | s_info->bytes_pinned + s_info->bytes_readonly + |
| 4163 | (may_use_included ? s_info->bytes_may_use : 0); |
| 4164 | } |
| 4165 | |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4166 | int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4167 | { |
| 4168 | struct btrfs_space_info *data_sinfo; |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4169 | struct btrfs_root *root = inode->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4170 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4171 | u64 used; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4172 | int ret = 0; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4173 | int need_commit = 2; |
| 4174 | int have_pinned_space; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4175 | |
| 4176 | /* make sure bytes are sectorsize aligned */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4177 | bytes = ALIGN(bytes, fs_info->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4178 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4179 | if (btrfs_is_free_space_inode(inode)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4180 | need_commit = 0; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4181 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4182 | } |
| 4183 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4184 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4185 | if (!data_sinfo) |
| 4186 | goto alloc; |
| 4187 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4188 | again: |
| 4189 | /* make sure we have enough space to handle the data first */ |
| 4190 | spin_lock(&data_sinfo->lock); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4191 | used = btrfs_space_info_used(data_sinfo, true); |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4192 | |
| 4193 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4194 | struct btrfs_trans_handle *trans; |
| 4195 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4196 | /* |
| 4197 | * if we don't have enough free bytes in this space then we need |
| 4198 | * to alloc a new chunk. |
| 4199 | */ |
Zhao Lei | b9fd47c | 2015-02-09 14:40:20 +0800 | [diff] [blame] | 4200 | if (!data_sinfo->full) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4201 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4202 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4203 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4204 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4205 | alloc: |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4206 | alloc_target = btrfs_data_alloc_profile(fs_info); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4207 | /* |
| 4208 | * It is ugly that we don't call nolock join |
| 4209 | * transaction for the free space inode case here. |
| 4210 | * But it is safe because we only do the data space |
| 4211 | * reservation for the free space cache in the |
| 4212 | * transaction context, the common join transaction |
| 4213 | * just increase the counter of the current transaction |
| 4214 | * handler, doesn't try to acquire the trans_lock of |
| 4215 | * the fs. |
| 4216 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4217 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4218 | if (IS_ERR(trans)) |
| 4219 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4220 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4221 | ret = do_chunk_alloc(trans, fs_info, alloc_target, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4222 | CHUNK_ALLOC_NO_FORCE); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4223 | btrfs_end_transaction(trans); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4224 | if (ret < 0) { |
| 4225 | if (ret != -ENOSPC) |
| 4226 | return ret; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4227 | else { |
| 4228 | have_pinned_space = 1; |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4229 | goto commit_trans; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4230 | } |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4231 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4232 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4233 | if (!data_sinfo) |
| 4234 | data_sinfo = fs_info->data_sinfo; |
| 4235 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4236 | goto again; |
| 4237 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4238 | |
| 4239 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4240 | * If we don't have enough pinned space to deal with this |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4241 | * allocation, and no removed chunk in current transaction, |
| 4242 | * don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4243 | */ |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4244 | have_pinned_space = percpu_counter_compare( |
| 4245 | &data_sinfo->total_bytes_pinned, |
| 4246 | used + bytes - data_sinfo->total_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4247 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4248 | |
| 4249 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4250 | commit_trans: |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4251 | if (need_commit && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4252 | !atomic_read(&fs_info->open_ioctl_trans)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4253 | need_commit--; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4254 | |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4255 | if (need_commit > 0) { |
| 4256 | btrfs_start_delalloc_roots(fs_info, 0, -1); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4257 | btrfs_wait_ordered_roots(fs_info, -1, 0, |
| 4258 | (u64)-1); |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4259 | } |
Zhao Lei | 9a4e727 | 2015-04-09 12:34:43 +0800 | [diff] [blame] | 4260 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4261 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4262 | if (IS_ERR(trans)) |
| 4263 | return PTR_ERR(trans); |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4264 | if (have_pinned_space >= 0 || |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 4265 | test_bit(BTRFS_TRANS_HAVE_FREE_BGS, |
| 4266 | &trans->transaction->flags) || |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4267 | need_commit > 0) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4268 | ret = btrfs_commit_transaction(trans); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4269 | if (ret) |
| 4270 | return ret; |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4271 | /* |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 4272 | * The cleaner kthread might still be doing iput |
| 4273 | * operations. Wait for it to finish so that |
| 4274 | * more space is released. |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4275 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4276 | mutex_lock(&fs_info->cleaner_delayed_iput_mutex); |
| 4277 | mutex_unlock(&fs_info->cleaner_delayed_iput_mutex); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4278 | goto again; |
| 4279 | } else { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4280 | btrfs_end_transaction(trans); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4281 | } |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4282 | } |
| 4283 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4284 | trace_btrfs_space_reservation(fs_info, |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4285 | "space_info:enospc", |
| 4286 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4287 | return -ENOSPC; |
| 4288 | } |
| 4289 | data_sinfo->bytes_may_use += bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4290 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4291 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4292 | spin_unlock(&data_sinfo->lock); |
| 4293 | |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 4294 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4295 | } |
| 4296 | |
| 4297 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4298 | * New check_data_free_space() with ability for precious data reservation |
| 4299 | * Will replace old btrfs_check_data_free_space(), but for patch split, |
| 4300 | * add a new function first and then replace it. |
| 4301 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 4302 | 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] | 4303 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4304 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4305 | int ret; |
| 4306 | |
| 4307 | /* align the range */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4308 | len = round_up(start + len, fs_info->sectorsize) - |
| 4309 | round_down(start, fs_info->sectorsize); |
| 4310 | start = round_down(start, fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4311 | |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4312 | ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4313 | if (ret < 0) |
| 4314 | return ret; |
| 4315 | |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4316 | /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */ |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4317 | ret = btrfs_qgroup_reserve_data(inode, start, len); |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4318 | if (ret) |
| 4319 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4320 | return ret; |
| 4321 | } |
| 4322 | |
| 4323 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4324 | * Called if we need to clear a data reservation for this inode |
| 4325 | * Normally in a error case. |
| 4326 | * |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4327 | * This one will *NOT* use accurate qgroup reserved space API, just for case |
| 4328 | * which we can't sleep and is sure it won't affect qgroup reserved space. |
| 4329 | * Like clear_bit_hook(). |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4330 | */ |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4331 | void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start, |
| 4332 | u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4333 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4334 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4335 | struct btrfs_space_info *data_sinfo; |
| 4336 | |
| 4337 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4338 | len = round_up(start + len, fs_info->sectorsize) - |
| 4339 | round_down(start, fs_info->sectorsize); |
| 4340 | start = round_down(start, fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4341 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4342 | data_sinfo = fs_info->data_sinfo; |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4343 | spin_lock(&data_sinfo->lock); |
| 4344 | if (WARN_ON(data_sinfo->bytes_may_use < len)) |
| 4345 | data_sinfo->bytes_may_use = 0; |
| 4346 | else |
| 4347 | data_sinfo->bytes_may_use -= len; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4348 | trace_btrfs_space_reservation(fs_info, "space_info", |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4349 | data_sinfo->flags, len, 0); |
| 4350 | spin_unlock(&data_sinfo->lock); |
| 4351 | } |
| 4352 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4353 | /* |
| 4354 | * Called if we need to clear a data reservation for this inode |
| 4355 | * Normally in a error case. |
| 4356 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 4357 | * 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] | 4358 | * space framework. |
| 4359 | */ |
| 4360 | void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len) |
| 4361 | { |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4362 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4363 | |
| 4364 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4365 | len = round_up(start + len, root->fs_info->sectorsize) - |
| 4366 | round_down(start, root->fs_info->sectorsize); |
| 4367 | start = round_down(start, root->fs_info->sectorsize); |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4368 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4369 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
| 4370 | btrfs_qgroup_free_data(inode, start, len); |
| 4371 | } |
| 4372 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4373 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 4374 | { |
| 4375 | struct list_head *head = &info->space_info; |
| 4376 | struct btrfs_space_info *found; |
| 4377 | |
| 4378 | rcu_read_lock(); |
| 4379 | list_for_each_entry_rcu(found, head, list) { |
| 4380 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4381 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4382 | } |
| 4383 | rcu_read_unlock(); |
| 4384 | } |
| 4385 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4386 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 4387 | { |
| 4388 | return (global->size << 1); |
| 4389 | } |
| 4390 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4391 | static int should_alloc_chunk(struct btrfs_fs_info *fs_info, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4392 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4393 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4394 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4395 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4396 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4397 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4398 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4399 | if (force == CHUNK_ALLOC_FORCE) |
| 4400 | return 1; |
| 4401 | |
| 4402 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4403 | * We need to take into account the global rsv because for all intents |
| 4404 | * and purposes it's used space. Don't worry about locking the |
| 4405 | * global_rsv, it doesn't change except when the transaction commits. |
| 4406 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 4407 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4408 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4409 | |
| 4410 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4411 | * in limited mode, we want to have some free space up to |
| 4412 | * about 1% of the FS size. |
| 4413 | */ |
| 4414 | if (force == CHUNK_ALLOC_LIMITED) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4415 | thresh = btrfs_super_total_bytes(fs_info->super_copy); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4416 | thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1)); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4417 | |
| 4418 | if (num_bytes - num_allocated < thresh) |
| 4419 | return 1; |
| 4420 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4421 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4422 | if (num_allocated + SZ_2M < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 4423 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4424 | return 1; |
| 4425 | } |
| 4426 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4427 | 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] | 4428 | { |
| 4429 | u64 num_dev; |
| 4430 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4431 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 4432 | BTRFS_BLOCK_GROUP_RAID0 | |
| 4433 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4434 | BTRFS_BLOCK_GROUP_RAID6)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4435 | num_dev = fs_info->fs_devices->rw_devices; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4436 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 4437 | num_dev = 2; |
| 4438 | else |
| 4439 | num_dev = 1; /* DUP or single */ |
| 4440 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4441 | return num_dev; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4442 | } |
| 4443 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4444 | /* |
| 4445 | * If @is_allocation is true, reserve space in the system space info necessary |
| 4446 | * for allocating a chunk, otherwise if it's false, reserve space necessary for |
| 4447 | * removing a chunk. |
| 4448 | */ |
| 4449 | void check_system_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4450 | struct btrfs_fs_info *fs_info, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4451 | { |
| 4452 | struct btrfs_space_info *info; |
| 4453 | u64 left; |
| 4454 | u64 thresh; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4455 | int ret = 0; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4456 | u64 num_devs; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4457 | |
| 4458 | /* |
| 4459 | * Needed because we can end up allocating a system chunk and for an |
| 4460 | * atomic and race free space reservation in the chunk block reserve. |
| 4461 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4462 | ASSERT(mutex_is_locked(&fs_info->chunk_mutex)); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4463 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4464 | info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4465 | spin_lock(&info->lock); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4466 | left = info->total_bytes - btrfs_space_info_used(info, true); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4467 | spin_unlock(&info->lock); |
| 4468 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4469 | num_devs = get_profile_num_devs(fs_info, type); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4470 | |
| 4471 | /* 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] | 4472 | thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) + |
| 4473 | btrfs_calc_trans_metadata_size(fs_info, 1); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4474 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4475 | if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
| 4476 | btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu", |
| 4477 | left, thresh, type); |
| 4478 | dump_space_info(fs_info, info, 0, 0); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4479 | } |
| 4480 | |
| 4481 | if (left < thresh) { |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4482 | u64 flags = btrfs_system_alloc_profile(fs_info); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4483 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4484 | /* |
| 4485 | * Ignore failure to create system chunk. We might end up not |
| 4486 | * needing it, as we might not need to COW all nodes/leafs from |
| 4487 | * the paths we visit in the chunk tree (they were already COWed |
| 4488 | * or created in the current transaction for example). |
| 4489 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4490 | ret = btrfs_alloc_chunk(trans, fs_info, flags); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4491 | } |
| 4492 | |
| 4493 | if (!ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4494 | ret = btrfs_block_rsv_add(fs_info->chunk_root, |
| 4495 | &fs_info->chunk_block_rsv, |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4496 | thresh, BTRFS_RESERVE_NO_FLUSH); |
| 4497 | if (!ret) |
| 4498 | trans->chunk_bytes_reserved += thresh; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4499 | } |
| 4500 | } |
| 4501 | |
Liu Bo | 28b737f | 2016-07-29 11:09:50 -0700 | [diff] [blame] | 4502 | /* |
| 4503 | * If force is CHUNK_ALLOC_FORCE: |
| 4504 | * - return 1 if it successfully allocates a chunk, |
| 4505 | * - return errors including -ENOSPC otherwise. |
| 4506 | * If force is NOT CHUNK_ALLOC_FORCE: |
| 4507 | * - return 0 if it doesn't need to allocate a new chunk, |
| 4508 | * - return 1 if it successfully allocates a chunk, |
| 4509 | * - return errors including -ENOSPC otherwise. |
| 4510 | */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4511 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4512 | struct btrfs_fs_info *fs_info, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4513 | { |
| 4514 | struct btrfs_space_info *space_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4515 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 4516 | int ret = 0; |
| 4517 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4518 | /* Don't re-enter if we're already allocating a chunk */ |
| 4519 | if (trans->allocating_chunk) |
| 4520 | return -ENOSPC; |
| 4521 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4522 | space_info = __find_space_info(fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4523 | if (!space_info) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4524 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4525 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4526 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4527 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4528 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4529 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4530 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 4531 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4532 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4533 | if (space_info->full) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4534 | if (should_alloc_chunk(fs_info, space_info, force)) |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4535 | ret = -ENOSPC; |
| 4536 | else |
| 4537 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4538 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4539 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4540 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4541 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4542 | if (!should_alloc_chunk(fs_info, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4543 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4544 | return 0; |
| 4545 | } else if (space_info->chunk_alloc) { |
| 4546 | wait_for_alloc = 1; |
| 4547 | } else { |
| 4548 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4549 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4550 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4551 | spin_unlock(&space_info->lock); |
| 4552 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4553 | mutex_lock(&fs_info->chunk_mutex); |
| 4554 | |
| 4555 | /* |
| 4556 | * The chunk_mutex is held throughout the entirety of a chunk |
| 4557 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 4558 | * other guy is done and we need to recheck and see if we should |
| 4559 | * allocate. |
| 4560 | */ |
| 4561 | if (wait_for_alloc) { |
| 4562 | mutex_unlock(&fs_info->chunk_mutex); |
| 4563 | wait_for_alloc = 0; |
| 4564 | goto again; |
| 4565 | } |
| 4566 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4567 | trans->allocating_chunk = true; |
| 4568 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4569 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 4570 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 4571 | * allocating mixed chunks instead of individual chunks. |
| 4572 | */ |
| 4573 | if (btrfs_mixed_space_info(space_info)) |
| 4574 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 4575 | |
| 4576 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4577 | * if we're doing a data chunk, go ahead and make sure that |
| 4578 | * we keep a reasonable number of metadata chunks allocated in the |
| 4579 | * FS as well. |
| 4580 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4581 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4582 | fs_info->data_chunk_allocations++; |
| 4583 | if (!(fs_info->data_chunk_allocations % |
| 4584 | fs_info->metadata_ratio)) |
| 4585 | force_metadata_allocation(fs_info); |
| 4586 | } |
| 4587 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4588 | /* |
| 4589 | * Check if we have enough space in SYSTEM chunk because we may need |
| 4590 | * to update devices. |
| 4591 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4592 | check_system_chunk(trans, fs_info, flags); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4593 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4594 | ret = btrfs_alloc_chunk(trans, fs_info, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4595 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 4596 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4597 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4598 | if (ret < 0 && ret != -ENOSPC) |
| 4599 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4600 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4601 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4602 | else |
| 4603 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4604 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4605 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4606 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4607 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4608 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4609 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4610 | /* |
| 4611 | * When we allocate a new chunk we reserve space in the chunk block |
| 4612 | * reserve to make sure we can COW nodes/leafs in the chunk tree or |
| 4613 | * add new nodes/leafs to it if we end up needing to do it when |
| 4614 | * inserting the chunk item and updating device items as part of the |
| 4615 | * second phase of chunk allocation, performed by |
| 4616 | * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a |
| 4617 | * large number of new block groups to create in our transaction |
| 4618 | * handle's new_bgs list to avoid exhausting the chunk block reserve |
| 4619 | * in extreme cases - like having a single transaction create many new |
| 4620 | * block groups when starting to write out the free space caches of all |
| 4621 | * the block groups that were made dirty during the lifetime of the |
| 4622 | * transaction. |
| 4623 | */ |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 4624 | if (trans->can_flush_pending_bgs && |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4625 | trans->chunk_bytes_reserved >= (u64)SZ_2M) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4626 | btrfs_create_pending_block_groups(trans, fs_info); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4627 | btrfs_trans_release_chunk_metadata(trans); |
| 4628 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4629 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4630 | } |
| 4631 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4632 | static int can_overcommit(struct btrfs_fs_info *fs_info, |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4633 | struct btrfs_space_info *space_info, u64 bytes, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4634 | enum btrfs_reserve_flush_enum flush, |
| 4635 | bool system_chunk) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4636 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4637 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4638 | u64 profile; |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4639 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4640 | u64 avail; |
| 4641 | u64 used; |
| 4642 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4643 | /* Don't overcommit when in mixed mode. */ |
| 4644 | if (space_info->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4645 | return 0; |
| 4646 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4647 | if (system_chunk) |
| 4648 | profile = btrfs_system_alloc_profile(fs_info); |
| 4649 | else |
| 4650 | profile = btrfs_metadata_alloc_profile(fs_info); |
| 4651 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4652 | used = btrfs_space_info_used(space_info, false); |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4653 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4654 | /* |
| 4655 | * We only want to allow over committing if we have lots of actual space |
| 4656 | * free, but if we don't have enough space to handle the global reserve |
| 4657 | * space then we could end up having a real enospc problem when trying |
| 4658 | * to allocate a chunk or some other such important allocation. |
| 4659 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4660 | spin_lock(&global_rsv->lock); |
| 4661 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4662 | spin_unlock(&global_rsv->lock); |
| 4663 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4664 | return 0; |
| 4665 | |
| 4666 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4667 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4668 | avail = atomic64_read(&fs_info->free_chunk_space); |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4669 | |
| 4670 | /* |
| 4671 | * 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] | 4672 | * space is actually useable. For raid56, the space info used |
| 4673 | * doesn't include the parity drive, so we don't have to |
| 4674 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4675 | */ |
| 4676 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4677 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4678 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4679 | avail >>= 1; |
| 4680 | |
| 4681 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4682 | * If we aren't flushing all things, let us overcommit up to |
| 4683 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4684 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4685 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4686 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4687 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4688 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4689 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4690 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4691 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4692 | return 1; |
| 4693 | return 0; |
| 4694 | } |
| 4695 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4696 | 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] | 4697 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4698 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4699 | struct super_block *sb = fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4700 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4701 | if (down_read_trylock(&sb->s_umount)) { |
| 4702 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4703 | up_read(&sb->s_umount); |
| 4704 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4705 | /* |
| 4706 | * We needn't worry the filesystem going from r/w to r/o though |
| 4707 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4708 | * should guarantee the delalloc inodes list be empty after |
| 4709 | * the filesystem is readonly(all dirty pages are written to |
| 4710 | * the disk). |
| 4711 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4712 | btrfs_start_delalloc_roots(fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4713 | if (!current->journal_info) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4714 | btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4715 | } |
| 4716 | } |
| 4717 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4718 | static inline int calc_reclaim_items_nr(struct btrfs_fs_info *fs_info, |
| 4719 | u64 to_reclaim) |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4720 | { |
| 4721 | u64 bytes; |
| 4722 | int nr; |
| 4723 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4724 | bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4725 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4726 | if (!nr) |
| 4727 | nr = 1; |
| 4728 | return nr; |
| 4729 | } |
| 4730 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4731 | #define EXTENT_SIZE_PER_ITEM SZ_256K |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4732 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4733 | /* |
| 4734 | * shrink metadata reservation for delalloc |
| 4735 | */ |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4736 | static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim, |
| 4737 | u64 orig, bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4738 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4739 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4740 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4741 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4742 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4743 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4744 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4745 | unsigned long nr_pages; |
| 4746 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4747 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4748 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4749 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4750 | /* Calc the number of the pages we need flush for space reservation */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4751 | items = calc_reclaim_items_nr(fs_info, to_reclaim); |
Adam Borowski | 8eb0dfd | 2016-05-08 15:08:00 +0200 | [diff] [blame] | 4752 | to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4753 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4754 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4755 | block_rsv = &fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4756 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4757 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4758 | delalloc_bytes = percpu_counter_sum_positive( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4759 | &fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4760 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4761 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4762 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4763 | if (wait_ordered) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4764 | btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4765 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4766 | } |
| 4767 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4768 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4769 | while (delalloc_bytes && loops < 3) { |
| 4770 | max_reclaim = min(delalloc_bytes, to_reclaim); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4771 | nr_pages = max_reclaim >> PAGE_SHIFT; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4772 | btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4773 | /* |
| 4774 | * We need to wait for the async pages to actually start before |
| 4775 | * we do anything. |
| 4776 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4777 | max_reclaim = atomic_read(&fs_info->async_delalloc_pages); |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4778 | if (!max_reclaim) |
| 4779 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4780 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4781 | if (max_reclaim <= nr_pages) |
| 4782 | max_reclaim = 0; |
| 4783 | else |
| 4784 | max_reclaim -= nr_pages; |
| 4785 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4786 | wait_event(fs_info->async_submit_wait, |
| 4787 | atomic_read(&fs_info->async_delalloc_pages) <= |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4788 | (int)max_reclaim); |
| 4789 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4790 | if (!trans) |
| 4791 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4792 | else |
| 4793 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4794 | spin_lock(&space_info->lock); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4795 | if (can_overcommit(fs_info, space_info, orig, flush, false)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4796 | spin_unlock(&space_info->lock); |
| 4797 | break; |
| 4798 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4799 | if (list_empty(&space_info->tickets) && |
| 4800 | list_empty(&space_info->priority_tickets)) { |
| 4801 | spin_unlock(&space_info->lock); |
| 4802 | break; |
| 4803 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4804 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4805 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4806 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4807 | if (wait_ordered && !trans) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4808 | btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4809 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4810 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4811 | if (time_left) |
| 4812 | break; |
| 4813 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4814 | delalloc_bytes = percpu_counter_sum_positive( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4815 | &fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4816 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4817 | } |
| 4818 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4819 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4820 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4821 | * @root - the root we're allocating for |
| 4822 | * @bytes - the number of bytes we want to reserve |
| 4823 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4824 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4825 | * This will check to make sure that committing the transaction will actually |
| 4826 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4827 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4828 | */ |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4829 | static int may_commit_transaction(struct btrfs_fs_info *fs_info, |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4830 | struct btrfs_space_info *space_info, |
| 4831 | u64 bytes, int force) |
| 4832 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4833 | struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4834 | struct btrfs_trans_handle *trans; |
| 4835 | |
| 4836 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4837 | if (trans) |
| 4838 | return -EAGAIN; |
| 4839 | |
| 4840 | if (force) |
| 4841 | goto commit; |
| 4842 | |
| 4843 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4844 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4845 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4846 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4847 | |
| 4848 | /* |
| 4849 | * See if there is some space in the delayed insertion reservation for |
| 4850 | * this reservation. |
| 4851 | */ |
| 4852 | if (space_info != delayed_rsv->space_info) |
| 4853 | return -ENOSPC; |
| 4854 | |
| 4855 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4856 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4857 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4858 | spin_unlock(&delayed_rsv->lock); |
| 4859 | return -ENOSPC; |
| 4860 | } |
| 4861 | spin_unlock(&delayed_rsv->lock); |
| 4862 | |
| 4863 | commit: |
Jeff Mahoney | a9b3311 | 2017-05-17 11:38:34 -0400 | [diff] [blame] | 4864 | trans = btrfs_join_transaction(fs_info->extent_root); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4865 | if (IS_ERR(trans)) |
| 4866 | return -ENOSPC; |
| 4867 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4868 | return btrfs_commit_transaction(trans); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4869 | } |
| 4870 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4871 | struct reserve_ticket { |
| 4872 | u64 bytes; |
| 4873 | int error; |
| 4874 | struct list_head list; |
| 4875 | wait_queue_head_t wait; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4876 | }; |
| 4877 | |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4878 | static int flush_space(struct btrfs_fs_info *fs_info, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4879 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4880 | u64 orig_bytes, int state) |
| 4881 | { |
Jeff Mahoney | a9b3311 | 2017-05-17 11:38:34 -0400 | [diff] [blame] | 4882 | struct btrfs_root *root = fs_info->extent_root; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4883 | struct btrfs_trans_handle *trans; |
| 4884 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4885 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4886 | |
| 4887 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4888 | case FLUSH_DELAYED_ITEMS_NR: |
| 4889 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4890 | if (state == FLUSH_DELAYED_ITEMS_NR) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4891 | nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4892 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4893 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4894 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4895 | trans = btrfs_join_transaction(root); |
| 4896 | if (IS_ERR(trans)) { |
| 4897 | ret = PTR_ERR(trans); |
| 4898 | break; |
| 4899 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4900 | ret = btrfs_run_delayed_items_nr(trans, fs_info, nr); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4901 | btrfs_end_transaction(trans); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4902 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4903 | case FLUSH_DELALLOC: |
| 4904 | case FLUSH_DELALLOC_WAIT: |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4905 | shrink_delalloc(fs_info, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4906 | state == FLUSH_DELALLOC_WAIT); |
| 4907 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4908 | case ALLOC_CHUNK: |
| 4909 | trans = btrfs_join_transaction(root); |
| 4910 | if (IS_ERR(trans)) { |
| 4911 | ret = PTR_ERR(trans); |
| 4912 | break; |
| 4913 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4914 | ret = do_chunk_alloc(trans, fs_info, |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4915 | btrfs_metadata_alloc_profile(fs_info), |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4916 | CHUNK_ALLOC_NO_FORCE); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4917 | btrfs_end_transaction(trans); |
Alex Lyakas | eecba89 | 2015-12-06 12:32:31 +0200 | [diff] [blame] | 4918 | if (ret > 0 || ret == -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4919 | ret = 0; |
| 4920 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4921 | case COMMIT_TRANS: |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4922 | ret = may_commit_transaction(fs_info, space_info, |
| 4923 | orig_bytes, 0); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4924 | break; |
| 4925 | default: |
| 4926 | ret = -ENOSPC; |
| 4927 | break; |
| 4928 | } |
| 4929 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4930 | trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 4931 | orig_bytes, state, ret); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4932 | return ret; |
| 4933 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4934 | |
| 4935 | static inline u64 |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4936 | btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info, |
| 4937 | struct btrfs_space_info *space_info, |
| 4938 | bool system_chunk) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4939 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4940 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4941 | u64 used; |
| 4942 | u64 expected; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4943 | u64 to_reclaim = 0; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4944 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4945 | list_for_each_entry(ticket, &space_info->tickets, list) |
| 4946 | to_reclaim += ticket->bytes; |
| 4947 | list_for_each_entry(ticket, &space_info->priority_tickets, list) |
| 4948 | to_reclaim += ticket->bytes; |
| 4949 | if (to_reclaim) |
| 4950 | return to_reclaim; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4951 | |
Wang Xiaoguang | e0af248 | 2016-08-31 19:46:16 +0800 | [diff] [blame] | 4952 | to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4953 | if (can_overcommit(fs_info, space_info, to_reclaim, |
| 4954 | BTRFS_RESERVE_FLUSH_ALL, system_chunk)) |
Wang Xiaoguang | e0af248 | 2016-08-31 19:46:16 +0800 | [diff] [blame] | 4955 | return 0; |
| 4956 | |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4957 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4958 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4959 | space_info->bytes_may_use; |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4960 | if (can_overcommit(fs_info, space_info, SZ_1M, |
| 4961 | BTRFS_RESERVE_FLUSH_ALL, system_chunk)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4962 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4963 | else |
| 4964 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4965 | |
| 4966 | if (used > expected) |
| 4967 | to_reclaim = used - expected; |
| 4968 | else |
| 4969 | to_reclaim = 0; |
| 4970 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4971 | space_info->bytes_reserved); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4972 | return to_reclaim; |
| 4973 | } |
| 4974 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4975 | static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info, |
| 4976 | struct btrfs_space_info *space_info, |
| 4977 | u64 used, bool system_chunk) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4978 | { |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4979 | u64 thresh = div_factor_fine(space_info->total_bytes, 98); |
| 4980 | |
| 4981 | /* 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] | 4982 | if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh) |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4983 | return 0; |
| 4984 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 4985 | if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 4986 | system_chunk)) |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4987 | return 0; |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4988 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4989 | return (used >= thresh && !btrfs_fs_closing(fs_info) && |
| 4990 | !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state)); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4991 | } |
| 4992 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4993 | static void wake_all_tickets(struct list_head *head) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4994 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4995 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4996 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4997 | while (!list_empty(head)) { |
| 4998 | ticket = list_first_entry(head, struct reserve_ticket, list); |
| 4999 | list_del_init(&ticket->list); |
| 5000 | ticket->error = -ENOSPC; |
| 5001 | wake_up(&ticket->wait); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5002 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5003 | } |
| 5004 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5005 | /* |
| 5006 | * This is for normal flushers, we can wait all goddamned day if we want to. We |
| 5007 | * will loop and continuously try to flush as long as we are making progress. |
| 5008 | * We count progress as clearing off tickets each time we have to loop. |
| 5009 | */ |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5010 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 5011 | { |
| 5012 | struct btrfs_fs_info *fs_info; |
| 5013 | struct btrfs_space_info *space_info; |
| 5014 | u64 to_reclaim; |
| 5015 | int flush_state; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5016 | int commit_cycles = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5017 | u64 last_tickets_id; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5018 | |
| 5019 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 5020 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 5021 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5022 | spin_lock(&space_info->lock); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5023 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 5024 | false); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5025 | if (!to_reclaim) { |
| 5026 | space_info->flush = 0; |
| 5027 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5028 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5029 | } |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5030 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5031 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5032 | |
| 5033 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5034 | do { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5035 | struct reserve_ticket *ticket; |
| 5036 | int ret; |
| 5037 | |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 5038 | ret = flush_space(fs_info, space_info, to_reclaim, to_reclaim, |
| 5039 | flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5040 | spin_lock(&space_info->lock); |
| 5041 | if (list_empty(&space_info->tickets)) { |
| 5042 | space_info->flush = 0; |
| 5043 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5044 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5045 | } |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5046 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, |
| 5047 | space_info, |
| 5048 | false); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5049 | ticket = list_first_entry(&space_info->tickets, |
| 5050 | struct reserve_ticket, list); |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5051 | if (last_tickets_id == space_info->tickets_id) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5052 | flush_state++; |
| 5053 | } else { |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5054 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5055 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5056 | if (commit_cycles) |
| 5057 | commit_cycles--; |
| 5058 | } |
| 5059 | |
| 5060 | if (flush_state > COMMIT_TRANS) { |
| 5061 | commit_cycles++; |
| 5062 | if (commit_cycles > 2) { |
| 5063 | wake_all_tickets(&space_info->tickets); |
| 5064 | space_info->flush = 0; |
| 5065 | } else { |
| 5066 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5067 | } |
| 5068 | } |
| 5069 | spin_unlock(&space_info->lock); |
| 5070 | } while (flush_state <= COMMIT_TRANS); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5071 | } |
| 5072 | |
| 5073 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 5074 | { |
| 5075 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 5076 | } |
| 5077 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5078 | static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info, |
| 5079 | struct btrfs_space_info *space_info, |
| 5080 | struct reserve_ticket *ticket) |
| 5081 | { |
| 5082 | u64 to_reclaim; |
| 5083 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5084 | |
| 5085 | spin_lock(&space_info->lock); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5086 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 5087 | false); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5088 | if (!to_reclaim) { |
| 5089 | spin_unlock(&space_info->lock); |
| 5090 | return; |
| 5091 | } |
| 5092 | spin_unlock(&space_info->lock); |
| 5093 | |
| 5094 | do { |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 5095 | flush_space(fs_info, space_info, to_reclaim, to_reclaim, |
| 5096 | flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5097 | flush_state++; |
| 5098 | spin_lock(&space_info->lock); |
| 5099 | if (ticket->bytes == 0) { |
| 5100 | spin_unlock(&space_info->lock); |
| 5101 | return; |
| 5102 | } |
| 5103 | spin_unlock(&space_info->lock); |
| 5104 | |
| 5105 | /* |
| 5106 | * Priority flushers can't wait on delalloc without |
| 5107 | * deadlocking. |
| 5108 | */ |
| 5109 | if (flush_state == FLUSH_DELALLOC || |
| 5110 | flush_state == FLUSH_DELALLOC_WAIT) |
| 5111 | flush_state = ALLOC_CHUNK; |
| 5112 | } while (flush_state < COMMIT_TRANS); |
| 5113 | } |
| 5114 | |
| 5115 | static int wait_reserve_ticket(struct btrfs_fs_info *fs_info, |
| 5116 | struct btrfs_space_info *space_info, |
| 5117 | struct reserve_ticket *ticket, u64 orig_bytes) |
| 5118 | |
| 5119 | { |
| 5120 | DEFINE_WAIT(wait); |
| 5121 | int ret = 0; |
| 5122 | |
| 5123 | spin_lock(&space_info->lock); |
| 5124 | while (ticket->bytes > 0 && ticket->error == 0) { |
| 5125 | ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE); |
| 5126 | if (ret) { |
| 5127 | ret = -EINTR; |
| 5128 | break; |
| 5129 | } |
| 5130 | spin_unlock(&space_info->lock); |
| 5131 | |
| 5132 | schedule(); |
| 5133 | |
| 5134 | finish_wait(&ticket->wait, &wait); |
| 5135 | spin_lock(&space_info->lock); |
| 5136 | } |
| 5137 | if (!ret) |
| 5138 | ret = ticket->error; |
| 5139 | if (!list_empty(&ticket->list)) |
| 5140 | list_del_init(&ticket->list); |
| 5141 | if (ticket->bytes && ticket->bytes < orig_bytes) { |
| 5142 | u64 num_bytes = orig_bytes - ticket->bytes; |
| 5143 | space_info->bytes_may_use -= num_bytes; |
| 5144 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5145 | space_info->flags, num_bytes, 0); |
| 5146 | } |
| 5147 | spin_unlock(&space_info->lock); |
| 5148 | |
| 5149 | return ret; |
| 5150 | } |
| 5151 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5152 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5153 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5154 | * @root - the root we're allocating for |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5155 | * @space_info - the space info we want to allocate from |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5156 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 5157 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5158 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5159 | * 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] | 5160 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5161 | * flush out space to make room. It will do this by flushing delalloc if |
| 5162 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5163 | * regain reservations will be made and this will fail if there is not enough |
| 5164 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5165 | */ |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5166 | static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5167 | struct btrfs_space_info *space_info, |
| 5168 | u64 orig_bytes, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5169 | enum btrfs_reserve_flush_enum flush, |
| 5170 | bool system_chunk) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5171 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5172 | struct reserve_ticket ticket; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5173 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5174 | int ret = 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5175 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5176 | ASSERT(orig_bytes); |
Josef Bacik | 8ca17f0 | 2016-05-27 13:24:13 -0400 | [diff] [blame] | 5177 | ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL); |
| 5178 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5179 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 5180 | ret = -ENOSPC; |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 5181 | used = btrfs_space_info_used(space_info, true); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5182 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5183 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5184 | * If we have enough space then hooray, make our reservation and carry |
| 5185 | * on. If not see if we can overcommit, and if we can, hooray carry on. |
| 5186 | * If not things get more complicated. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5187 | */ |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5188 | if (used + orig_bytes <= space_info->total_bytes) { |
| 5189 | space_info->bytes_may_use += orig_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5190 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5191 | space_info->flags, orig_bytes, 1); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5192 | ret = 0; |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5193 | } else if (can_overcommit(fs_info, space_info, orig_bytes, flush, |
| 5194 | system_chunk)) { |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5195 | space_info->bytes_may_use += orig_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5196 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5197 | space_info->flags, orig_bytes, 1); |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5198 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5199 | } |
| 5200 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5201 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5202 | * If we couldn't make a reservation then setup our reservation ticket |
| 5203 | * and kick the async worker if it's not already running. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5204 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5205 | * If we are a priority flusher then we just need to add our ticket to |
| 5206 | * the list and we will do our own flushing further down. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5207 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 5208 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5209 | ticket.bytes = orig_bytes; |
| 5210 | ticket.error = 0; |
| 5211 | init_waitqueue_head(&ticket.wait); |
| 5212 | if (flush == BTRFS_RESERVE_FLUSH_ALL) { |
| 5213 | list_add_tail(&ticket.list, &space_info->tickets); |
| 5214 | if (!space_info->flush) { |
| 5215 | space_info->flush = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5216 | trace_btrfs_trigger_flush(fs_info, |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5217 | space_info->flags, |
| 5218 | orig_bytes, flush, |
| 5219 | "enospc"); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5220 | queue_work(system_unbound_wq, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5221 | &fs_info->async_reclaim_work); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5222 | } |
| 5223 | } else { |
| 5224 | list_add_tail(&ticket.list, |
| 5225 | &space_info->priority_tickets); |
| 5226 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5227 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 5228 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 5229 | /* |
| 5230 | * We will do the space reservation dance during log replay, |
| 5231 | * which means we won't have fs_info->fs_root set, so don't do |
| 5232 | * the async reclaim as we will panic. |
| 5233 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5234 | if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) && |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5235 | need_do_async_reclaim(fs_info, space_info, |
| 5236 | used, system_chunk) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5237 | !work_busy(&fs_info->async_reclaim_work)) { |
| 5238 | trace_btrfs_trigger_flush(fs_info, space_info->flags, |
| 5239 | orig_bytes, flush, "preempt"); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5240 | queue_work(system_unbound_wq, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5241 | &fs_info->async_reclaim_work); |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5242 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5243 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5244 | spin_unlock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5245 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5246 | return ret; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5247 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5248 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5249 | return wait_reserve_ticket(fs_info, space_info, &ticket, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5250 | orig_bytes); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5251 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5252 | ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5253 | priority_reclaim_metadata_space(fs_info, space_info, &ticket); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5254 | spin_lock(&space_info->lock); |
| 5255 | if (ticket.bytes) { |
| 5256 | if (ticket.bytes < orig_bytes) { |
| 5257 | u64 num_bytes = orig_bytes - ticket.bytes; |
| 5258 | space_info->bytes_may_use -= num_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5259 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5260 | space_info->flags, |
| 5261 | num_bytes, 0); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5262 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5263 | } |
| 5264 | list_del_init(&ticket.list); |
| 5265 | ret = -ENOSPC; |
| 5266 | } |
| 5267 | spin_unlock(&space_info->lock); |
| 5268 | ASSERT(list_empty(&ticket.list)); |
| 5269 | return ret; |
| 5270 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5271 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5272 | /** |
| 5273 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5274 | * @root - the root we're allocating for |
| 5275 | * @block_rsv - the block_rsv we're allocating for |
| 5276 | * @orig_bytes - the number of bytes we want |
| 5277 | * @flush - whether or not we can flush to make our reservation |
| 5278 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5279 | * 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] | 5280 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5281 | * flush out space to make room. It will do this by flushing delalloc if |
| 5282 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5283 | * regain reservations will be made and this will fail if there is not enough |
| 5284 | * space already. |
| 5285 | */ |
| 5286 | static int reserve_metadata_bytes(struct btrfs_root *root, |
| 5287 | struct btrfs_block_rsv *block_rsv, |
| 5288 | u64 orig_bytes, |
| 5289 | enum btrfs_reserve_flush_enum flush) |
| 5290 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5291 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5292 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5293 | int ret; |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5294 | bool system_chunk = (root == fs_info->chunk_root); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5295 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5296 | ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info, |
| 5297 | orig_bytes, flush, system_chunk); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5298 | if (ret == -ENOSPC && |
| 5299 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5300 | if (block_rsv != global_rsv && |
| 5301 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 5302 | ret = 0; |
| 5303 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 5304 | if (ret == -ENOSPC) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5305 | trace_btrfs_space_reservation(fs_info, "space_info:enospc", |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5306 | block_rsv->space_info->flags, |
| 5307 | orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5308 | return ret; |
| 5309 | } |
| 5310 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5311 | static struct btrfs_block_rsv *get_block_rsv( |
| 5312 | const struct btrfs_trans_handle *trans, |
| 5313 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5314 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5315 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5316 | struct btrfs_block_rsv *block_rsv = NULL; |
| 5317 | |
Alexandru Moise | e9cf439 | 2015-09-09 00:18:50 +0000 | [diff] [blame] | 5318 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5319 | (root == fs_info->csum_root && trans->adding_csums) || |
| 5320 | (root == fs_info->uuid_root)) |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 5321 | block_rsv = trans->block_rsv; |
| 5322 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5323 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5324 | block_rsv = root->block_rsv; |
| 5325 | |
| 5326 | if (!block_rsv) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5327 | block_rsv = &fs_info->empty_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5328 | |
| 5329 | return block_rsv; |
| 5330 | } |
| 5331 | |
| 5332 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 5333 | u64 num_bytes) |
| 5334 | { |
| 5335 | int ret = -ENOSPC; |
| 5336 | spin_lock(&block_rsv->lock); |
| 5337 | if (block_rsv->reserved >= num_bytes) { |
| 5338 | block_rsv->reserved -= num_bytes; |
| 5339 | if (block_rsv->reserved < block_rsv->size) |
| 5340 | block_rsv->full = 0; |
| 5341 | ret = 0; |
| 5342 | } |
| 5343 | spin_unlock(&block_rsv->lock); |
| 5344 | return ret; |
| 5345 | } |
| 5346 | |
| 5347 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 5348 | u64 num_bytes, int update_size) |
| 5349 | { |
| 5350 | spin_lock(&block_rsv->lock); |
| 5351 | block_rsv->reserved += num_bytes; |
| 5352 | if (update_size) |
| 5353 | block_rsv->size += num_bytes; |
| 5354 | else if (block_rsv->reserved >= block_rsv->size) |
| 5355 | block_rsv->full = 1; |
| 5356 | spin_unlock(&block_rsv->lock); |
| 5357 | } |
| 5358 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 5359 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 5360 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 5361 | int min_factor) |
| 5362 | { |
| 5363 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5364 | u64 min_bytes; |
| 5365 | |
| 5366 | if (global_rsv->space_info != dest->space_info) |
| 5367 | return -ENOSPC; |
| 5368 | |
| 5369 | spin_lock(&global_rsv->lock); |
| 5370 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 5371 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 5372 | spin_unlock(&global_rsv->lock); |
| 5373 | return -ENOSPC; |
| 5374 | } |
| 5375 | global_rsv->reserved -= num_bytes; |
| 5376 | if (global_rsv->reserved < global_rsv->size) |
| 5377 | global_rsv->full = 0; |
| 5378 | spin_unlock(&global_rsv->lock); |
| 5379 | |
| 5380 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 5381 | return 0; |
| 5382 | } |
| 5383 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5384 | /* |
| 5385 | * This is for space we already have accounted in space_info->bytes_may_use, so |
| 5386 | * basically when we're returning space from block_rsv's. |
| 5387 | */ |
| 5388 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 5389 | struct btrfs_space_info *space_info, |
| 5390 | u64 num_bytes) |
| 5391 | { |
| 5392 | struct reserve_ticket *ticket; |
| 5393 | struct list_head *head; |
| 5394 | u64 used; |
| 5395 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH; |
| 5396 | bool check_overcommit = false; |
| 5397 | |
| 5398 | spin_lock(&space_info->lock); |
| 5399 | head = &space_info->priority_tickets; |
| 5400 | |
| 5401 | /* |
| 5402 | * If we are over our limit then we need to check and see if we can |
| 5403 | * overcommit, and if we can't then we just need to free up our space |
| 5404 | * and not satisfy any requests. |
| 5405 | */ |
| 5406 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 5407 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 5408 | space_info->bytes_may_use; |
| 5409 | if (used - num_bytes >= space_info->total_bytes) |
| 5410 | check_overcommit = true; |
| 5411 | again: |
| 5412 | while (!list_empty(head) && num_bytes) { |
| 5413 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5414 | list); |
| 5415 | /* |
| 5416 | * We use 0 bytes because this space is already reserved, so |
| 5417 | * adding the ticket space would be a double count. |
| 5418 | */ |
| 5419 | if (check_overcommit && |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame^] | 5420 | !can_overcommit(fs_info, space_info, 0, flush, false)) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5421 | break; |
| 5422 | if (num_bytes >= ticket->bytes) { |
| 5423 | list_del_init(&ticket->list); |
| 5424 | num_bytes -= ticket->bytes; |
| 5425 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5426 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5427 | wake_up(&ticket->wait); |
| 5428 | } else { |
| 5429 | ticket->bytes -= num_bytes; |
| 5430 | num_bytes = 0; |
| 5431 | } |
| 5432 | } |
| 5433 | |
| 5434 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5435 | head = &space_info->tickets; |
| 5436 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 5437 | goto again; |
| 5438 | } |
| 5439 | space_info->bytes_may_use -= num_bytes; |
| 5440 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5441 | space_info->flags, num_bytes, 0); |
| 5442 | spin_unlock(&space_info->lock); |
| 5443 | } |
| 5444 | |
| 5445 | /* |
| 5446 | * This is for newly allocated space that isn't accounted in |
| 5447 | * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent |
| 5448 | * we use this helper. |
| 5449 | */ |
| 5450 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 5451 | struct btrfs_space_info *space_info, |
| 5452 | u64 num_bytes) |
| 5453 | { |
| 5454 | struct reserve_ticket *ticket; |
| 5455 | struct list_head *head = &space_info->priority_tickets; |
| 5456 | |
| 5457 | again: |
| 5458 | while (!list_empty(head) && num_bytes) { |
| 5459 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5460 | list); |
| 5461 | if (num_bytes >= ticket->bytes) { |
| 5462 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5463 | space_info->flags, |
| 5464 | ticket->bytes, 1); |
| 5465 | list_del_init(&ticket->list); |
| 5466 | num_bytes -= ticket->bytes; |
| 5467 | space_info->bytes_may_use += ticket->bytes; |
| 5468 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5469 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5470 | wake_up(&ticket->wait); |
| 5471 | } else { |
| 5472 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5473 | space_info->flags, |
| 5474 | num_bytes, 1); |
| 5475 | space_info->bytes_may_use += num_bytes; |
| 5476 | ticket->bytes -= num_bytes; |
| 5477 | num_bytes = 0; |
| 5478 | } |
| 5479 | } |
| 5480 | |
| 5481 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5482 | head = &space_info->tickets; |
| 5483 | goto again; |
| 5484 | } |
| 5485 | } |
| 5486 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5487 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 5488 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 5489 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5490 | { |
| 5491 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 5492 | |
| 5493 | spin_lock(&block_rsv->lock); |
| 5494 | if (num_bytes == (u64)-1) |
| 5495 | num_bytes = block_rsv->size; |
| 5496 | block_rsv->size -= num_bytes; |
| 5497 | if (block_rsv->reserved >= block_rsv->size) { |
| 5498 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 5499 | block_rsv->reserved = block_rsv->size; |
| 5500 | block_rsv->full = 1; |
| 5501 | } else { |
| 5502 | num_bytes = 0; |
| 5503 | } |
| 5504 | spin_unlock(&block_rsv->lock); |
| 5505 | |
| 5506 | if (num_bytes > 0) { |
| 5507 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 5508 | spin_lock(&dest->lock); |
| 5509 | if (!dest->full) { |
| 5510 | u64 bytes_to_add; |
| 5511 | |
| 5512 | bytes_to_add = dest->size - dest->reserved; |
| 5513 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 5514 | dest->reserved += bytes_to_add; |
| 5515 | if (dest->reserved >= dest->size) |
| 5516 | dest->full = 1; |
| 5517 | num_bytes -= bytes_to_add; |
| 5518 | } |
| 5519 | spin_unlock(&dest->lock); |
| 5520 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5521 | if (num_bytes) |
| 5522 | space_info_add_old_bytes(fs_info, space_info, |
| 5523 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5524 | } |
| 5525 | } |
| 5526 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5527 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src, |
| 5528 | struct btrfs_block_rsv *dst, u64 num_bytes, |
| 5529 | int update_size) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5530 | { |
| 5531 | int ret; |
| 5532 | |
| 5533 | ret = block_rsv_use_bytes(src, num_bytes); |
| 5534 | if (ret) |
| 5535 | return ret; |
| 5536 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5537 | block_rsv_add_bytes(dst, num_bytes, update_size); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5538 | return 0; |
| 5539 | } |
| 5540 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5541 | 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] | 5542 | { |
| 5543 | memset(rsv, 0, sizeof(*rsv)); |
| 5544 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5545 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5546 | } |
| 5547 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5548 | 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] | 5549 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5550 | { |
| 5551 | struct btrfs_block_rsv *block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5552 | |
| 5553 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 5554 | if (!block_rsv) |
| 5555 | return NULL; |
| 5556 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5557 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5558 | block_rsv->space_info = __find_space_info(fs_info, |
| 5559 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5560 | return block_rsv; |
| 5561 | } |
| 5562 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5563 | void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5564 | struct btrfs_block_rsv *rsv) |
| 5565 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 5566 | if (!rsv) |
| 5567 | return; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5568 | btrfs_block_rsv_release(fs_info, rsv, (u64)-1); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5569 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5570 | } |
| 5571 | |
Chris Mason | cdfb080 | 2015-04-06 18:17:00 -0700 | [diff] [blame] | 5572 | void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv) |
| 5573 | { |
| 5574 | kfree(rsv); |
| 5575 | } |
| 5576 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5577 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 5578 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 5579 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5580 | { |
| 5581 | int ret; |
| 5582 | |
| 5583 | if (num_bytes == 0) |
| 5584 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5585 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 5586 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5587 | if (!ret) { |
| 5588 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 5589 | return 0; |
| 5590 | } |
| 5591 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5592 | return ret; |
| 5593 | } |
| 5594 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5595 | 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] | 5596 | { |
| 5597 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5598 | int ret = -ENOSPC; |
| 5599 | |
| 5600 | if (!block_rsv) |
| 5601 | return 0; |
| 5602 | |
| 5603 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5604 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 5605 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5606 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5607 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5608 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5609 | return ret; |
| 5610 | } |
| 5611 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5612 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 5613 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 5614 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5615 | { |
| 5616 | u64 num_bytes = 0; |
| 5617 | int ret = -ENOSPC; |
| 5618 | |
| 5619 | if (!block_rsv) |
| 5620 | return 0; |
| 5621 | |
| 5622 | spin_lock(&block_rsv->lock); |
| 5623 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5624 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5625 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5626 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5627 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5628 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5629 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5630 | if (!ret) |
| 5631 | return 0; |
| 5632 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 5633 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5634 | if (!ret) { |
| 5635 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5636 | return 0; |
| 5637 | } |
| 5638 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5639 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5640 | } |
| 5641 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5642 | void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5643 | struct btrfs_block_rsv *block_rsv, |
| 5644 | u64 num_bytes) |
| 5645 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5646 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5647 | |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 5648 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5649 | block_rsv->space_info != global_rsv->space_info) |
| 5650 | global_rsv = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5651 | block_rsv_release_bytes(fs_info, block_rsv, global_rsv, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5652 | } |
| 5653 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5654 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5655 | { |
| 5656 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 5657 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 5658 | u64 num_bytes; |
| 5659 | |
Josef Bacik | ae2e472 | 2016-05-27 12:58:35 -0400 | [diff] [blame] | 5660 | /* |
| 5661 | * The global block rsv is based on the size of the extent tree, the |
| 5662 | * checksum tree and the root tree. If the fs is empty we want to set |
| 5663 | * it to a minimal amount for safety. |
| 5664 | */ |
| 5665 | num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) + |
| 5666 | btrfs_root_used(&fs_info->csum_root->root_item) + |
| 5667 | btrfs_root_used(&fs_info->tree_root->root_item); |
| 5668 | num_bytes = max_t(u64, num_bytes, SZ_16M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5669 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5670 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5671 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5672 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 5673 | block_rsv->size = min_t(u64, num_bytes, SZ_512M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5674 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5675 | if (block_rsv->reserved < block_rsv->size) { |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 5676 | num_bytes = btrfs_space_info_used(sinfo, true); |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5677 | if (sinfo->total_bytes > num_bytes) { |
| 5678 | num_bytes = sinfo->total_bytes - num_bytes; |
| 5679 | num_bytes = min(num_bytes, |
| 5680 | block_rsv->size - block_rsv->reserved); |
| 5681 | block_rsv->reserved += num_bytes; |
| 5682 | sinfo->bytes_may_use += num_bytes; |
| 5683 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5684 | sinfo->flags, num_bytes, |
| 5685 | 1); |
| 5686 | } |
| 5687 | } else if (block_rsv->reserved > block_rsv->size) { |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5688 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5689 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5690 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5691 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5692 | block_rsv->reserved = block_rsv->size; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5693 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 5694 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5695 | if (block_rsv->reserved == block_rsv->size) |
| 5696 | block_rsv->full = 1; |
| 5697 | else |
| 5698 | block_rsv->full = 0; |
| 5699 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5700 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5701 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5702 | } |
| 5703 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5704 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5705 | { |
| 5706 | struct btrfs_space_info *space_info; |
| 5707 | |
| 5708 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 5709 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5710 | |
| 5711 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5712 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5713 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5714 | fs_info->trans_block_rsv.space_info = space_info; |
| 5715 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5716 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5717 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5718 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 5719 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 5720 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 5721 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 5722 | if (fs_info->quota_root) |
| 5723 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5724 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5725 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5726 | update_global_block_rsv(fs_info); |
| 5727 | } |
| 5728 | |
| 5729 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5730 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5731 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 5732 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5733 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 5734 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 5735 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 5736 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 5737 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 5738 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5739 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 5740 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5741 | } |
| 5742 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5743 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5744 | struct btrfs_fs_info *fs_info) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5745 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 5746 | if (!trans->block_rsv) |
| 5747 | return; |
| 5748 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5749 | if (!trans->bytes_reserved) |
| 5750 | return; |
| 5751 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5752 | trace_btrfs_space_reservation(fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5753 | trans->transid, trans->bytes_reserved, 0); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5754 | btrfs_block_rsv_release(fs_info, trans->block_rsv, |
| 5755 | trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5756 | trans->bytes_reserved = 0; |
| 5757 | } |
| 5758 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5759 | /* |
| 5760 | * To be called after all the new block groups attached to the transaction |
| 5761 | * handle have been created (btrfs_create_pending_block_groups()). |
| 5762 | */ |
| 5763 | void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) |
| 5764 | { |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 5765 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5766 | |
| 5767 | if (!trans->chunk_bytes_reserved) |
| 5768 | return; |
| 5769 | |
| 5770 | WARN_ON_ONCE(!list_empty(&trans->new_bgs)); |
| 5771 | |
| 5772 | block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL, |
| 5773 | trans->chunk_bytes_reserved); |
| 5774 | trans->chunk_bytes_reserved = 0; |
| 5775 | } |
| 5776 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5777 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5778 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5779 | struct btrfs_inode *inode) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5780 | { |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5781 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5782 | struct btrfs_root *root = inode->root; |
Josef Bacik | 40acc3ee | 2016-05-27 13:01:08 -0400 | [diff] [blame] | 5783 | /* |
| 5784 | * We always use trans->block_rsv here as we will have reserved space |
| 5785 | * for our orphan when starting the transaction, using get_block_rsv() |
| 5786 | * here will sometimes make us choose the wrong block rsv as we could be |
| 5787 | * doing a reloc inode for a non refcounted root. |
| 5788 | */ |
| 5789 | struct btrfs_block_rsv *src_rsv = trans->block_rsv; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5790 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 5791 | |
| 5792 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5793 | * We need to hold space in order to delete our orphan item once we've |
| 5794 | * added it, so this takes the reservation so we can release it later |
| 5795 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5796 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5797 | u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
| 5798 | |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5799 | trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode), |
| 5800 | num_bytes, 1); |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5801 | return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5802 | } |
| 5803 | |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5804 | void btrfs_orphan_release_metadata(struct btrfs_inode *inode) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5805 | { |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5806 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5807 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5808 | u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
| 5809 | |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5810 | trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode), |
| 5811 | num_bytes, 0); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5812 | btrfs_block_rsv_release(fs_info, root->orphan_block_rsv, num_bytes); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5813 | } |
| 5814 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5815 | /* |
| 5816 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 5817 | * root: the root of the parent directory |
| 5818 | * rsv: block reservation |
| 5819 | * items: the number of items that we need do reservation |
| 5820 | * qgroup_reserved: used to return the reserved size in qgroup |
| 5821 | * |
| 5822 | * This function is used to reserve the space for snapshot/subvolume |
| 5823 | * creation and deletion. Those operations are different with the |
| 5824 | * common file/directory operations, they change two fs/file trees |
| 5825 | * and root tree, the number of items that the qgroup reserves is |
| 5826 | * different with the free space reservation. So we can not use |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5827 | * the space reservation mechanism in start_transaction(). |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5828 | */ |
| 5829 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 5830 | struct btrfs_block_rsv *rsv, |
| 5831 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5832 | u64 *qgroup_reserved, |
| 5833 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5834 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5835 | u64 num_bytes; |
| 5836 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5837 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5838 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5839 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5840 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5841 | /* One for parent inode, two for dir entries */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5842 | num_bytes = 3 * fs_info->nodesize; |
Jeff Mahoney | 003d7c5 | 2017-01-25 09:50:33 -0500 | [diff] [blame] | 5843 | ret = btrfs_qgroup_reserve_meta(root, num_bytes, true); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5844 | if (ret) |
| 5845 | return ret; |
| 5846 | } else { |
| 5847 | num_bytes = 0; |
| 5848 | } |
| 5849 | |
| 5850 | *qgroup_reserved = num_bytes; |
| 5851 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5852 | num_bytes = btrfs_calc_trans_metadata_size(fs_info, items); |
| 5853 | rsv->space_info = __find_space_info(fs_info, |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5854 | BTRFS_BLOCK_GROUP_METADATA); |
| 5855 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5856 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5857 | |
| 5858 | if (ret == -ENOSPC && use_global_rsv) |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5859 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5860 | |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5861 | if (ret && *qgroup_reserved) |
| 5862 | btrfs_qgroup_free_meta(root, *qgroup_reserved); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5863 | |
| 5864 | return ret; |
| 5865 | } |
| 5866 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5867 | void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info, |
David Sterba | 7775c81 | 2017-02-10 19:18:18 +0100 | [diff] [blame] | 5868 | struct btrfs_block_rsv *rsv) |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5869 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5870 | btrfs_block_rsv_release(fs_info, rsv, (u64)-1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5871 | } |
| 5872 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5873 | /** |
| 5874 | * drop_outstanding_extent - drop an outstanding extent |
| 5875 | * @inode: the inode we're dropping the extent for |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5876 | * @num_bytes: the number of bytes we're releasing. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5877 | * |
| 5878 | * This is called when we are freeing up an outstanding extent, either called |
| 5879 | * after an error or after an extent is written. This will return the number of |
| 5880 | * reserved extents that need to be freed. This must be called with |
| 5881 | * BTRFS_I(inode)->lock held. |
| 5882 | */ |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5883 | static unsigned drop_outstanding_extent(struct btrfs_inode *inode, |
| 5884 | u64 num_bytes) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5885 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5886 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5887 | unsigned dropped_extents = 0; |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5888 | unsigned num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5889 | |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5890 | num_extents = count_max_extents(num_bytes); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5891 | ASSERT(num_extents); |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5892 | ASSERT(inode->outstanding_extents >= num_extents); |
| 5893 | inode->outstanding_extents -= num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5894 | |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5895 | if (inode->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5896 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5897 | &inode->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5898 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5899 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5900 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5901 | * 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] | 5902 | * reserved then we need to leave the reserved extents count alone. |
| 5903 | */ |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5904 | if (inode->outstanding_extents >= inode->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5905 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5906 | |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5907 | dropped_extents = inode->reserved_extents - inode->outstanding_extents; |
| 5908 | inode->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5909 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5910 | } |
| 5911 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5912 | /** |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5913 | * calc_csum_metadata_size - return the amount of metadata space that must be |
| 5914 | * reserved/freed for the given bytes. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5915 | * @inode: the inode we're manipulating |
| 5916 | * @num_bytes: the number of bytes in question |
| 5917 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5918 | * |
| 5919 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5920 | * correct amount of metadata that must either be reserved or freed. We |
| 5921 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5922 | * number of bytes that will need to be checksumed by this value to figure out |
| 5923 | * how many checksums will be required. If we are adding bytes then the number |
| 5924 | * may go up and we will return the number of additional bytes that must be |
| 5925 | * reserved. If it is going down we will return the number of bytes that must |
| 5926 | * be freed. |
| 5927 | * |
| 5928 | * This must be called with BTRFS_I(inode)->lock held. |
| 5929 | */ |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5930 | 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] | 5931 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5932 | { |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5933 | 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] | 5934 | u64 old_csums, num_csums; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5935 | |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5936 | if (inode->flags & BTRFS_INODE_NODATASUM && inode->csum_bytes == 0) |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5937 | return 0; |
| 5938 | |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5939 | old_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5940 | if (reserve) |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5941 | inode->csum_bytes += num_bytes; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5942 | else |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5943 | inode->csum_bytes -= num_bytes; |
| 5944 | num_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5945 | |
| 5946 | /* No change, no need to reserve more */ |
| 5947 | if (old_csums == num_csums) |
| 5948 | return 0; |
| 5949 | |
| 5950 | if (reserve) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5951 | return btrfs_calc_trans_metadata_size(fs_info, |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5952 | num_csums - old_csums); |
| 5953 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5954 | return btrfs_calc_trans_metadata_size(fs_info, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5955 | } |
| 5956 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5957 | int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5958 | { |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5959 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5960 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5961 | struct btrfs_block_rsv *block_rsv = &fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5962 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5963 | u64 csum_bytes; |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5964 | unsigned nr_extents; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5965 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5966 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5967 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5968 | u64 to_free = 0; |
| 5969 | unsigned dropped; |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5970 | bool release_extra = false; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5971 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5972 | /* If we are a free space inode we need to not flush since we will be in |
| 5973 | * the middle of a transaction commit. We also don't need the delalloc |
| 5974 | * mutex since we won't race with anybody. We need this mostly to make |
| 5975 | * lockdep shut its filthy mouth. |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5976 | * |
| 5977 | * If we have a transaction open (can happen if we call truncate_block |
| 5978 | * from truncate), then we need FLUSH_LIMIT so we don't deadlock. |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5979 | */ |
| 5980 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5981 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5982 | delalloc_lock = false; |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5983 | } else if (current->journal_info) { |
| 5984 | flush = BTRFS_RESERVE_FLUSH_LIMIT; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5985 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 5986 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5987 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5988 | btrfs_transaction_in_commit(fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5989 | schedule_timeout(1); |
| 5990 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5991 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5992 | mutex_lock(&inode->delalloc_mutex); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5993 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5994 | num_bytes = ALIGN(num_bytes, fs_info->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5995 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5996 | spin_lock(&inode->lock); |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5997 | nr_extents = count_max_extents(num_bytes); |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5998 | inode->outstanding_extents += nr_extents; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5999 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6000 | nr_extents = 0; |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6001 | if (inode->outstanding_extents > inode->reserved_extents) |
| 6002 | nr_extents += inode->outstanding_extents - |
| 6003 | inode->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 6004 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6005 | /* We always want to reserve a slot for updating the inode. */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6006 | to_reserve = btrfs_calc_trans_metadata_size(fs_info, nr_extents + 1); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6007 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6008 | csum_bytes = inode->csum_bytes; |
| 6009 | spin_unlock(&inode->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 6010 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6011 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) { |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 6012 | ret = btrfs_qgroup_reserve_meta(root, |
Jeff Mahoney | 003d7c5 | 2017-01-25 09:50:33 -0500 | [diff] [blame] | 6013 | nr_extents * fs_info->nodesize, true); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6014 | if (ret) |
| 6015 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 6016 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 6017 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6018 | ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6019 | if (unlikely(ret)) { |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 6020 | btrfs_qgroup_free_meta(root, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6021 | nr_extents * fs_info->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6022 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6023 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6024 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6025 | spin_lock(&inode->lock); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6026 | if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6027 | &inode->runtime_flags)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6028 | to_reserve -= btrfs_calc_trans_metadata_size(fs_info, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6029 | release_extra = true; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6030 | } |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6031 | inode->reserved_extents += nr_extents; |
| 6032 | spin_unlock(&inode->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6033 | |
| 6034 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6035 | mutex_unlock(&inode->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6036 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6037 | if (to_reserve) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6038 | trace_btrfs_space_reservation(fs_info, "delalloc", |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6039 | btrfs_ino(inode), to_reserve, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6040 | if (release_extra) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6041 | btrfs_block_rsv_release(fs_info, block_rsv, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6042 | btrfs_calc_trans_metadata_size(fs_info, 1)); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6043 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6044 | |
| 6045 | out_fail: |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6046 | spin_lock(&inode->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6047 | dropped = drop_outstanding_extent(inode, num_bytes); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6048 | /* |
| 6049 | * If the inodes csum_bytes is the same as the original |
| 6050 | * csum_bytes then we know we haven't raced with any free()ers |
| 6051 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6052 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6053 | if (inode->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6054 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6055 | } else { |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6056 | u64 orig_csum_bytes = inode->csum_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6057 | u64 bytes; |
| 6058 | |
| 6059 | /* |
| 6060 | * 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] | 6061 | * freed from any free-ers that occurred during this |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6062 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 6063 | * before we dropped our lock, and then call the free for the |
| 6064 | * number of bytes that were freed while we were trying our |
| 6065 | * reservation. |
| 6066 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6067 | bytes = csum_bytes - inode->csum_bytes; |
| 6068 | inode->csum_bytes = csum_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6069 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 6070 | |
| 6071 | |
| 6072 | /* |
| 6073 | * Now we need to see how much we would have freed had we not |
| 6074 | * been making this reservation and our ->csum_bytes were not |
| 6075 | * artificially inflated. |
| 6076 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6077 | inode->csum_bytes = csum_bytes - num_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6078 | bytes = csum_bytes - orig_csum_bytes; |
| 6079 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 6080 | |
| 6081 | /* |
| 6082 | * 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] | 6083 | * 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] | 6084 | * not had an artificially high ->csum_bytes, so we need to free |
| 6085 | * the remainder. If bytes is the same or less then we don't |
| 6086 | * need to do anything, the other free-ers did the correct |
| 6087 | * thing. |
| 6088 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6089 | inode->csum_bytes = orig_csum_bytes - num_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6090 | if (bytes > to_free) |
| 6091 | to_free = bytes - to_free; |
| 6092 | else |
| 6093 | to_free = 0; |
| 6094 | } |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6095 | spin_unlock(&inode->lock); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 6096 | if (dropped) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6097 | to_free += btrfs_calc_trans_metadata_size(fs_info, dropped); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6098 | |
| 6099 | if (to_free) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6100 | btrfs_block_rsv_release(fs_info, block_rsv, to_free); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6101 | trace_btrfs_space_reservation(fs_info, "delalloc", |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6102 | btrfs_ino(inode), to_free, 0); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6103 | } |
| 6104 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6105 | mutex_unlock(&inode->delalloc_mutex); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6106 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6107 | } |
| 6108 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6109 | /** |
| 6110 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 6111 | * @inode: the inode to release the reservation for |
| 6112 | * @num_bytes: the number of bytes we're releasing |
| 6113 | * |
| 6114 | * This will release the metadata reservation for an inode. This can be called |
| 6115 | * once we complete IO for a given set of bytes to release their metadata |
| 6116 | * reservations. |
| 6117 | */ |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6118 | void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6119 | { |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6120 | 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] | 6121 | u64 to_free = 0; |
| 6122 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6123 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6124 | num_bytes = ALIGN(num_bytes, fs_info->sectorsize); |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6125 | spin_lock(&inode->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6126 | dropped = drop_outstanding_extent(inode, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6127 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 6128 | if (num_bytes) |
| 6129 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6130 | spin_unlock(&inode->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6131 | if (dropped > 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6132 | to_free += btrfs_calc_trans_metadata_size(fs_info, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6133 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6134 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | 6a3891c | 2015-03-16 17:38:52 -0400 | [diff] [blame] | 6135 | return; |
| 6136 | |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6137 | trace_btrfs_space_reservation(fs_info, "delalloc", btrfs_ino(inode), |
| 6138 | to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 6139 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6140 | 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] | 6141 | } |
| 6142 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6143 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6144 | * btrfs_delalloc_reserve_space - reserve data and metadata space for |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6145 | * delalloc |
| 6146 | * @inode: inode we're writing to |
| 6147 | * @start: start range we are writing to |
| 6148 | * @len: how long the range we are writing to |
| 6149 | * |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6150 | * This will do the following things |
| 6151 | * |
| 6152 | * o reserve space in data space info for num bytes |
| 6153 | * and reserve precious corresponding qgroup space |
| 6154 | * (Done in check_data_free_space) |
| 6155 | * |
| 6156 | * o reserve space for metadata space, based on the number of outstanding |
| 6157 | * extents and how much csums will be needed |
| 6158 | * also reserve metadata space in a per root over-reserve method. |
| 6159 | * o add to the inodes->delalloc_bytes |
| 6160 | * o add it to the fs_info's delalloc inodes list. |
| 6161 | * (Above 3 all done in delalloc_reserve_metadata) |
| 6162 | * |
| 6163 | * Return 0 for success |
| 6164 | * Return <0 for error(-ENOSPC or -EQUOT) |
| 6165 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6166 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6167 | { |
| 6168 | int ret; |
| 6169 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6170 | ret = btrfs_check_data_free_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6171 | if (ret < 0) |
| 6172 | return ret; |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6173 | ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6174 | if (ret < 0) |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6175 | btrfs_free_reserved_data_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6176 | return ret; |
| 6177 | } |
| 6178 | |
| 6179 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6180 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6181 | * @inode: inode we're releasing space for |
| 6182 | * @start: start position of the space already reserved |
| 6183 | * @len: the len of the space already reserved |
| 6184 | * |
| 6185 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 6186 | * called in the case that we don't need the metadata AND data reservations |
| 6187 | * anymore. So if there is an error or we insert an inline extent. |
| 6188 | * |
| 6189 | * This function will release the metadata space that was not used and will |
| 6190 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 6191 | * list if there are no delalloc bytes left. |
| 6192 | * Also it will handle the qgroup reserved space. |
| 6193 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6194 | void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6195 | { |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6196 | btrfs_delalloc_release_metadata(BTRFS_I(inode), len); |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6197 | btrfs_free_reserved_data_space(inode, start, len); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6198 | } |
| 6199 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6200 | static int update_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 6201 | struct btrfs_fs_info *info, u64 bytenr, |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6202 | u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6203 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6204 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6205 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6206 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6207 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6208 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 6209 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6210 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6211 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6212 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6213 | if (alloc) |
| 6214 | old_val += num_bytes; |
| 6215 | else |
| 6216 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6217 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6218 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6219 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6220 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6221 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6222 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6223 | return -ENOENT; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6224 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 6225 | BTRFS_BLOCK_GROUP_RAID1 | |
| 6226 | BTRFS_BLOCK_GROUP_RAID10)) |
| 6227 | factor = 2; |
| 6228 | else |
| 6229 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 6230 | /* |
| 6231 | * If this block group has free space cache written out, we |
| 6232 | * need to make sure to load it if we are removing space. This |
| 6233 | * is because we need the unpinning stage to actually add the |
| 6234 | * space back to the block group, otherwise we will leak space. |
| 6235 | */ |
| 6236 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6237 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6238 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6239 | byte_in_group = bytenr - cache->key.objectid; |
| 6240 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6241 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6242 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6243 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6244 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 6245 | if (btrfs_test_opt(info, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6246 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 6247 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 6248 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6249 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6250 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6251 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6252 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6253 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6254 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6255 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6256 | cache->space_info->bytes_used += num_bytes; |
| 6257 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6258 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6259 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6260 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6261 | old_val -= num_bytes; |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6262 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6263 | cache->pinned += num_bytes; |
| 6264 | cache->space_info->bytes_pinned += num_bytes; |
| 6265 | cache->space_info->bytes_used -= num_bytes; |
| 6266 | cache->space_info->disk_used -= num_bytes * factor; |
| 6267 | spin_unlock(&cache->lock); |
| 6268 | spin_unlock(&cache->space_info->lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 6269 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6270 | trace_btrfs_space_reservation(info, "pinned", |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6271 | cache->space_info->flags, |
| 6272 | num_bytes, 1); |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6273 | set_extent_dirty(info->pinned_extents, |
| 6274 | bytenr, bytenr + num_bytes - 1, |
| 6275 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6276 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 6277 | |
| 6278 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 6279 | if (list_empty(&cache->dirty_list)) { |
| 6280 | list_add_tail(&cache->dirty_list, |
| 6281 | &trans->transaction->dirty_bgs); |
| 6282 | trans->transaction->num_dirty_bgs++; |
| 6283 | btrfs_get_block_group(cache); |
| 6284 | } |
| 6285 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 6286 | |
Filipe Manana | 036a934 | 2015-11-23 15:25:16 +0000 | [diff] [blame] | 6287 | /* |
| 6288 | * No longer have used bytes in this block group, queue it for |
| 6289 | * deletion. We do this after adding the block group to the |
| 6290 | * dirty list to avoid races between cleaner kthread and space |
| 6291 | * cache writeout. |
| 6292 | */ |
| 6293 | if (!alloc && old_val == 0) { |
| 6294 | spin_lock(&info->unused_bgs_lock); |
| 6295 | if (list_empty(&cache->bg_list)) { |
| 6296 | btrfs_get_block_group(cache); |
| 6297 | list_add_tail(&cache->bg_list, |
| 6298 | &info->unused_bgs); |
| 6299 | } |
| 6300 | spin_unlock(&info->unused_bgs_lock); |
| 6301 | } |
| 6302 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6303 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6304 | total -= num_bytes; |
| 6305 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6306 | } |
| 6307 | return 0; |
| 6308 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6309 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6310 | 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] | 6311 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6312 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6313 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6314 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6315 | spin_lock(&fs_info->block_group_cache_lock); |
| 6316 | bytenr = fs_info->first_logical_byte; |
| 6317 | spin_unlock(&fs_info->block_group_cache_lock); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 6318 | |
| 6319 | if (bytenr < (u64)-1) |
| 6320 | return bytenr; |
| 6321 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6322 | cache = btrfs_lookup_first_block_group(fs_info, search_start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6323 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6324 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6325 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6326 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6327 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6328 | |
| 6329 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6330 | } |
| 6331 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6332 | static int pin_down_extent(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6333 | struct btrfs_block_group_cache *cache, |
| 6334 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6335 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6336 | spin_lock(&cache->space_info->lock); |
| 6337 | spin_lock(&cache->lock); |
| 6338 | cache->pinned += num_bytes; |
| 6339 | cache->space_info->bytes_pinned += num_bytes; |
| 6340 | if (reserved) { |
| 6341 | cache->reserved -= num_bytes; |
| 6342 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6343 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6344 | spin_unlock(&cache->lock); |
| 6345 | spin_unlock(&cache->space_info->lock); |
| 6346 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6347 | trace_btrfs_space_reservation(fs_info, "pinned", |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6348 | cache->space_info->flags, num_bytes, 1); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6349 | set_extent_dirty(fs_info->pinned_extents, bytenr, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6350 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6351 | return 0; |
| 6352 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6353 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6354 | /* |
| 6355 | * this function must be called within transaction |
| 6356 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6357 | int btrfs_pin_extent(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6358 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6359 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6360 | struct btrfs_block_group_cache *cache; |
| 6361 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6362 | cache = btrfs_lookup_block_group(fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6363 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6364 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6365 | pin_down_extent(fs_info, cache, bytenr, num_bytes, reserved); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6366 | |
| 6367 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6368 | return 0; |
| 6369 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6370 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6371 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6372 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6373 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6374 | 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] | 6375 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6376 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6377 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6378 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6379 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6380 | cache = btrfs_lookup_block_group(fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6381 | if (!cache) |
| 6382 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6383 | |
| 6384 | /* |
| 6385 | * pull in the free space cache (if any) so that our pin |
| 6386 | * removes the free space from the cache. We have load_only set |
| 6387 | * to one because the slow code to read in the free extents does check |
| 6388 | * the pinned extents. |
| 6389 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6390 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6391 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6392 | pin_down_extent(fs_info, cache, bytenr, num_bytes, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6393 | |
| 6394 | /* 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] | 6395 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6396 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6397 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6398 | } |
| 6399 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6400 | static int __exclude_logged_extent(struct btrfs_fs_info *fs_info, |
| 6401 | u64 start, u64 num_bytes) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6402 | { |
| 6403 | int ret; |
| 6404 | struct btrfs_block_group_cache *block_group; |
| 6405 | struct btrfs_caching_control *caching_ctl; |
| 6406 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6407 | block_group = btrfs_lookup_block_group(fs_info, start); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6408 | if (!block_group) |
| 6409 | return -EINVAL; |
| 6410 | |
| 6411 | cache_block_group(block_group, 0); |
| 6412 | caching_ctl = get_caching_control(block_group); |
| 6413 | |
| 6414 | if (!caching_ctl) { |
| 6415 | /* Logic error */ |
| 6416 | BUG_ON(!block_group_cache_done(block_group)); |
| 6417 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 6418 | } else { |
| 6419 | mutex_lock(&caching_ctl->mutex); |
| 6420 | |
| 6421 | if (start >= caching_ctl->progress) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6422 | ret = add_excluded_extent(fs_info, start, num_bytes); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6423 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 6424 | ret = btrfs_remove_free_space(block_group, |
| 6425 | start, num_bytes); |
| 6426 | } else { |
| 6427 | num_bytes = caching_ctl->progress - start; |
| 6428 | ret = btrfs_remove_free_space(block_group, |
| 6429 | start, num_bytes); |
| 6430 | if (ret) |
| 6431 | goto out_lock; |
| 6432 | |
| 6433 | num_bytes = (start + num_bytes) - |
| 6434 | caching_ctl->progress; |
| 6435 | start = caching_ctl->progress; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6436 | ret = add_excluded_extent(fs_info, start, num_bytes); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6437 | } |
| 6438 | out_lock: |
| 6439 | mutex_unlock(&caching_ctl->mutex); |
| 6440 | put_caching_control(caching_ctl); |
| 6441 | } |
| 6442 | btrfs_put_block_group(block_group); |
| 6443 | return ret; |
| 6444 | } |
| 6445 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6446 | int btrfs_exclude_logged_extents(struct btrfs_fs_info *fs_info, |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6447 | struct extent_buffer *eb) |
| 6448 | { |
| 6449 | struct btrfs_file_extent_item *item; |
| 6450 | struct btrfs_key key; |
| 6451 | int found_type; |
| 6452 | int i; |
| 6453 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6454 | if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6455 | return 0; |
| 6456 | |
| 6457 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 6458 | btrfs_item_key_to_cpu(eb, &key, i); |
| 6459 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 6460 | continue; |
| 6461 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 6462 | found_type = btrfs_file_extent_type(eb, item); |
| 6463 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 6464 | continue; |
| 6465 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 6466 | continue; |
| 6467 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 6468 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6469 | __exclude_logged_extent(fs_info, key.objectid, key.offset); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6470 | } |
| 6471 | |
| 6472 | return 0; |
| 6473 | } |
| 6474 | |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6475 | static void |
| 6476 | btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6477 | { |
| 6478 | atomic_inc(&bg->reservations); |
| 6479 | } |
| 6480 | |
| 6481 | void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info, |
| 6482 | const u64 start) |
| 6483 | { |
| 6484 | struct btrfs_block_group_cache *bg; |
| 6485 | |
| 6486 | bg = btrfs_lookup_block_group(fs_info, start); |
| 6487 | ASSERT(bg); |
| 6488 | if (atomic_dec_and_test(&bg->reservations)) |
| 6489 | wake_up_atomic_t(&bg->reservations); |
| 6490 | btrfs_put_block_group(bg); |
| 6491 | } |
| 6492 | |
| 6493 | static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a) |
| 6494 | { |
| 6495 | schedule(); |
| 6496 | return 0; |
| 6497 | } |
| 6498 | |
| 6499 | void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6500 | { |
| 6501 | struct btrfs_space_info *space_info = bg->space_info; |
| 6502 | |
| 6503 | ASSERT(bg->ro); |
| 6504 | |
| 6505 | if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA)) |
| 6506 | return; |
| 6507 | |
| 6508 | /* |
| 6509 | * Our block group is read only but before we set it to read only, |
| 6510 | * some task might have had allocated an extent from it already, but it |
| 6511 | * has not yet created a respective ordered extent (and added it to a |
| 6512 | * root's list of ordered extents). |
| 6513 | * Therefore wait for any task currently allocating extents, since the |
| 6514 | * block group's reservations counter is incremented while a read lock |
| 6515 | * on the groups' semaphore is held and decremented after releasing |
| 6516 | * the read access on that semaphore and creating the ordered extent. |
| 6517 | */ |
| 6518 | down_write(&space_info->groups_sem); |
| 6519 | up_write(&space_info->groups_sem); |
| 6520 | |
| 6521 | wait_on_atomic_t(&bg->reservations, |
| 6522 | btrfs_wait_bg_reservations_atomic_t, |
| 6523 | TASK_UNINTERRUPTIBLE); |
| 6524 | } |
| 6525 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6526 | /** |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6527 | * btrfs_add_reserved_bytes - update the block_group and space info counters |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6528 | * @cache: The cache we are manipulating |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6529 | * @ram_bytes: The number of bytes of file content, and will be same to |
| 6530 | * @num_bytes except for the compress path. |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6531 | * @num_bytes: The number of bytes in question |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6532 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6533 | * |
Xiaoguang Wang | 745699e | 2016-09-23 12:38:50 +0800 | [diff] [blame] | 6534 | * This is called by the allocator when it reserves space. If this is a |
| 6535 | * reservation and the block group has become read only we cannot make the |
| 6536 | * reservation and return -EAGAIN, otherwise this function always succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6537 | */ |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6538 | static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6539 | u64 ram_bytes, u64 num_bytes, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6540 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6541 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6542 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6543 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6544 | spin_lock(&space_info->lock); |
| 6545 | spin_lock(&cache->lock); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6546 | if (cache->ro) { |
| 6547 | ret = -EAGAIN; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6548 | } else { |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6549 | cache->reserved += num_bytes; |
| 6550 | space_info->bytes_reserved += num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6551 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6552 | trace_btrfs_space_reservation(cache->fs_info, |
| 6553 | "space_info", space_info->flags, |
| 6554 | ram_bytes, 0); |
| 6555 | space_info->bytes_may_use -= ram_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6556 | if (delalloc) |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6557 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6558 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6559 | spin_unlock(&cache->lock); |
| 6560 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6561 | return ret; |
| 6562 | } |
| 6563 | |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6564 | /** |
| 6565 | * btrfs_free_reserved_bytes - update the block_group and space info counters |
| 6566 | * @cache: The cache we are manipulating |
| 6567 | * @num_bytes: The number of bytes in question |
| 6568 | * @delalloc: The blocks are allocated for the delalloc write |
| 6569 | * |
| 6570 | * This is called by somebody who is freeing space that was never actually used |
| 6571 | * on disk. For example if you reserve some space for a new leaf in transaction |
| 6572 | * A and before transaction A commits you free that leaf, you call this with |
| 6573 | * reserve set to 0 in order to clear the reservation. |
| 6574 | */ |
| 6575 | |
| 6576 | static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 6577 | u64 num_bytes, int delalloc) |
| 6578 | { |
| 6579 | struct btrfs_space_info *space_info = cache->space_info; |
| 6580 | int ret = 0; |
| 6581 | |
| 6582 | spin_lock(&space_info->lock); |
| 6583 | spin_lock(&cache->lock); |
| 6584 | if (cache->ro) |
| 6585 | space_info->bytes_readonly += num_bytes; |
| 6586 | cache->reserved -= num_bytes; |
| 6587 | space_info->bytes_reserved -= num_bytes; |
| 6588 | |
| 6589 | if (delalloc) |
| 6590 | cache->delalloc_bytes -= num_bytes; |
| 6591 | spin_unlock(&cache->lock); |
| 6592 | spin_unlock(&space_info->lock); |
| 6593 | return ret; |
| 6594 | } |
David Sterba | 8b74c03 | 2017-02-10 19:20:56 +0100 | [diff] [blame] | 6595 | void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6596 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6597 | struct btrfs_caching_control *next; |
| 6598 | struct btrfs_caching_control *caching_ctl; |
| 6599 | struct btrfs_block_group_cache *cache; |
| 6600 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6601 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6602 | |
| 6603 | list_for_each_entry_safe(caching_ctl, next, |
| 6604 | &fs_info->caching_block_groups, list) { |
| 6605 | cache = caching_ctl->block_group; |
| 6606 | if (block_group_cache_done(cache)) { |
| 6607 | cache->last_byte_to_unpin = (u64)-1; |
| 6608 | list_del_init(&caching_ctl->list); |
| 6609 | put_caching_control(caching_ctl); |
| 6610 | } else { |
| 6611 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 6612 | } |
| 6613 | } |
| 6614 | |
| 6615 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6616 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 6617 | else |
| 6618 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 6619 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6620 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6621 | |
| 6622 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6623 | } |
| 6624 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6625 | /* |
| 6626 | * Returns the free cluster for the given space info and sets empty_cluster to |
| 6627 | * what it should be based on the mount options. |
| 6628 | */ |
| 6629 | static struct btrfs_free_cluster * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6630 | fetch_cluster_info(struct btrfs_fs_info *fs_info, |
| 6631 | struct btrfs_space_info *space_info, u64 *empty_cluster) |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6632 | { |
| 6633 | struct btrfs_free_cluster *ret = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6634 | bool ssd = btrfs_test_opt(fs_info, SSD); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6635 | |
| 6636 | *empty_cluster = 0; |
| 6637 | if (btrfs_mixed_space_info(space_info)) |
| 6638 | return ret; |
| 6639 | |
| 6640 | if (ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6641 | *empty_cluster = SZ_2M; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6642 | if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6643 | ret = &fs_info->meta_alloc_cluster; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6644 | if (!ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6645 | *empty_cluster = SZ_64K; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6646 | } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6647 | ret = &fs_info->data_alloc_cluster; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6648 | } |
| 6649 | |
| 6650 | return ret; |
| 6651 | } |
| 6652 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6653 | static int unpin_extent_range(struct btrfs_fs_info *fs_info, |
| 6654 | u64 start, u64 end, |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6655 | const bool return_free_space) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6656 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6657 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6658 | struct btrfs_space_info *space_info; |
| 6659 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6660 | struct btrfs_free_cluster *cluster = NULL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6661 | u64 len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6662 | u64 total_unpinned = 0; |
| 6663 | u64 empty_cluster = 0; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6664 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6665 | |
| 6666 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6667 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6668 | if (!cache || |
| 6669 | start >= cache->key.objectid + cache->key.offset) { |
| 6670 | if (cache) |
| 6671 | btrfs_put_block_group(cache); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6672 | total_unpinned = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6673 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6674 | BUG_ON(!cache); /* Logic error */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6675 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6676 | cluster = fetch_cluster_info(fs_info, |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6677 | cache->space_info, |
| 6678 | &empty_cluster); |
| 6679 | empty_cluster <<= 1; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6680 | } |
| 6681 | |
| 6682 | len = cache->key.objectid + cache->key.offset - start; |
| 6683 | len = min(len, end + 1 - start); |
| 6684 | |
| 6685 | if (start < cache->last_byte_to_unpin) { |
| 6686 | len = min(len, cache->last_byte_to_unpin - start); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6687 | if (return_free_space) |
| 6688 | btrfs_add_free_space(cache, start, len); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6689 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6690 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6691 | start += len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6692 | total_unpinned += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6693 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6694 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6695 | /* |
| 6696 | * If this space cluster has been marked as fragmented and we've |
| 6697 | * unpinned enough in this block group to potentially allow a |
| 6698 | * cluster to be created inside of it go ahead and clear the |
| 6699 | * fragmented check. |
| 6700 | */ |
| 6701 | if (cluster && cluster->fragmented && |
| 6702 | total_unpinned > empty_cluster) { |
| 6703 | spin_lock(&cluster->lock); |
| 6704 | cluster->fragmented = 0; |
| 6705 | spin_unlock(&cluster->lock); |
| 6706 | } |
| 6707 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6708 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6709 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6710 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6711 | space_info->bytes_pinned -= len; |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6712 | |
| 6713 | trace_btrfs_space_reservation(fs_info, "pinned", |
| 6714 | space_info->flags, len, 0); |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 6715 | space_info->max_extent_size = 0; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 6716 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6717 | if (cache->ro) { |
| 6718 | space_info->bytes_readonly += len; |
| 6719 | readonly = true; |
| 6720 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6721 | spin_unlock(&cache->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6722 | if (!readonly && return_free_space && |
| 6723 | global_rsv->space_info == space_info) { |
| 6724 | u64 to_add = len; |
| 6725 | WARN_ON(!return_free_space); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6726 | spin_lock(&global_rsv->lock); |
| 6727 | if (!global_rsv->full) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6728 | to_add = min(len, global_rsv->size - |
| 6729 | global_rsv->reserved); |
| 6730 | global_rsv->reserved += to_add; |
| 6731 | space_info->bytes_may_use += to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6732 | if (global_rsv->reserved >= global_rsv->size) |
| 6733 | global_rsv->full = 1; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6734 | trace_btrfs_space_reservation(fs_info, |
| 6735 | "space_info", |
| 6736 | space_info->flags, |
| 6737 | to_add, 1); |
| 6738 | len -= to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6739 | } |
| 6740 | spin_unlock(&global_rsv->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6741 | /* Add to any tickets we may have */ |
| 6742 | if (len) |
| 6743 | space_info_add_new_bytes(fs_info, space_info, |
| 6744 | len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6745 | } |
| 6746 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6747 | } |
| 6748 | |
| 6749 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6750 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 6751 | return 0; |
| 6752 | } |
| 6753 | |
| 6754 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6755 | struct btrfs_fs_info *fs_info) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6756 | { |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6757 | struct btrfs_block_group_cache *block_group, *tmp; |
| 6758 | struct list_head *deleted_bgs; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6759 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6760 | u64 start; |
| 6761 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6762 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6763 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6764 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6765 | unpin = &fs_info->freed_extents[1]; |
| 6766 | else |
| 6767 | unpin = &fs_info->freed_extents[0]; |
| 6768 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6769 | while (!trans->aborted) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6770 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6771 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 6772 | EXTENT_DIRTY, NULL); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6773 | if (ret) { |
| 6774 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6775 | break; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6776 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6777 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6778 | if (btrfs_test_opt(fs_info, DISCARD)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6779 | ret = btrfs_discard_extent(fs_info, start, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6780 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6781 | |
David Sterba | af6f8f6 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 6782 | clear_extent_dirty(unpin, start, end); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6783 | unpin_extent_range(fs_info, start, end, true); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6784 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6785 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6786 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6787 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6788 | /* |
| 6789 | * Transaction is finished. We don't need the lock anymore. We |
| 6790 | * do need to clean up the block groups in case of a transaction |
| 6791 | * abort. |
| 6792 | */ |
| 6793 | deleted_bgs = &trans->transaction->deleted_bgs; |
| 6794 | list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) { |
| 6795 | u64 trimmed = 0; |
| 6796 | |
| 6797 | ret = -EROFS; |
| 6798 | if (!trans->aborted) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6799 | ret = btrfs_discard_extent(fs_info, |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6800 | block_group->key.objectid, |
| 6801 | block_group->key.offset, |
| 6802 | &trimmed); |
| 6803 | |
| 6804 | list_del_init(&block_group->bg_list); |
| 6805 | btrfs_put_block_group_trimming(block_group); |
| 6806 | btrfs_put_block_group(block_group); |
| 6807 | |
| 6808 | if (ret) { |
| 6809 | const char *errstr = btrfs_decode_error(ret); |
| 6810 | btrfs_warn(fs_info, |
| 6811 | "Discard failed while removing blockgroup: errno=%d %s\n", |
| 6812 | ret, errstr); |
| 6813 | } |
| 6814 | } |
| 6815 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6816 | return 0; |
| 6817 | } |
| 6818 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6819 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 6820 | u64 owner, u64 root_objectid) |
| 6821 | { |
| 6822 | struct btrfs_space_info *space_info; |
| 6823 | u64 flags; |
| 6824 | |
| 6825 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 6826 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 6827 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 6828 | else |
| 6829 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 6830 | } else { |
| 6831 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 6832 | } |
| 6833 | |
| 6834 | space_info = __find_space_info(fs_info, flags); |
| 6835 | BUG_ON(!space_info); /* Logic bug */ |
| 6836 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 6837 | } |
| 6838 | |
| 6839 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6840 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6841 | struct btrfs_fs_info *info, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6842 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6843 | u64 root_objectid, u64 owner_objectid, |
| 6844 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6845 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6846 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 6847 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6848 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 6849 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6850 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6851 | struct btrfs_extent_item *ei; |
| 6852 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6853 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6854 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6855 | int extent_slot = 0; |
| 6856 | int found_extent = 0; |
| 6857 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6858 | u32 item_size; |
| 6859 | u64 refs; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6860 | u64 bytenr = node->bytenr; |
| 6861 | u64 num_bytes = node->num_bytes; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6862 | int last_ref = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6863 | bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 6864 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6865 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6866 | if (!path) |
| 6867 | return -ENOMEM; |
| 6868 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 6869 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6870 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6871 | |
| 6872 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 6873 | BUG_ON(!is_data && refs_to_drop != 1); |
| 6874 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6875 | if (is_data) |
| 6876 | skinny_metadata = 0; |
| 6877 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6878 | ret = lookup_extent_backref(trans, info, path, &iref, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6879 | bytenr, num_bytes, parent, |
| 6880 | root_objectid, owner_objectid, |
| 6881 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6882 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6883 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6884 | while (extent_slot >= 0) { |
| 6885 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6886 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6887 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6888 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6889 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6890 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6891 | found_extent = 1; |
| 6892 | break; |
| 6893 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6894 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 6895 | key.offset == owner_objectid) { |
| 6896 | found_extent = 1; |
| 6897 | break; |
| 6898 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6899 | if (path->slots[0] - extent_slot > 5) |
| 6900 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6901 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6902 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6903 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6904 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 6905 | if (found_extent && item_size < sizeof(*ei)) |
| 6906 | found_extent = 0; |
| 6907 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6908 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6909 | BUG_ON(iref); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6910 | ret = remove_extent_backref(trans, info, path, NULL, |
| 6911 | refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6912 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6913 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6914 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6915 | goto out; |
| 6916 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6917 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6918 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6919 | |
| 6920 | key.objectid = bytenr; |
| 6921 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6922 | key.offset = num_bytes; |
| 6923 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6924 | if (!is_data && skinny_metadata) { |
| 6925 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 6926 | key.offset = owner_objectid; |
| 6927 | } |
| 6928 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6929 | ret = btrfs_search_slot(trans, extent_root, |
| 6930 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6931 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 6932 | /* |
| 6933 | * Couldn't find our skinny metadata item, |
| 6934 | * see if we have ye olde extent item. |
| 6935 | */ |
| 6936 | path->slots[0]--; |
| 6937 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 6938 | path->slots[0]); |
| 6939 | if (key.objectid == bytenr && |
| 6940 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6941 | key.offset == num_bytes) |
| 6942 | ret = 0; |
| 6943 | } |
| 6944 | |
| 6945 | if (ret > 0 && skinny_metadata) { |
| 6946 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 6947 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6948 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6949 | key.offset = num_bytes; |
| 6950 | btrfs_release_path(path); |
| 6951 | ret = btrfs_search_slot(trans, extent_root, |
| 6952 | &key, path, -1, 1); |
| 6953 | } |
| 6954 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6955 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6956 | btrfs_err(info, |
| 6957 | "umm, got %d back from search, was looking for %llu", |
| 6958 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 6959 | if (ret > 0) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6960 | btrfs_print_leaf(info, path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6961 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6962 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6963 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6964 | goto out; |
| 6965 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6966 | extent_slot = path->slots[0]; |
| 6967 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6968 | } else if (WARN_ON(ret == -ENOENT)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6969 | btrfs_print_leaf(info, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6970 | btrfs_err(info, |
| 6971 | "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] | 6972 | bytenr, parent, root_objectid, owner_objectid, |
| 6973 | owner_offset); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6974 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 6975 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6976 | } else { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6977 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6978 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6979 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6980 | |
| 6981 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6982 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6983 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6984 | if (item_size < sizeof(*ei)) { |
| 6985 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6986 | ret = convert_extent_item_v0(trans, info, path, owner_objectid, |
| 6987 | 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6988 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6989 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6990 | goto out; |
| 6991 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6992 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6993 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6994 | path->leave_spinning = 1; |
| 6995 | |
| 6996 | key.objectid = bytenr; |
| 6997 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6998 | key.offset = num_bytes; |
| 6999 | |
| 7000 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 7001 | -1, 1); |
| 7002 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7003 | btrfs_err(info, |
| 7004 | "umm, got %d back from search, was looking for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 7005 | ret, bytenr); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7006 | btrfs_print_leaf(info, path->nodes[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7007 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7008 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7009 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7010 | goto out; |
| 7011 | } |
| 7012 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7013 | extent_slot = path->slots[0]; |
| 7014 | leaf = path->nodes[0]; |
| 7015 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 7016 | } |
| 7017 | #endif |
| 7018 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7019 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 7020 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7021 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 7022 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7023 | struct btrfs_tree_block_info *bi; |
| 7024 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 7025 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 7026 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7027 | } |
| 7028 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7029 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7030 | if (refs < refs_to_drop) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7031 | btrfs_err(info, |
| 7032 | "trying to drop %d refs but we only have %Lu for bytenr %Lu", |
| 7033 | refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7034 | ret = -EINVAL; |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7035 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7036 | goto out; |
| 7037 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7038 | refs -= refs_to_drop; |
| 7039 | |
| 7040 | if (refs > 0) { |
| 7041 | if (extent_op) |
| 7042 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 7043 | /* |
| 7044 | * In the case of inline back ref, reference count will |
| 7045 | * be updated by remove_extent_backref |
| 7046 | */ |
| 7047 | if (iref) { |
| 7048 | BUG_ON(!found_extent); |
| 7049 | } else { |
| 7050 | btrfs_set_extent_refs(leaf, ei, refs); |
| 7051 | btrfs_mark_buffer_dirty(leaf); |
| 7052 | } |
| 7053 | if (found_extent) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7054 | ret = remove_extent_backref(trans, info, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7055 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7056 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7057 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7058 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7059 | goto out; |
| 7060 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7061 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7062 | add_pinned_bytes(info, -num_bytes, owner_objectid, |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7063 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7064 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7065 | if (found_extent) { |
| 7066 | BUG_ON(is_data && refs_to_drop != |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 7067 | extent_data_ref_count(path, iref)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7068 | if (iref) { |
| 7069 | BUG_ON(path->slots[0] != extent_slot); |
| 7070 | } else { |
| 7071 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 7072 | path->slots[0] = extent_slot; |
| 7073 | num_to_del = 2; |
| 7074 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 7075 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7076 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7077 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7078 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 7079 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7080 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7081 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7082 | goto out; |
| 7083 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 7084 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 7085 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7086 | if (is_data) { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7087 | ret = btrfs_del_csums(trans, info, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7088 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7089 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7090 | goto out; |
| 7091 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 7092 | } |
| 7093 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7094 | ret = add_to_free_space_tree(trans, info, bytenr, num_bytes); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7095 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7096 | btrfs_abort_transaction(trans, ret); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7097 | goto out; |
| 7098 | } |
| 7099 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7100 | ret = update_block_group(trans, info, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7101 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7102 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7103 | goto out; |
| 7104 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7105 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7106 | btrfs_release_path(path); |
| 7107 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7108 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7109 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7110 | return ret; |
| 7111 | } |
| 7112 | |
| 7113 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7114 | * 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] | 7115 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 7116 | * a given extent, and if there are no other delayed refs to be processed, it |
| 7117 | * removes it from the tree. |
| 7118 | */ |
| 7119 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7120 | u64 bytenr) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7121 | { |
| 7122 | struct btrfs_delayed_ref_head *head; |
| 7123 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7124 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7125 | |
| 7126 | delayed_refs = &trans->transaction->delayed_refs; |
| 7127 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 7128 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7129 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7130 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7131 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7132 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 7133 | if (!list_empty(&head->ref_list)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7134 | goto out; |
| 7135 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7136 | if (head->extent_op) { |
| 7137 | if (!head->must_insert_reserved) |
| 7138 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7139 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7140 | head->extent_op = NULL; |
| 7141 | } |
| 7142 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7143 | /* |
| 7144 | * waiting for the lock here would deadlock. If someone else has it |
| 7145 | * locked they are already in the process of dropping it anyway |
| 7146 | */ |
| 7147 | if (!mutex_trylock(&head->mutex)) |
| 7148 | goto out; |
| 7149 | |
| 7150 | /* |
| 7151 | * at this point we have a head with no other entries. Go |
| 7152 | * ahead and process it. |
| 7153 | */ |
| 7154 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 7155 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7156 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7157 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7158 | |
| 7159 | /* |
| 7160 | * we don't take a ref on the node because we're removing it from the |
| 7161 | * tree, so we just steal the ref the tree was holding. |
| 7162 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7163 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7164 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7165 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7166 | head->processing = 0; |
| 7167 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7168 | spin_unlock(&delayed_refs->lock); |
| 7169 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7170 | BUG_ON(head->extent_op); |
| 7171 | if (head->must_insert_reserved) |
| 7172 | ret = 1; |
| 7173 | |
| 7174 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7175 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7176 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7177 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7178 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7179 | |
| 7180 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7181 | spin_unlock(&delayed_refs->lock); |
| 7182 | return 0; |
| 7183 | } |
| 7184 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7185 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 7186 | struct btrfs_root *root, |
| 7187 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7188 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7189 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7190 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7191 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7192 | int ret; |
| 7193 | |
| 7194 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7195 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, |
| 7196 | buf->start, buf->len, |
| 7197 | parent, |
| 7198 | root->root_key.objectid, |
| 7199 | btrfs_header_level(buf), |
| 7200 | BTRFS_DROP_DELAYED_REF, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7201 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7202 | } |
| 7203 | |
| 7204 | if (!last_ref) |
| 7205 | return; |
| 7206 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7207 | if (btrfs_header_generation(buf) == trans->transid) { |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7208 | struct btrfs_block_group_cache *cache; |
| 7209 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7210 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7211 | ret = check_ref_cleanup(trans, buf->start); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7212 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7213 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7214 | } |
| 7215 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7216 | cache = btrfs_lookup_block_group(fs_info, buf->start); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7217 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7218 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7219 | pin_down_extent(fs_info, cache, buf->start, |
| 7220 | buf->len, 1); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7221 | btrfs_put_block_group(cache); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7222 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7223 | } |
| 7224 | |
| 7225 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 7226 | |
| 7227 | btrfs_add_free_space(cache, buf->start, buf->len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 7228 | btrfs_free_reserved_bytes(cache, buf->len, 0); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7229 | btrfs_put_block_group(cache); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7230 | trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7231 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7232 | } |
| 7233 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7234 | if (pin) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7235 | add_pinned_bytes(fs_info, buf->len, btrfs_header_level(buf), |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7236 | root->root_key.objectid); |
| 7237 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 7238 | /* |
| 7239 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 7240 | * anymore. |
| 7241 | */ |
| 7242 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7243 | } |
| 7244 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7245 | /* Can return -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7246 | int btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 7247 | struct btrfs_fs_info *fs_info, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7248 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7249 | u64 owner, u64 offset) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7250 | { |
| 7251 | int ret; |
| 7252 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 7253 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7254 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7255 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7256 | add_pinned_bytes(fs_info, num_bytes, owner, root_objectid); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7257 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7258 | /* |
| 7259 | * tree log blocks never actually go into the extent allocation |
| 7260 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7261 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7262 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 7263 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7264 | /* unlocks the pinned mutex */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7265 | btrfs_pin_extent(fs_info, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7266 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7267 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7268 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 7269 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7270 | parent, root_objectid, (int)owner, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7271 | BTRFS_DROP_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7272 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7273 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 7274 | num_bytes, |
| 7275 | parent, root_objectid, owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 7276 | offset, 0, |
Jeff Mahoney | fef394f | 2016-12-13 14:39:34 -0500 | [diff] [blame] | 7277 | BTRFS_DROP_DELAYED_REF); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7278 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7279 | return ret; |
| 7280 | } |
| 7281 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7282 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7283 | * when we wait for progress in the block group caching, its because |
| 7284 | * our allocation attempt failed at least once. So, we must sleep |
| 7285 | * and let some progress happen before we try again. |
| 7286 | * |
| 7287 | * This function will sleep at least once waiting for new free space to |
| 7288 | * show up, and then it will check the block group free space numbers |
| 7289 | * for our min num_bytes. Another option is to have it go ahead |
| 7290 | * and look in the rbtree for a free extent of a given size, but this |
| 7291 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7292 | * |
| 7293 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 7294 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7295 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7296 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7297 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 7298 | u64 num_bytes) |
| 7299 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7300 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7301 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7302 | caching_ctl = get_caching_control(cache); |
| 7303 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7304 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7305 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7306 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 7307 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7308 | |
| 7309 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7310 | } |
| 7311 | |
| 7312 | static noinline int |
| 7313 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 7314 | { |
| 7315 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7316 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7317 | |
| 7318 | caching_ctl = get_caching_control(cache); |
| 7319 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7320 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7321 | |
| 7322 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7323 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 7324 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7325 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7326 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7327 | } |
| 7328 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7329 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7330 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7331 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7332 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7333 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7334 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7335 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7336 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7337 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7338 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7339 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7340 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7341 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7342 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7343 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7344 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7345 | } |
| 7346 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7347 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7348 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7349 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7350 | } |
| 7351 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7352 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 7353 | [BTRFS_RAID_RAID10] = "raid10", |
| 7354 | [BTRFS_RAID_RAID1] = "raid1", |
| 7355 | [BTRFS_RAID_DUP] = "dup", |
| 7356 | [BTRFS_RAID_RAID0] = "raid0", |
| 7357 | [BTRFS_RAID_SINGLE] = "single", |
| 7358 | [BTRFS_RAID_RAID5] = "raid5", |
| 7359 | [BTRFS_RAID_RAID6] = "raid6", |
| 7360 | }; |
| 7361 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 7362 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7363 | { |
| 7364 | if (type >= BTRFS_NR_RAID_TYPES) |
| 7365 | return NULL; |
| 7366 | |
| 7367 | return btrfs_raid_type_names[type]; |
| 7368 | } |
| 7369 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7370 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7371 | LOOP_CACHING_NOWAIT = 0, |
| 7372 | LOOP_CACHING_WAIT = 1, |
| 7373 | LOOP_ALLOC_CHUNK = 2, |
| 7374 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7375 | }; |
| 7376 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7377 | static inline void |
| 7378 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 7379 | int delalloc) |
| 7380 | { |
| 7381 | if (delalloc) |
| 7382 | down_read(&cache->data_rwsem); |
| 7383 | } |
| 7384 | |
| 7385 | static inline void |
| 7386 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 7387 | int delalloc) |
| 7388 | { |
| 7389 | btrfs_get_block_group(cache); |
| 7390 | if (delalloc) |
| 7391 | down_read(&cache->data_rwsem); |
| 7392 | } |
| 7393 | |
| 7394 | static struct btrfs_block_group_cache * |
| 7395 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 7396 | struct btrfs_free_cluster *cluster, |
| 7397 | int delalloc) |
| 7398 | { |
Sudip Mukherjee | 89771cc | 2016-02-16 13:32:47 +0530 | [diff] [blame] | 7399 | struct btrfs_block_group_cache *used_bg = NULL; |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7400 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7401 | spin_lock(&cluster->refill_lock); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7402 | while (1) { |
| 7403 | used_bg = cluster->block_group; |
| 7404 | if (!used_bg) |
| 7405 | return NULL; |
| 7406 | |
| 7407 | if (used_bg == block_group) |
| 7408 | return used_bg; |
| 7409 | |
| 7410 | btrfs_get_block_group(used_bg); |
| 7411 | |
| 7412 | if (!delalloc) |
| 7413 | return used_bg; |
| 7414 | |
| 7415 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 7416 | return used_bg; |
| 7417 | |
| 7418 | spin_unlock(&cluster->refill_lock); |
| 7419 | |
Liu Bo | e321f8a | 2016-11-30 16:11:04 -0800 | [diff] [blame] | 7420 | /* We should only have one-level nested. */ |
| 7421 | down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7422 | |
| 7423 | spin_lock(&cluster->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7424 | if (used_bg == cluster->block_group) |
| 7425 | return used_bg; |
| 7426 | |
| 7427 | up_read(&used_bg->data_rwsem); |
| 7428 | btrfs_put_block_group(used_bg); |
| 7429 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7430 | } |
| 7431 | |
| 7432 | static inline void |
| 7433 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 7434 | int delalloc) |
| 7435 | { |
| 7436 | if (delalloc) |
| 7437 | up_read(&cache->data_rwsem); |
| 7438 | btrfs_put_block_group(cache); |
| 7439 | } |
| 7440 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7441 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7442 | * walks the btree of allocated extents and find a hole of a given size. |
| 7443 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7444 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 7445 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7446 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7447 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7448 | * |
| 7449 | * If there is no suitable free space, we will record the max size of |
| 7450 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7451 | */ |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7452 | static noinline int find_free_extent(struct btrfs_fs_info *fs_info, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7453 | u64 ram_bytes, u64 num_bytes, u64 empty_size, |
| 7454 | u64 hint_byte, struct btrfs_key *ins, |
| 7455 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7456 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7457 | int ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7458 | struct btrfs_root *root = fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7459 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7460 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 7461 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7462 | u64 max_extent_size = 0; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7463 | u64 empty_cluster = 0; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7464 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7465 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7466 | int index = __get_raid_index(flags); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7467 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7468 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7469 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7470 | bool have_caching_bg = false; |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7471 | bool orig_have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7472 | bool full_search = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7473 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7474 | WARN_ON(num_bytes < fs_info->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 7475 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7476 | ins->objectid = 0; |
| 7477 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 7478 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7479 | trace_find_free_extent(fs_info, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7480 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7481 | space_info = __find_space_info(fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7482 | if (!space_info) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7483 | btrfs_err(fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7484 | return -ENOSPC; |
| 7485 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7486 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7487 | /* |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7488 | * If our free space is heavily fragmented we may not be able to make |
| 7489 | * big contiguous allocations, so instead of doing the expensive search |
| 7490 | * for free space, simply return ENOSPC with our max_extent_size so we |
| 7491 | * can go ahead and search for a more manageable chunk. |
| 7492 | * |
| 7493 | * If our max_extent_size is large enough for our allocation simply |
| 7494 | * disable clustering since we will likely not be able to find enough |
| 7495 | * space to create a cluster and induce latency trying. |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7496 | */ |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7497 | if (unlikely(space_info->max_extent_size)) { |
| 7498 | spin_lock(&space_info->lock); |
| 7499 | if (space_info->max_extent_size && |
| 7500 | num_bytes > space_info->max_extent_size) { |
| 7501 | ins->offset = space_info->max_extent_size; |
| 7502 | spin_unlock(&space_info->lock); |
| 7503 | return -ENOSPC; |
| 7504 | } else if (space_info->max_extent_size) { |
| 7505 | use_cluster = false; |
| 7506 | } |
| 7507 | spin_unlock(&space_info->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7508 | } |
| 7509 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7510 | last_ptr = fetch_cluster_info(fs_info, space_info, &empty_cluster); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7511 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7512 | spin_lock(&last_ptr->lock); |
| 7513 | if (last_ptr->block_group) |
| 7514 | hint_byte = last_ptr->window_start; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7515 | if (last_ptr->fragmented) { |
| 7516 | /* |
| 7517 | * We still set window_start so we can keep track of the |
| 7518 | * last place we found an allocation to try and save |
| 7519 | * some time. |
| 7520 | */ |
| 7521 | hint_byte = last_ptr->window_start; |
| 7522 | use_cluster = false; |
| 7523 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7524 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7525 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7526 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7527 | search_start = max(search_start, first_logical_byte(fs_info, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7528 | search_start = max(search_start, hint_byte); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7529 | if (search_start == hint_byte) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7530 | block_group = btrfs_lookup_block_group(fs_info, search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7531 | /* |
| 7532 | * we don't want to use the block group if it doesn't match our |
| 7533 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7534 | * |
| 7535 | * However if we are re-searching with an ideal block group |
| 7536 | * 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] | 7537 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7538 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7539 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7540 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7541 | if (list_empty(&block_group->list) || |
| 7542 | block_group->ro) { |
| 7543 | /* |
| 7544 | * someone is removing this block group, |
| 7545 | * we can't jump into the have_block_group |
| 7546 | * target because our list pointers are not |
| 7547 | * valid |
| 7548 | */ |
| 7549 | btrfs_put_block_group(block_group); |
| 7550 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7551 | } else { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7552 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7553 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7554 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7555 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7556 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7557 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7558 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7559 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7560 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7561 | have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7562 | if (index == 0 || index == __get_raid_index(flags)) |
| 7563 | full_search = true; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7564 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7565 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 7566 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7567 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7568 | int cached; |
Chris Mason | 8a1413a | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 7569 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7570 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7571 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7572 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7573 | /* |
| 7574 | * this can happen if we end up cycling through all the |
| 7575 | * raid types, but we want to make sure we only allocate |
| 7576 | * for the proper type. |
| 7577 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7578 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7579 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 7580 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7581 | BTRFS_BLOCK_GROUP_RAID5 | |
| 7582 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7583 | BTRFS_BLOCK_GROUP_RAID10; |
| 7584 | |
| 7585 | /* |
| 7586 | * if they asked for extra copies and this block group |
| 7587 | * doesn't provide them, bail. This does allow us to |
| 7588 | * fill raid0 from raid1. |
| 7589 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7590 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7591 | goto loop; |
| 7592 | } |
| 7593 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7594 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 7595 | cached = block_group_cache_done(block_group); |
| 7596 | if (unlikely(!cached)) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7597 | have_caching_bg = true; |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 7598 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 7599 | BUG_ON(ret < 0); |
| 7600 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7601 | } |
| 7602 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7603 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 7604 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7605 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7606 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7607 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7608 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7609 | * Ok we want to try and use the cluster allocator, so |
| 7610 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7611 | */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7612 | if (last_ptr && use_cluster) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7613 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7614 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7615 | /* |
| 7616 | * the refill lock keeps out other |
| 7617 | * people trying to start a new cluster |
| 7618 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7619 | used_block_group = btrfs_lock_cluster(block_group, |
| 7620 | last_ptr, |
| 7621 | delalloc); |
| 7622 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7623 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7624 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7625 | if (used_block_group != block_group && |
| 7626 | (used_block_group->ro || |
| 7627 | !block_group_bits(used_block_group, flags))) |
| 7628 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7629 | |
| 7630 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7631 | last_ptr, |
| 7632 | num_bytes, |
| 7633 | used_block_group->key.objectid, |
| 7634 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7635 | if (offset) { |
| 7636 | /* we have a block, we're done */ |
| 7637 | spin_unlock(&last_ptr->refill_lock); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7638 | trace_btrfs_reserve_extent_cluster(fs_info, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 7639 | used_block_group, |
| 7640 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7641 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7642 | btrfs_release_block_group(block_group, |
| 7643 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7644 | block_group = used_block_group; |
| 7645 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7646 | goto checks; |
| 7647 | } |
| 7648 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7649 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7650 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7651 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 7652 | * set up a new clusters, so lets just skip it |
| 7653 | * and let the allocator find whatever block |
| 7654 | * it can find. If we reach this point, we |
| 7655 | * will have tried the cluster allocator |
| 7656 | * plenty of times and not have found |
| 7657 | * anything, so we are likely way too |
| 7658 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7659 | * anything. |
| 7660 | * |
| 7661 | * However, if the cluster is taken from the |
| 7662 | * current block group, release the cluster |
| 7663 | * first, so that we stand a better chance of |
| 7664 | * succeeding in the unclustered |
| 7665 | * allocation. */ |
| 7666 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7667 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7668 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7669 | btrfs_release_block_group(used_block_group, |
| 7670 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7671 | goto unclustered_alloc; |
| 7672 | } |
| 7673 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7674 | /* |
| 7675 | * this cluster didn't work out, free it and |
| 7676 | * start over |
| 7677 | */ |
| 7678 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 7679 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7680 | if (used_block_group != block_group) |
| 7681 | btrfs_release_block_group(used_block_group, |
| 7682 | delalloc); |
| 7683 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7684 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 7685 | spin_unlock(&last_ptr->refill_lock); |
| 7686 | goto unclustered_alloc; |
| 7687 | } |
| 7688 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7689 | aligned_cluster = max_t(unsigned long, |
| 7690 | empty_cluster + empty_size, |
| 7691 | block_group->full_stripe_len); |
| 7692 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7693 | /* allocate a cluster in this block group */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7694 | ret = btrfs_find_space_cluster(fs_info, block_group, |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7695 | last_ptr, search_start, |
| 7696 | num_bytes, |
| 7697 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7698 | if (ret == 0) { |
| 7699 | /* |
| 7700 | * now pull our allocation out of this |
| 7701 | * cluster |
| 7702 | */ |
| 7703 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7704 | last_ptr, |
| 7705 | num_bytes, |
| 7706 | search_start, |
| 7707 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7708 | if (offset) { |
| 7709 | /* we found one, proceed */ |
| 7710 | spin_unlock(&last_ptr->refill_lock); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7711 | trace_btrfs_reserve_extent_cluster(fs_info, |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7712 | block_group, search_start, |
| 7713 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7714 | goto checks; |
| 7715 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7716 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 7717 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7718 | spin_unlock(&last_ptr->refill_lock); |
| 7719 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7720 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7721 | wait_block_group_cache_progress(block_group, |
| 7722 | num_bytes + empty_cluster + empty_size); |
| 7723 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7724 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7725 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7726 | /* |
| 7727 | * at this point we either didn't find a cluster |
| 7728 | * or we weren't able to allocate a block from our |
| 7729 | * cluster. Free the cluster we've been trying |
| 7730 | * to use, and go to the next block group |
| 7731 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7732 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7733 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7734 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7735 | } |
| 7736 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7737 | unclustered_alloc: |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7738 | /* |
| 7739 | * We are doing an unclustered alloc, set the fragmented flag so |
| 7740 | * we don't bother trying to setup a cluster again until we get |
| 7741 | * more space. |
| 7742 | */ |
| 7743 | if (unlikely(last_ptr)) { |
| 7744 | spin_lock(&last_ptr->lock); |
| 7745 | last_ptr->fragmented = 1; |
| 7746 | spin_unlock(&last_ptr->lock); |
| 7747 | } |
Liu Bo | 0c9b36e | 2017-02-13 15:42:30 -0800 | [diff] [blame] | 7748 | if (cached) { |
| 7749 | struct btrfs_free_space_ctl *ctl = |
| 7750 | block_group->free_space_ctl; |
| 7751 | |
| 7752 | spin_lock(&ctl->tree_lock); |
| 7753 | if (ctl->free_space < |
| 7754 | num_bytes + empty_cluster + empty_size) { |
| 7755 | if (ctl->free_space > max_extent_size) |
| 7756 | max_extent_size = ctl->free_space; |
| 7757 | spin_unlock(&ctl->tree_lock); |
| 7758 | goto loop; |
| 7759 | } |
| 7760 | spin_unlock(&ctl->tree_lock); |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7761 | } |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7762 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7763 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7764 | num_bytes, empty_size, |
| 7765 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7766 | /* |
| 7767 | * If we didn't find a chunk, and we haven't failed on this |
| 7768 | * block group before, and this block group is in the middle of |
| 7769 | * caching and we are ok with waiting, then go ahead and wait |
| 7770 | * for progress to be made, and set failed_alloc to true. |
| 7771 | * |
| 7772 | * If failed_alloc is true then we've already waited on this |
| 7773 | * block group once and should move on to the next block group. |
| 7774 | */ |
| 7775 | if (!offset && !failed_alloc && !cached && |
| 7776 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7777 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7778 | num_bytes + empty_size); |
| 7779 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7780 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7781 | } else if (!offset) { |
| 7782 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7783 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7784 | checks: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7785 | search_start = ALIGN(offset, fs_info->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 7786 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7787 | /* move on to the next group */ |
| 7788 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7789 | block_group->key.objectid + block_group->key.offset) { |
| 7790 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7791 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7792 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7793 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7794 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7795 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7796 | search_start - offset); |
| 7797 | BUG_ON(offset > search_start); |
| 7798 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7799 | ret = btrfs_add_reserved_bytes(block_group, ram_bytes, |
| 7800 | num_bytes, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7801 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7802 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7803 | goto loop; |
| 7804 | } |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7805 | btrfs_inc_block_group_reservations(block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7806 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7807 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7808 | ins->objectid = search_start; |
| 7809 | ins->offset = num_bytes; |
| 7810 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7811 | trace_btrfs_reserve_extent(fs_info, block_group, |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7812 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7813 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7814 | break; |
| 7815 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7816 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7817 | failed_alloc = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7818 | BUG_ON(index != get_block_group_index(block_group)); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7819 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7820 | } |
| 7821 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 7822 | |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7823 | if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg |
| 7824 | && !orig_have_caching_bg) |
| 7825 | orig_have_caching_bg = true; |
| 7826 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7827 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 7828 | goto search; |
| 7829 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7830 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 7831 | goto search; |
| 7832 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7833 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7834 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 7835 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7836 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 7837 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 7838 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 7839 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7840 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7841 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7842 | index = 0; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7843 | if (loop == LOOP_CACHING_NOWAIT) { |
| 7844 | /* |
| 7845 | * We want to skip the LOOP_CACHING_WAIT step if we |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 7846 | * don't have any uncached bgs and we've already done a |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7847 | * full search through. |
| 7848 | */ |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7849 | if (orig_have_caching_bg || !full_search) |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7850 | loop = LOOP_CACHING_WAIT; |
| 7851 | else |
| 7852 | loop = LOOP_ALLOC_CHUNK; |
| 7853 | } else { |
| 7854 | loop++; |
| 7855 | } |
| 7856 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7857 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7858 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7859 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7860 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7861 | trans = current->journal_info; |
| 7862 | if (trans) |
| 7863 | exist = 1; |
| 7864 | else |
| 7865 | trans = btrfs_join_transaction(root); |
| 7866 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7867 | if (IS_ERR(trans)) { |
| 7868 | ret = PTR_ERR(trans); |
| 7869 | goto out; |
| 7870 | } |
| 7871 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7872 | ret = do_chunk_alloc(trans, fs_info, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7873 | CHUNK_ALLOC_FORCE); |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7874 | |
| 7875 | /* |
| 7876 | * If we can't allocate a new chunk we've already looped |
| 7877 | * through at least once, move on to the NO_EMPTY_SIZE |
| 7878 | * case. |
| 7879 | */ |
| 7880 | if (ret == -ENOSPC) |
| 7881 | loop = LOOP_NO_EMPTY_SIZE; |
| 7882 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7883 | /* |
| 7884 | * Do not bail out on ENOSPC since we |
| 7885 | * can do more things. |
| 7886 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7887 | if (ret < 0 && ret != -ENOSPC) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7888 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7889 | else |
| 7890 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7891 | if (!exist) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 7892 | btrfs_end_transaction(trans); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7893 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7894 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7895 | } |
| 7896 | |
| 7897 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7898 | /* |
| 7899 | * Don't loop again if we already have no empty_size and |
| 7900 | * no empty_cluster. |
| 7901 | */ |
| 7902 | if (empty_size == 0 && |
| 7903 | empty_cluster == 0) { |
| 7904 | ret = -ENOSPC; |
| 7905 | goto out; |
| 7906 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7907 | empty_size = 0; |
| 7908 | empty_cluster = 0; |
| 7909 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7910 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7911 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7912 | } else if (!ins->objectid) { |
| 7913 | ret = -ENOSPC; |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7914 | } else if (ins->objectid) { |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7915 | if (!use_cluster && last_ptr) { |
| 7916 | spin_lock(&last_ptr->lock); |
| 7917 | last_ptr->window_start = ins->objectid; |
| 7918 | spin_unlock(&last_ptr->lock); |
| 7919 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7920 | ret = 0; |
| 7921 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7922 | out: |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7923 | if (ret == -ENOSPC) { |
| 7924 | spin_lock(&space_info->lock); |
| 7925 | space_info->max_extent_size = max_extent_size; |
| 7926 | spin_unlock(&space_info->lock); |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7927 | ins->offset = max_extent_size; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7928 | } |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 7929 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7930 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7931 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7932 | static void dump_space_info(struct btrfs_fs_info *fs_info, |
| 7933 | struct btrfs_space_info *info, u64 bytes, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7934 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7935 | { |
| 7936 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7937 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7938 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7939 | spin_lock(&info->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7940 | btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull", |
| 7941 | info->flags, |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 7942 | info->total_bytes - btrfs_space_info_used(info, true), |
| 7943 | info->full ? "" : "not "); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7944 | btrfs_info(fs_info, |
| 7945 | "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu", |
| 7946 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 7947 | info->bytes_reserved, info->bytes_may_use, |
| 7948 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7949 | spin_unlock(&info->lock); |
| 7950 | |
| 7951 | if (!dump_block_groups) |
| 7952 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7953 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7954 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7955 | again: |
| 7956 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7957 | spin_lock(&cache->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7958 | btrfs_info(fs_info, |
| 7959 | "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s", |
| 7960 | cache->key.objectid, cache->key.offset, |
| 7961 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 7962 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7963 | btrfs_dump_free_space(cache, bytes); |
| 7964 | spin_unlock(&cache->lock); |
| 7965 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7966 | if (++index < BTRFS_NR_RAID_TYPES) |
| 7967 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7968 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7969 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 7970 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7971 | int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7972 | u64 num_bytes, u64 min_alloc_size, |
| 7973 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7974 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7975 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7976 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 36af4e0 | 2015-09-25 16:13:11 -0400 | [diff] [blame] | 7977 | bool final_tried = num_bytes == min_alloc_size; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7978 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7979 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7980 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 7981 | flags = get_alloc_profile_by_root(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 7982 | again: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7983 | WARN_ON(num_bytes < fs_info->sectorsize); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7984 | ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7985 | hint_byte, ins, flags, delalloc); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7986 | if (!ret && !is_data) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7987 | btrfs_dec_block_group_reservations(fs_info, ins->objectid); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7988 | } else if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7989 | if (!final_tried && ins->offset) { |
| 7990 | num_bytes = min(num_bytes >> 1, ins->offset); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 7991 | num_bytes = round_down(num_bytes, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7992 | fs_info->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7993 | num_bytes = max(num_bytes, min_alloc_size); |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7994 | ram_bytes = num_bytes; |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7995 | if (num_bytes == min_alloc_size) |
| 7996 | final_tried = true; |
| 7997 | goto again; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7998 | } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7999 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8000 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8001 | sinfo = __find_space_info(fs_info, flags); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8002 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8003 | "allocation failed flags %llu, wanted %llu", |
| 8004 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 8005 | if (sinfo) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8006 | dump_space_info(fs_info, sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 8007 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8008 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8009 | |
| 8010 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8011 | } |
| 8012 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8013 | static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8014 | u64 start, u64 len, |
| 8015 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8016 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8017 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8018 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8019 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8020 | cache = btrfs_lookup_block_group(fs_info, start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8021 | if (!cache) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8022 | btrfs_err(fs_info, "Unable to find block group for %llu", |
| 8023 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8024 | return -ENOSPC; |
| 8025 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8026 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8027 | if (pin) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8028 | pin_down_extent(fs_info, cache, start, len, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8029 | else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8030 | if (btrfs_test_opt(fs_info, DISCARD)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8031 | ret = btrfs_discard_extent(fs_info, start, len, NULL); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8032 | btrfs_add_free_space(cache, start, len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 8033 | btrfs_free_reserved_bytes(cache, len, delalloc); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8034 | trace_btrfs_reserved_extent_free(fs_info, start, len); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8035 | } |
Dongsheng Yang | 3119321 | 2014-12-12 16:44:35 +0800 | [diff] [blame] | 8036 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8037 | btrfs_put_block_group(cache); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8038 | return ret; |
| 8039 | } |
| 8040 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8041 | int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8042 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8043 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8044 | return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8045 | } |
| 8046 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8047 | 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] | 8048 | u64 start, u64 len) |
| 8049 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8050 | return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8051 | } |
| 8052 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8053 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8054 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8055 | u64 parent, u64 root_objectid, |
| 8056 | u64 flags, u64 owner, u64 offset, |
| 8057 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8058 | { |
| 8059 | int ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8060 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8061 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8062 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8063 | struct extent_buffer *leaf; |
| 8064 | int type; |
| 8065 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 8066 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8067 | if (parent > 0) |
| 8068 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 8069 | else |
| 8070 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 8071 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8072 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8073 | |
| 8074 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8075 | if (!path) |
| 8076 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8077 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 8078 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8079 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8080 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8081 | if (ret) { |
| 8082 | btrfs_free_path(path); |
| 8083 | return ret; |
| 8084 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8085 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8086 | leaf = path->nodes[0]; |
| 8087 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8088 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8089 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 8090 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8091 | btrfs_set_extent_flags(leaf, extent_item, |
| 8092 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8093 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8094 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 8095 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 8096 | if (parent > 0) { |
| 8097 | struct btrfs_shared_data_ref *ref; |
| 8098 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 8099 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8100 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 8101 | } else { |
| 8102 | struct btrfs_extent_data_ref *ref; |
| 8103 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 8104 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 8105 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 8106 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 8107 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 8108 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8109 | |
| 8110 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8111 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 8112 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8113 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8114 | ins->offset); |
| 8115 | if (ret) |
| 8116 | return ret; |
| 8117 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 8118 | ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8119 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8120 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8121 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 8122 | BUG(); |
| 8123 | } |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8124 | trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8125 | return ret; |
| 8126 | } |
| 8127 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8128 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8129 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8130 | u64 parent, u64 root_objectid, |
| 8131 | u64 flags, struct btrfs_disk_key *key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8132 | int level, struct btrfs_key *ins) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8133 | { |
| 8134 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8135 | struct btrfs_extent_item *extent_item; |
| 8136 | struct btrfs_tree_block_info *block_info; |
| 8137 | struct btrfs_extent_inline_ref *iref; |
| 8138 | struct btrfs_path *path; |
| 8139 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8140 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 8141 | u64 num_bytes = ins->offset; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8142 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8143 | |
| 8144 | if (!skinny_metadata) |
| 8145 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8146 | |
| 8147 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8148 | if (!path) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8149 | btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8150 | fs_info->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8151 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8152 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8153 | |
| 8154 | path->leave_spinning = 1; |
| 8155 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8156 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8157 | if (ret) { |
Chris Mason | dd82525 | 2015-04-01 08:36:05 -0700 | [diff] [blame] | 8158 | btrfs_free_path(path); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8159 | btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8160 | fs_info->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8161 | return ret; |
| 8162 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8163 | |
| 8164 | leaf = path->nodes[0]; |
| 8165 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 8166 | struct btrfs_extent_item); |
| 8167 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 8168 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8169 | btrfs_set_extent_flags(leaf, extent_item, |
| 8170 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8171 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8172 | if (skinny_metadata) { |
| 8173 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8174 | num_bytes = fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8175 | } else { |
| 8176 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 8177 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 8178 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 8179 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 8180 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8181 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8182 | if (parent > 0) { |
| 8183 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 8184 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8185 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 8186 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8187 | } else { |
| 8188 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8189 | BTRFS_TREE_BLOCK_REF_KEY); |
| 8190 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 8191 | } |
| 8192 | |
| 8193 | btrfs_mark_buffer_dirty(leaf); |
| 8194 | btrfs_free_path(path); |
| 8195 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8196 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8197 | num_bytes); |
| 8198 | if (ret) |
| 8199 | return ret; |
| 8200 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 8201 | ret = update_block_group(trans, fs_info, ins->objectid, |
| 8202 | fs_info->nodesize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8203 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8204 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8205 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8206 | BUG(); |
| 8207 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 8208 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8209 | trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8210 | fs_info->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8211 | return ret; |
| 8212 | } |
| 8213 | |
| 8214 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8215 | u64 root_objectid, u64 owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 8216 | u64 offset, u64 ram_bytes, |
| 8217 | struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8218 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8219 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8220 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 8221 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8222 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 8223 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8224 | ret = btrfs_add_delayed_data_ref(fs_info, trans, ins->objectid, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8225 | ins->offset, 0, |
| 8226 | root_objectid, owner, offset, |
Jeff Mahoney | fef394f | 2016-12-13 14:39:34 -0500 | [diff] [blame] | 8227 | ram_bytes, BTRFS_ADD_DELAYED_EXTENT); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8228 | return ret; |
| 8229 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8230 | |
| 8231 | /* |
| 8232 | * this is used by the tree logging recovery code. It records that |
| 8233 | * an extent has been allocated and makes sure to clear the free |
| 8234 | * space cache bits as well |
| 8235 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8236 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8237 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8238 | u64 root_objectid, u64 owner, u64 offset, |
| 8239 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8240 | { |
| 8241 | int ret; |
| 8242 | struct btrfs_block_group_cache *block_group; |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8243 | struct btrfs_space_info *space_info; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8244 | |
| 8245 | /* |
| 8246 | * 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] | 8247 | * need to do the exclude dance if this fs isn't mixed. |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8248 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8249 | if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8250 | ret = __exclude_logged_extent(fs_info, ins->objectid, |
| 8251 | ins->offset); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8252 | if (ret) |
| 8253 | return ret; |
| 8254 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8255 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8256 | block_group = btrfs_lookup_block_group(fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8257 | if (!block_group) |
| 8258 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8259 | |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8260 | space_info = block_group->space_info; |
| 8261 | spin_lock(&space_info->lock); |
| 8262 | spin_lock(&block_group->lock); |
| 8263 | space_info->bytes_reserved += ins->offset; |
| 8264 | block_group->reserved += ins->offset; |
| 8265 | spin_unlock(&block_group->lock); |
| 8266 | spin_unlock(&space_info->lock); |
| 8267 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8268 | ret = alloc_reserved_file_extent(trans, fs_info, 0, root_objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8269 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 8270 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8271 | return ret; |
| 8272 | } |
| 8273 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 8274 | static struct extent_buffer * |
| 8275 | 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] | 8276 | u64 bytenr, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8277 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8278 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8279 | struct extent_buffer *buf; |
| 8280 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8281 | buf = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8282 | if (IS_ERR(buf)) |
| 8283 | return buf; |
| 8284 | |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8285 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 8286 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8287 | btrfs_tree_lock(buf); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 8288 | clean_tree_block(fs_info, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 8289 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8290 | |
| 8291 | btrfs_set_lock_blocking(buf); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 8292 | set_extent_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8293 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8294 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8295 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8296 | /* |
| 8297 | * we allow two log transactions at a time, use different |
| 8298 | * EXENT bit to differentiate dirty pages. |
| 8299 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8300 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8301 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 8302 | buf->start + buf->len - 1, GFP_NOFS); |
| 8303 | else |
| 8304 | set_extent_new(&root->dirty_log_pages, buf->start, |
David Sterba | 3744dbe | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 8305 | buf->start + buf->len - 1); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8306 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8307 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8308 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 8309 | buf->start + buf->len - 1, GFP_NOFS); |
| 8310 | } |
Jeff Mahoney | 64c1292 | 2016-06-08 00:36:38 -0400 | [diff] [blame] | 8311 | trans->dirty = true; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8312 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8313 | return buf; |
| 8314 | } |
| 8315 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8316 | static struct btrfs_block_rsv * |
| 8317 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 8318 | struct btrfs_root *root, u32 blocksize) |
| 8319 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8320 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8321 | struct btrfs_block_rsv *block_rsv; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8322 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8323 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8324 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8325 | |
| 8326 | block_rsv = get_block_rsv(trans, root); |
| 8327 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8328 | if (unlikely(block_rsv->size == 0)) |
| 8329 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8330 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8331 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 8332 | if (!ret) |
| 8333 | return block_rsv; |
| 8334 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8335 | if (block_rsv->failfast) |
| 8336 | return ERR_PTR(ret); |
| 8337 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8338 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 8339 | global_updated = true; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8340 | update_global_block_rsv(fs_info); |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8341 | goto again; |
| 8342 | } |
| 8343 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8344 | if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8345 | static DEFINE_RATELIMIT_STATE(_rs, |
| 8346 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 8347 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 8348 | if (__ratelimit(&_rs)) |
| 8349 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8350 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8351 | } |
| 8352 | try_reserve: |
| 8353 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 8354 | BTRFS_RESERVE_NO_FLUSH); |
| 8355 | if (!ret) |
| 8356 | return block_rsv; |
| 8357 | /* |
| 8358 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8359 | * the global reserve if its space type is the same as the global |
| 8360 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8361 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8362 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 8363 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8364 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 8365 | if (!ret) |
| 8366 | return global_rsv; |
| 8367 | } |
| 8368 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8369 | } |
| 8370 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8371 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 8372 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8373 | { |
| 8374 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8375 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8376 | } |
| 8377 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8378 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8379 | * 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] | 8380 | * returns the tree buffer or an ERR_PTR on error. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8381 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 8382 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 8383 | struct btrfs_root *root, |
| 8384 | u64 parent, u64 root_objectid, |
| 8385 | const struct btrfs_disk_key *key, |
| 8386 | int level, u64 hint, |
| 8387 | u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8388 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8389 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 8390 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8391 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8392 | struct extent_buffer *buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8393 | struct btrfs_delayed_extent_op *extent_op; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8394 | u64 flags = 0; |
| 8395 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8396 | u32 blocksize = fs_info->nodesize; |
| 8397 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8398 | |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8399 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8400 | if (btrfs_is_testing(fs_info)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8401 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8402 | level); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8403 | if (!IS_ERR(buf)) |
| 8404 | root->alloc_bytenr += blocksize; |
| 8405 | return buf; |
| 8406 | } |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8407 | #endif |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 8408 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8409 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 8410 | if (IS_ERR(block_rsv)) |
| 8411 | return ERR_CAST(block_rsv); |
| 8412 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 8413 | ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8414 | empty_size, hint, &ins, 0, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8415 | if (ret) |
| 8416 | goto out_unuse; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 8417 | |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8418 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, level); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8419 | if (IS_ERR(buf)) { |
| 8420 | ret = PTR_ERR(buf); |
| 8421 | goto out_free_reserved; |
| 8422 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8423 | |
| 8424 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 8425 | if (parent == 0) |
| 8426 | parent = ins.objectid; |
| 8427 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8428 | } else |
| 8429 | BUG_ON(parent > 0); |
| 8430 | |
| 8431 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 8432 | extent_op = btrfs_alloc_delayed_extent_op(); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8433 | if (!extent_op) { |
| 8434 | ret = -ENOMEM; |
| 8435 | goto out_free_buf; |
| 8436 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8437 | if (key) |
| 8438 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 8439 | else |
| 8440 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 8441 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 8442 | extent_op->update_key = skinny_metadata ? false : true; |
| 8443 | extent_op->update_flags = true; |
| 8444 | extent_op->is_data = false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8445 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8446 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8447 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8448 | ins.objectid, ins.offset, |
| 8449 | parent, root_objectid, level, |
| 8450 | BTRFS_ADD_DELAYED_EXTENT, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8451 | extent_op); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8452 | if (ret) |
| 8453 | goto out_free_delayed; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8454 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8455 | return buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8456 | |
| 8457 | out_free_delayed: |
| 8458 | btrfs_free_delayed_extent_op(extent_op); |
| 8459 | out_free_buf: |
| 8460 | free_extent_buffer(buf); |
| 8461 | out_free_reserved: |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8462 | btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8463 | out_unuse: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8464 | unuse_block_rsv(fs_info, block_rsv, blocksize); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8465 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8466 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 8467 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8468 | struct walk_control { |
| 8469 | u64 refs[BTRFS_MAX_LEVEL]; |
| 8470 | u64 flags[BTRFS_MAX_LEVEL]; |
| 8471 | struct btrfs_key update_progress; |
| 8472 | int stage; |
| 8473 | int level; |
| 8474 | int shared_level; |
| 8475 | int update_ref; |
| 8476 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8477 | int reada_slot; |
| 8478 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8479 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8480 | }; |
| 8481 | |
| 8482 | #define DROP_REFERENCE 1 |
| 8483 | #define UPDATE_BACKREF 2 |
| 8484 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8485 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 8486 | struct btrfs_root *root, |
| 8487 | struct walk_control *wc, |
| 8488 | struct btrfs_path *path) |
| 8489 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8490 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8491 | u64 bytenr; |
| 8492 | u64 generation; |
| 8493 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8494 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8495 | u32 nritems; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8496 | struct btrfs_key key; |
| 8497 | struct extent_buffer *eb; |
| 8498 | int ret; |
| 8499 | int slot; |
| 8500 | int nread = 0; |
| 8501 | |
| 8502 | if (path->slots[wc->level] < wc->reada_slot) { |
| 8503 | wc->reada_count = wc->reada_count * 2 / 3; |
| 8504 | wc->reada_count = max(wc->reada_count, 2); |
| 8505 | } else { |
| 8506 | wc->reada_count = wc->reada_count * 3 / 2; |
| 8507 | wc->reada_count = min_t(int, wc->reada_count, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8508 | BTRFS_NODEPTRS_PER_BLOCK(fs_info)); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8509 | } |
| 8510 | |
| 8511 | eb = path->nodes[wc->level]; |
| 8512 | nritems = btrfs_header_nritems(eb); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8513 | |
| 8514 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 8515 | if (nread >= wc->reada_count) |
| 8516 | break; |
| 8517 | |
| 8518 | cond_resched(); |
| 8519 | bytenr = btrfs_node_blockptr(eb, slot); |
| 8520 | generation = btrfs_node_ptr_generation(eb, slot); |
| 8521 | |
| 8522 | if (slot == path->slots[wc->level]) |
| 8523 | goto reada; |
| 8524 | |
| 8525 | if (wc->stage == UPDATE_BACKREF && |
| 8526 | generation <= root->root_key.offset) |
| 8527 | continue; |
| 8528 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8529 | /* 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] | 8530 | ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8531 | wc->level - 1, 1, &refs, |
| 8532 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8533 | /* We don't care about errors in readahead. */ |
| 8534 | if (ret < 0) |
| 8535 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8536 | BUG_ON(refs == 0); |
| 8537 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8538 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8539 | if (refs == 1) |
| 8540 | goto reada; |
| 8541 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8542 | if (wc->level == 1 && |
| 8543 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8544 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8545 | if (!wc->update_ref || |
| 8546 | generation <= root->root_key.offset) |
| 8547 | continue; |
| 8548 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 8549 | ret = btrfs_comp_cpu_keys(&key, |
| 8550 | &wc->update_progress); |
| 8551 | if (ret < 0) |
| 8552 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8553 | } else { |
| 8554 | if (wc->level == 1 && |
| 8555 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8556 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8557 | } |
| 8558 | reada: |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8559 | readahead_tree_block(fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8560 | nread++; |
| 8561 | } |
| 8562 | wc->reada_slot = slot; |
| 8563 | } |
| 8564 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8565 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8566 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8567 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8568 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 8569 | * back refs for pointers in the block. |
| 8570 | * |
| 8571 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8572 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8573 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 8574 | struct btrfs_root *root, |
| 8575 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8576 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8577 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8578 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8579 | int level = wc->level; |
| 8580 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8581 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8582 | int ret; |
| 8583 | |
| 8584 | if (wc->stage == UPDATE_BACKREF && |
| 8585 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 8586 | return 1; |
| 8587 | |
| 8588 | /* |
| 8589 | * when reference count of tree block is 1, it won't increase |
| 8590 | * again. once full backref flag is set, we never clear it. |
| 8591 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8592 | if (lookup_info && |
| 8593 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 8594 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8595 | BUG_ON(!path->locks[level]); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8596 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8597 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8598 | &wc->refs[level], |
| 8599 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8600 | BUG_ON(ret == -ENOMEM); |
| 8601 | if (ret) |
| 8602 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8603 | BUG_ON(wc->refs[level] == 0); |
| 8604 | } |
| 8605 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8606 | if (wc->stage == DROP_REFERENCE) { |
| 8607 | if (wc->refs[level] > 1) |
| 8608 | return 1; |
| 8609 | |
| 8610 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8611 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8612 | path->locks[level] = 0; |
| 8613 | } |
| 8614 | return 0; |
| 8615 | } |
| 8616 | |
| 8617 | /* wc->stage == UPDATE_BACKREF */ |
| 8618 | if (!(wc->flags[level] & flag)) { |
| 8619 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8620 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8621 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8622 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8623 | BUG_ON(ret); /* -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8624 | ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8625 | eb->len, flag, |
| 8626 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8627 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8628 | wc->flags[level] |= flag; |
| 8629 | } |
| 8630 | |
| 8631 | /* |
| 8632 | * the block is shared by multiple trees, so it's not good to |
| 8633 | * keep the tree lock |
| 8634 | */ |
| 8635 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8636 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8637 | path->locks[level] = 0; |
| 8638 | } |
| 8639 | return 0; |
| 8640 | } |
| 8641 | |
| 8642 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8643 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8644 | * |
| 8645 | * when wc->stage == DROP_REFERENCE, this function checks |
| 8646 | * reference count of the block pointed to. if the block |
| 8647 | * is shared and we need update back refs for the subtree |
| 8648 | * rooted at the block, this function changes wc->stage to |
| 8649 | * UPDATE_BACKREF. if the block is shared and there is no |
| 8650 | * need to update back, this function drops the reference |
| 8651 | * to the block. |
| 8652 | * |
| 8653 | * NOTE: return value 1 means we should stop walking down. |
| 8654 | */ |
| 8655 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 8656 | struct btrfs_root *root, |
| 8657 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8658 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8659 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8660 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8661 | u64 bytenr; |
| 8662 | u64 generation; |
| 8663 | u64 parent; |
| 8664 | u32 blocksize; |
| 8665 | struct btrfs_key key; |
| 8666 | struct extent_buffer *next; |
| 8667 | int level = wc->level; |
| 8668 | int reada = 0; |
| 8669 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8670 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8671 | |
| 8672 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 8673 | path->slots[level]); |
| 8674 | /* |
| 8675 | * if the lower level block was created before the snapshot |
| 8676 | * was created, we know there is no need to update back refs |
| 8677 | * for the subtree |
| 8678 | */ |
| 8679 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8680 | generation <= root->root_key.offset) { |
| 8681 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8682 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8683 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8684 | |
| 8685 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8686 | blocksize = fs_info->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8687 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8688 | next = find_extent_buffer(fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8689 | if (!next) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8690 | next = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8691 | if (IS_ERR(next)) |
| 8692 | return PTR_ERR(next); |
| 8693 | |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 8694 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 8695 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8696 | reada = 1; |
| 8697 | } |
| 8698 | btrfs_tree_lock(next); |
| 8699 | btrfs_set_lock_blocking(next); |
| 8700 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8701 | ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8702 | &wc->refs[level - 1], |
| 8703 | &wc->flags[level - 1]); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8704 | if (ret < 0) |
| 8705 | goto out_unlock; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8706 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8707 | if (unlikely(wc->refs[level - 1] == 0)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8708 | btrfs_err(fs_info, "Missing references."); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8709 | ret = -EIO; |
| 8710 | goto out_unlock; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8711 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8712 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8713 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8714 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8715 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8716 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8717 | if (level == 1 && |
| 8718 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8719 | goto skip; |
| 8720 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8721 | if (!wc->update_ref || |
| 8722 | generation <= root->root_key.offset) |
| 8723 | goto skip; |
| 8724 | |
| 8725 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 8726 | path->slots[level]); |
| 8727 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 8728 | if (ret < 0) |
| 8729 | goto skip; |
| 8730 | |
| 8731 | wc->stage = UPDATE_BACKREF; |
| 8732 | wc->shared_level = level - 1; |
| 8733 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8734 | } else { |
| 8735 | if (level == 1 && |
| 8736 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8737 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8738 | } |
| 8739 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 8740 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8741 | btrfs_tree_unlock(next); |
| 8742 | free_extent_buffer(next); |
| 8743 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8744 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8745 | } |
| 8746 | |
| 8747 | if (!next) { |
| 8748 | if (reada && level == 1) |
| 8749 | reada_walk_down(trans, root, wc, path); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8750 | next = read_tree_block(fs_info, bytenr, generation); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8751 | if (IS_ERR(next)) { |
| 8752 | return PTR_ERR(next); |
| 8753 | } else if (!extent_buffer_uptodate(next)) { |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8754 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 8755 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8756 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8757 | btrfs_tree_lock(next); |
| 8758 | btrfs_set_lock_blocking(next); |
| 8759 | } |
| 8760 | |
| 8761 | level--; |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8762 | ASSERT(level == btrfs_header_level(next)); |
| 8763 | if (level != btrfs_header_level(next)) { |
| 8764 | btrfs_err(root->fs_info, "mismatched level"); |
| 8765 | ret = -EIO; |
| 8766 | goto out_unlock; |
| 8767 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8768 | path->nodes[level] = next; |
| 8769 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8770 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8771 | wc->level = level; |
| 8772 | if (wc->level == 1) |
| 8773 | wc->reada_slot = 0; |
| 8774 | return 0; |
| 8775 | skip: |
| 8776 | wc->refs[level - 1] = 0; |
| 8777 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8778 | if (wc->stage == DROP_REFERENCE) { |
| 8779 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 8780 | parent = path->nodes[level]->start; |
| 8781 | } else { |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8782 | ASSERT(root->root_key.objectid == |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8783 | btrfs_header_owner(path->nodes[level])); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8784 | if (root->root_key.objectid != |
| 8785 | btrfs_header_owner(path->nodes[level])) { |
| 8786 | btrfs_err(root->fs_info, |
| 8787 | "mismatched block owner"); |
| 8788 | ret = -EIO; |
| 8789 | goto out_unlock; |
| 8790 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8791 | parent = 0; |
| 8792 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8793 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8794 | if (need_account) { |
Qu Wenruo | 33d1f05 | 2016-10-18 09:31:28 +0800 | [diff] [blame] | 8795 | ret = btrfs_qgroup_trace_subtree(trans, root, next, |
| 8796 | generation, level - 1); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8797 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8798 | btrfs_err_rl(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8799 | "Error %d accounting shared subtree. Quota is out of sync, rescan required.", |
| 8800 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8801 | } |
| 8802 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8803 | ret = btrfs_free_extent(trans, fs_info, bytenr, blocksize, |
| 8804 | parent, root->root_key.objectid, |
| 8805 | level - 1, 0); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8806 | if (ret) |
| 8807 | goto out_unlock; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8808 | } |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8809 | |
| 8810 | *lookup_info = 1; |
| 8811 | ret = 1; |
| 8812 | |
| 8813 | out_unlock: |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8814 | btrfs_tree_unlock(next); |
| 8815 | free_extent_buffer(next); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8816 | |
| 8817 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8818 | } |
| 8819 | |
| 8820 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8821 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8822 | * |
| 8823 | * when wc->stage == DROP_REFERENCE, this function drops |
| 8824 | * reference count on the block. |
| 8825 | * |
| 8826 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 8827 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 8828 | * to UPDATE_BACKREF previously while processing the block. |
| 8829 | * |
| 8830 | * NOTE: return value 1 means we should stop walking up. |
| 8831 | */ |
| 8832 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 8833 | struct btrfs_root *root, |
| 8834 | struct btrfs_path *path, |
| 8835 | struct walk_control *wc) |
| 8836 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8837 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8838 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8839 | int level = wc->level; |
| 8840 | struct extent_buffer *eb = path->nodes[level]; |
| 8841 | u64 parent = 0; |
| 8842 | |
| 8843 | if (wc->stage == UPDATE_BACKREF) { |
| 8844 | BUG_ON(wc->shared_level < level); |
| 8845 | if (level < wc->shared_level) |
| 8846 | goto out; |
| 8847 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8848 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 8849 | if (ret > 0) |
| 8850 | wc->update_ref = 0; |
| 8851 | |
| 8852 | wc->stage = DROP_REFERENCE; |
| 8853 | wc->shared_level = -1; |
| 8854 | path->slots[level] = 0; |
| 8855 | |
| 8856 | /* |
| 8857 | * check reference count again if the block isn't locked. |
| 8858 | * we should start walking down the tree again if reference |
| 8859 | * count is one. |
| 8860 | */ |
| 8861 | if (!path->locks[level]) { |
| 8862 | BUG_ON(level == 0); |
| 8863 | btrfs_tree_lock(eb); |
| 8864 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8865 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8866 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8867 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8868 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8869 | &wc->refs[level], |
| 8870 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8871 | if (ret < 0) { |
| 8872 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8873 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8874 | return ret; |
| 8875 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8876 | BUG_ON(wc->refs[level] == 0); |
| 8877 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8878 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8879 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8880 | return 1; |
| 8881 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8882 | } |
| 8883 | } |
| 8884 | |
| 8885 | /* wc->stage == DROP_REFERENCE */ |
| 8886 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 8887 | |
| 8888 | if (wc->refs[level] == 1) { |
| 8889 | if (level == 0) { |
| 8890 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8891 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8892 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8893 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8894 | BUG_ON(ret); /* -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8895 | ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, eb); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8896 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8897 | btrfs_err_rl(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8898 | "error %d accounting leaf items. Quota is out of sync, rescan required.", |
| 8899 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8900 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8901 | } |
| 8902 | /* make block locked assertion in clean_tree_block happy */ |
| 8903 | if (!path->locks[level] && |
| 8904 | btrfs_header_generation(eb) == trans->transid) { |
| 8905 | btrfs_tree_lock(eb); |
| 8906 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8907 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8908 | } |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 8909 | clean_tree_block(fs_info, eb); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8910 | } |
| 8911 | |
| 8912 | if (eb == root->node) { |
| 8913 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8914 | parent = eb->start; |
| 8915 | else |
| 8916 | BUG_ON(root->root_key.objectid != |
| 8917 | btrfs_header_owner(eb)); |
| 8918 | } else { |
| 8919 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8920 | parent = path->nodes[level + 1]->start; |
| 8921 | else |
| 8922 | BUG_ON(root->root_key.objectid != |
| 8923 | btrfs_header_owner(path->nodes[level + 1])); |
| 8924 | } |
| 8925 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8926 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8927 | out: |
| 8928 | wc->refs[level] = 0; |
| 8929 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8930 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8931 | } |
| 8932 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8933 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 8934 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8935 | struct btrfs_path *path, |
| 8936 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8937 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8938 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8939 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8940 | int ret; |
| 8941 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8942 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8943 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8944 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8945 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8946 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8947 | if (level == 0) |
| 8948 | break; |
| 8949 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 8950 | if (path->slots[level] >= |
| 8951 | btrfs_header_nritems(path->nodes[level])) |
| 8952 | break; |
| 8953 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8954 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8955 | if (ret > 0) { |
| 8956 | path->slots[level]++; |
| 8957 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8958 | } else if (ret < 0) |
| 8959 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8960 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8961 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8962 | return 0; |
| 8963 | } |
| 8964 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8965 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 8966 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8967 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8968 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8969 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8970 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8971 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8972 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8973 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 8974 | while (level < max_level && path->nodes[level]) { |
| 8975 | wc->level = level; |
| 8976 | if (path->slots[level] + 1 < |
| 8977 | btrfs_header_nritems(path->nodes[level])) { |
| 8978 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8979 | return 0; |
| 8980 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8981 | ret = walk_up_proc(trans, root, path, wc); |
| 8982 | if (ret > 0) |
| 8983 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 8984 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8985 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8986 | btrfs_tree_unlock_rw(path->nodes[level], |
| 8987 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8988 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8989 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8990 | free_extent_buffer(path->nodes[level]); |
| 8991 | path->nodes[level] = NULL; |
| 8992 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8993 | } |
| 8994 | } |
| 8995 | return 1; |
| 8996 | } |
| 8997 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8998 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8999 | * drop a subvolume tree. |
| 9000 | * |
| 9001 | * this function traverses the tree freeing any blocks that only |
| 9002 | * referenced by the tree. |
| 9003 | * |
| 9004 | * when a shared tree block is found. this function decreases its |
| 9005 | * reference count by one. if update_ref is true, this function |
| 9006 | * also make sure backrefs for the shared block and all lower level |
| 9007 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9008 | * |
| 9009 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9010 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9011 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9012 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 9013 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9014 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9015 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9016 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9017 | struct btrfs_trans_handle *trans; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9018 | struct btrfs_root *tree_root = fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9019 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9020 | struct walk_control *wc; |
| 9021 | struct btrfs_key key; |
| 9022 | int err = 0; |
| 9023 | int ret; |
| 9024 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9025 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9026 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9027 | btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9028 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9029 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9030 | if (!path) { |
| 9031 | err = -ENOMEM; |
| 9032 | goto out; |
| 9033 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9034 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9035 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9036 | if (!wc) { |
| 9037 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9038 | err = -ENOMEM; |
| 9039 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9040 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9041 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9042 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9043 | if (IS_ERR(trans)) { |
| 9044 | err = PTR_ERR(trans); |
| 9045 | goto out_free; |
| 9046 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 9047 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9048 | if (block_rsv) |
| 9049 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9050 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9051 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9052 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9053 | path->nodes[level] = btrfs_lock_root_node(root); |
| 9054 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9055 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9056 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9057 | memset(&wc->update_progress, 0, |
| 9058 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9059 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9060 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9061 | memcpy(&wc->update_progress, &key, |
| 9062 | sizeof(wc->update_progress)); |
| 9063 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9064 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9065 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9066 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9067 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 9068 | path->lowest_level = 0; |
| 9069 | if (ret < 0) { |
| 9070 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9071 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9072 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9073 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9074 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9075 | /* |
| 9076 | * unlock our path, this is safe because only this |
| 9077 | * function is allowed to delete this snapshot |
| 9078 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9079 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9080 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9081 | level = btrfs_header_level(root->node); |
| 9082 | while (1) { |
| 9083 | btrfs_tree_lock(path->nodes[level]); |
| 9084 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9085 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9086 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9087 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9088 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 9089 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9090 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9091 | if (ret < 0) { |
| 9092 | err = ret; |
| 9093 | goto out_end_trans; |
| 9094 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9095 | BUG_ON(wc->refs[level] == 0); |
| 9096 | |
| 9097 | if (level == root_item->drop_level) |
| 9098 | break; |
| 9099 | |
| 9100 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9101 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9102 | WARN_ON(wc->refs[level] != 1); |
| 9103 | level--; |
| 9104 | } |
| 9105 | } |
| 9106 | |
| 9107 | wc->level = level; |
| 9108 | wc->shared_level = -1; |
| 9109 | wc->stage = DROP_REFERENCE; |
| 9110 | wc->update_ref = update_ref; |
| 9111 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9112 | wc->for_reloc = for_reloc; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9113 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9114 | |
| 9115 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9116 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9117 | ret = walk_down_tree(trans, root, path, wc); |
| 9118 | if (ret < 0) { |
| 9119 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 9120 | break; |
| 9121 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9122 | |
| 9123 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 9124 | if (ret < 0) { |
| 9125 | err = ret; |
| 9126 | break; |
| 9127 | } |
| 9128 | |
| 9129 | if (ret > 0) { |
| 9130 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 9131 | break; |
| 9132 | } |
| 9133 | |
| 9134 | if (wc->stage == DROP_REFERENCE) { |
| 9135 | level = wc->level; |
| 9136 | btrfs_node_key(path->nodes[level], |
| 9137 | &root_item->drop_progress, |
| 9138 | path->slots[level]); |
| 9139 | root_item->drop_level = level; |
| 9140 | } |
| 9141 | |
| 9142 | BUG_ON(wc->level == 0); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9143 | if (btrfs_should_end_transaction(trans) || |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9144 | (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9145 | ret = btrfs_update_root(trans, tree_root, |
| 9146 | &root->root_key, |
| 9147 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9148 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9149 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9150 | err = ret; |
| 9151 | goto out_end_trans; |
| 9152 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9153 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9154 | btrfs_end_transaction_throttle(trans); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9155 | if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9156 | btrfs_debug(fs_info, |
| 9157 | "drop snapshot early exit"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9158 | err = -EAGAIN; |
| 9159 | goto out_free; |
| 9160 | } |
| 9161 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9162 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9163 | if (IS_ERR(trans)) { |
| 9164 | err = PTR_ERR(trans); |
| 9165 | goto out_free; |
| 9166 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9167 | if (block_rsv) |
| 9168 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 9169 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9170 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9171 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9172 | if (err) |
| 9173 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9174 | |
| 9175 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9176 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9177 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9178 | goto out_end_trans; |
| 9179 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9180 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9181 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 9182 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 9183 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9184 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9185 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9186 | err = ret; |
| 9187 | goto out_end_trans; |
| 9188 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 9189 | /* if we fail to delete the orphan item this time |
| 9190 | * around, it'll get picked up the next time. |
| 9191 | * |
| 9192 | * The most common failure here is just -ENOENT. |
| 9193 | */ |
| 9194 | btrfs_del_orphan_item(trans, tree_root, |
| 9195 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9196 | } |
| 9197 | } |
| 9198 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 9199 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Josef Bacik | 2b9dbef | 2015-09-15 10:07:04 -0400 | [diff] [blame] | 9200 | btrfs_add_dropped_root(trans, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9201 | } else { |
| 9202 | free_extent_buffer(root->node); |
| 9203 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 9204 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9205 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9206 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9207 | out_end_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9208 | btrfs_end_transaction_throttle(trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9209 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9210 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9211 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9212 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9213 | /* |
| 9214 | * So if we need to stop dropping the snapshot for whatever reason we |
| 9215 | * need to make sure to add it back to the dead root list so that we |
| 9216 | * keep trying to do the work later. This also cleans up roots if we |
| 9217 | * don't have it in the radix (like when we recover after a power fail |
| 9218 | * or unmount) so we don't leak memory. |
| 9219 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 9220 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9221 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 9222 | if (err && err != -EAGAIN) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9223 | btrfs_handle_fs_error(fs_info, err, NULL); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9224 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9225 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9226 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9227 | /* |
| 9228 | * drop subtree rooted at tree block 'node'. |
| 9229 | * |
| 9230 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9231 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9232 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9233 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 9234 | struct btrfs_root *root, |
| 9235 | struct extent_buffer *node, |
| 9236 | struct extent_buffer *parent) |
| 9237 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9238 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9239 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9240 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9241 | int level; |
| 9242 | int parent_level; |
| 9243 | int ret = 0; |
| 9244 | int wret; |
| 9245 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9246 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 9247 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9248 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9249 | if (!path) |
| 9250 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9251 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9252 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9253 | if (!wc) { |
| 9254 | btrfs_free_path(path); |
| 9255 | return -ENOMEM; |
| 9256 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9257 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9258 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9259 | parent_level = btrfs_header_level(parent); |
| 9260 | extent_buffer_get(parent); |
| 9261 | path->nodes[parent_level] = parent; |
| 9262 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 9263 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9264 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9265 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9266 | path->nodes[level] = node; |
| 9267 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9268 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9269 | |
| 9270 | wc->refs[parent_level] = 1; |
| 9271 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 9272 | wc->level = level; |
| 9273 | wc->shared_level = -1; |
| 9274 | wc->stage = DROP_REFERENCE; |
| 9275 | wc->update_ref = 0; |
| 9276 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9277 | wc->for_reloc = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9278 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9279 | |
| 9280 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9281 | wret = walk_down_tree(trans, root, path, wc); |
| 9282 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9283 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9284 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9285 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9286 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9287 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9288 | if (wret < 0) |
| 9289 | ret = wret; |
| 9290 | if (wret != 0) |
| 9291 | break; |
| 9292 | } |
| 9293 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9294 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9295 | btrfs_free_path(path); |
| 9296 | return ret; |
| 9297 | } |
| 9298 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9299 | 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] | 9300 | { |
| 9301 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9302 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9303 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9304 | /* |
| 9305 | * if restripe for this chunk_type is on pick target profile and |
| 9306 | * return, otherwise do the usual balance |
| 9307 | */ |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9308 | stripped = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9309 | if (stripped) |
| 9310 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 9311 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9312 | num_devices = fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 9313 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9314 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9315 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9316 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 9317 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9318 | if (num_devices == 1) { |
| 9319 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9320 | stripped = flags & ~stripped; |
| 9321 | |
| 9322 | /* turn raid0 into single device chunks */ |
| 9323 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 9324 | return stripped; |
| 9325 | |
| 9326 | /* turn mirroring into duplication */ |
| 9327 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9328 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9329 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9330 | } else { |
| 9331 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9332 | if (flags & stripped) |
| 9333 | return flags; |
| 9334 | |
| 9335 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9336 | stripped = flags & ~stripped; |
| 9337 | |
| 9338 | /* switch duplicated blocks with raid1 */ |
| 9339 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 9340 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 9341 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9342 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9343 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9344 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9345 | return flags; |
| 9346 | } |
| 9347 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9348 | 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] | 9349 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9350 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9351 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9352 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9353 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9354 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9355 | /* |
| 9356 | * We need some metadata space and system metadata space for |
| 9357 | * allocating chunks in some corner cases until we force to set |
| 9358 | * it to be readonly. |
| 9359 | */ |
| 9360 | if ((sinfo->flags & |
| 9361 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 9362 | !force) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 9363 | min_allocable_bytes = SZ_1M; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9364 | else |
| 9365 | min_allocable_bytes = 0; |
| 9366 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9367 | spin_lock(&sinfo->lock); |
| 9368 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9369 | |
| 9370 | if (cache->ro) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9371 | cache->ro++; |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9372 | ret = 0; |
| 9373 | goto out; |
| 9374 | } |
| 9375 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9376 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 9377 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9378 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 9379 | if (btrfs_space_info_used(sinfo, true) + num_bytes + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 9380 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9381 | sinfo->bytes_readonly += num_bytes; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9382 | cache->ro++; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9383 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9384 | ret = 0; |
| 9385 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9386 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9387 | spin_unlock(&cache->lock); |
| 9388 | spin_unlock(&sinfo->lock); |
| 9389 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9390 | } |
| 9391 | |
Jeff Mahoney | 5e00f19 | 2017-02-15 16:28:29 -0500 | [diff] [blame] | 9392 | int btrfs_inc_block_group_ro(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9393 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9394 | |
| 9395 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9396 | struct btrfs_trans_handle *trans; |
| 9397 | u64 alloc_flags; |
| 9398 | int ret; |
| 9399 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9400 | again: |
Jeff Mahoney | 5e00f19 | 2017-02-15 16:28:29 -0500 | [diff] [blame] | 9401 | trans = btrfs_join_transaction(fs_info->extent_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9402 | if (IS_ERR(trans)) |
| 9403 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9404 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9405 | /* |
| 9406 | * we're not allowed to set block groups readonly after the dirty |
| 9407 | * block groups cache has started writing. If it already started, |
| 9408 | * back off and let this transaction commit |
| 9409 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9410 | mutex_lock(&fs_info->ro_block_group_mutex); |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 9411 | if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9412 | u64 transid = trans->transid; |
| 9413 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9414 | mutex_unlock(&fs_info->ro_block_group_mutex); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9415 | btrfs_end_transaction(trans); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9416 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9417 | ret = btrfs_wait_for_commit(fs_info, transid); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9418 | if (ret) |
| 9419 | return ret; |
| 9420 | goto again; |
| 9421 | } |
| 9422 | |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9423 | /* |
| 9424 | * if we are changing raid levels, try to allocate a corresponding |
| 9425 | * block group with the new raid level. |
| 9426 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9427 | alloc_flags = update_block_group_flags(fs_info, cache->flags); |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9428 | if (alloc_flags != cache->flags) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9429 | ret = do_chunk_alloc(trans, fs_info, alloc_flags, |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9430 | CHUNK_ALLOC_FORCE); |
| 9431 | /* |
| 9432 | * ENOSPC is allowed here, we may have enough space |
| 9433 | * already allocated at the new raid level to |
| 9434 | * carry on |
| 9435 | */ |
| 9436 | if (ret == -ENOSPC) |
| 9437 | ret = 0; |
| 9438 | if (ret < 0) |
| 9439 | goto out; |
| 9440 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9441 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9442 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9443 | if (!ret) |
| 9444 | goto out; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9445 | alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags); |
| 9446 | ret = do_chunk_alloc(trans, fs_info, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 9447 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9448 | if (ret < 0) |
| 9449 | goto out; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9450 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9451 | out: |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9452 | if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9453 | alloc_flags = update_block_group_flags(fs_info, cache->flags); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 9454 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9455 | check_system_chunk(trans, fs_info, alloc_flags); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 9456 | mutex_unlock(&fs_info->chunk_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9457 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9458 | mutex_unlock(&fs_info->ro_block_group_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9459 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9460 | btrfs_end_transaction(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9461 | return ret; |
| 9462 | } |
| 9463 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9464 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9465 | struct btrfs_fs_info *fs_info, u64 type) |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9466 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9467 | u64 alloc_flags = get_alloc_profile(fs_info, type); |
| 9468 | |
| 9469 | return do_chunk_alloc(trans, fs_info, alloc_flags, CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9470 | } |
| 9471 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9472 | /* |
| 9473 | * 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] | 9474 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9475 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9476 | 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] | 9477 | { |
| 9478 | struct btrfs_block_group_cache *block_group; |
| 9479 | u64 free_bytes = 0; |
| 9480 | int factor; |
| 9481 | |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 9482 | /* It's df, we don't care if it's racy */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9483 | if (list_empty(&sinfo->ro_bgs)) |
| 9484 | return 0; |
| 9485 | |
| 9486 | spin_lock(&sinfo->lock); |
| 9487 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9488 | spin_lock(&block_group->lock); |
| 9489 | |
| 9490 | if (!block_group->ro) { |
| 9491 | spin_unlock(&block_group->lock); |
| 9492 | continue; |
| 9493 | } |
| 9494 | |
| 9495 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9496 | BTRFS_BLOCK_GROUP_RAID10 | |
| 9497 | BTRFS_BLOCK_GROUP_DUP)) |
| 9498 | factor = 2; |
| 9499 | else |
| 9500 | factor = 1; |
| 9501 | |
| 9502 | free_bytes += (block_group->key.offset - |
| 9503 | btrfs_block_group_used(&block_group->item)) * |
| 9504 | factor; |
| 9505 | |
| 9506 | spin_unlock(&block_group->lock); |
| 9507 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9508 | spin_unlock(&sinfo->lock); |
| 9509 | |
| 9510 | return free_bytes; |
| 9511 | } |
| 9512 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9513 | void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9514 | { |
| 9515 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9516 | u64 num_bytes; |
| 9517 | |
| 9518 | BUG_ON(!cache->ro); |
| 9519 | |
| 9520 | spin_lock(&sinfo->lock); |
| 9521 | spin_lock(&cache->lock); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9522 | if (!--cache->ro) { |
| 9523 | num_bytes = cache->key.offset - cache->reserved - |
| 9524 | cache->pinned - cache->bytes_super - |
| 9525 | btrfs_block_group_used(&cache->item); |
| 9526 | sinfo->bytes_readonly -= num_bytes; |
| 9527 | list_del_init(&cache->ro_list); |
| 9528 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9529 | spin_unlock(&cache->lock); |
| 9530 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9531 | } |
| 9532 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9533 | /* |
| 9534 | * checks to see if its even possible to relocate this block group. |
| 9535 | * |
| 9536 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 9537 | * ok to go ahead and try. |
| 9538 | */ |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9539 | int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9540 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9541 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9542 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9543 | struct btrfs_space_info *space_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9544 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9545 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9546 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9547 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9548 | u64 dev_min = 1; |
| 9549 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9550 | u64 target; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9551 | int debug; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9552 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9553 | int full = 0; |
| 9554 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9555 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9556 | debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG); |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9557 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9558 | block_group = btrfs_lookup_block_group(fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9559 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9560 | /* odd, couldn't find the block group, leave it alone */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9561 | if (!block_group) { |
| 9562 | if (debug) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9563 | btrfs_warn(fs_info, |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9564 | "can't find block group for bytenr %llu", |
| 9565 | bytenr); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9566 | return -1; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9567 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9568 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9569 | min_free = btrfs_block_group_used(&block_group->item); |
| 9570 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9571 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9572 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9573 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9574 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9575 | space_info = block_group->space_info; |
| 9576 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9577 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9578 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9579 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9580 | /* |
| 9581 | * 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] | 9582 | * relocate it unless we're able to allocate a new chunk below. |
| 9583 | * |
| 9584 | * Otherwise, we need to make sure we have room in the space to handle |
| 9585 | * 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] | 9586 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 9587 | if ((space_info->total_bytes != block_group->key.offset) && |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 9588 | (btrfs_space_info_used(space_info, false) + min_free < |
| 9589 | space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9590 | spin_unlock(&space_info->lock); |
| 9591 | goto out; |
| 9592 | } |
| 9593 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9594 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9595 | /* |
| 9596 | * ok we don't have enough space, but maybe we have free space on our |
| 9597 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9598 | * alloc devices and guess if we have enough space. if this block |
| 9599 | * group is going to be restriped, run checks against the target |
| 9600 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9601 | */ |
| 9602 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 9603 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9604 | /* |
| 9605 | * index: |
| 9606 | * 0: raid10 |
| 9607 | * 1: raid1 |
| 9608 | * 2: dup |
| 9609 | * 3: raid0 |
| 9610 | * 4: single |
| 9611 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9612 | target = get_restripe_target(fs_info, block_group->flags); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9613 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 9614 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9615 | } else { |
| 9616 | /* |
| 9617 | * this is just a balance, so if we were marked as full |
| 9618 | * we know there is no space for a new chunk |
| 9619 | */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9620 | if (full) { |
| 9621 | if (debug) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9622 | btrfs_warn(fs_info, |
| 9623 | "no space to alloc new chunk for block group %llu", |
| 9624 | block_group->key.objectid); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9625 | goto out; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9626 | } |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9627 | |
| 9628 | index = get_block_group_index(block_group); |
| 9629 | } |
| 9630 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9631 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9632 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9633 | /* Divide by 2 */ |
| 9634 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9635 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9636 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9637 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9638 | /* Multiply by 2 */ |
| 9639 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9640 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9641 | dev_min = fs_devices->rw_devices; |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 9642 | min_free = div64_u64(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9643 | } |
| 9644 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9645 | /* We need to do this so that we can look at pending chunks */ |
| 9646 | trans = btrfs_join_transaction(root); |
| 9647 | if (IS_ERR(trans)) { |
| 9648 | ret = PTR_ERR(trans); |
| 9649 | goto out; |
| 9650 | } |
| 9651 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9652 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9653 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9654 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 9655 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9656 | /* |
| 9657 | * check to make sure we can actually find a chunk with enough |
| 9658 | * space to fit our block group in. |
| 9659 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 9660 | if (device->total_bytes > device->bytes_used + min_free && |
| 9661 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9662 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9663 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9664 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9665 | dev_nr++; |
| 9666 | |
| 9667 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9668 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9669 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9670 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9671 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9672 | } |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9673 | if (debug && ret == -1) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9674 | btrfs_warn(fs_info, |
| 9675 | "no space to allocate a new chunk for block group %llu", |
| 9676 | block_group->key.objectid); |
| 9677 | mutex_unlock(&fs_info->chunk_mutex); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9678 | btrfs_end_transaction(trans); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9679 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9680 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9681 | return ret; |
| 9682 | } |
| 9683 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9684 | static int find_first_block_group(struct btrfs_fs_info *fs_info, |
| 9685 | struct btrfs_path *path, |
| 9686 | struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9687 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9688 | struct btrfs_root *root = fs_info->extent_root; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9689 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9690 | struct btrfs_key found_key; |
| 9691 | struct extent_buffer *leaf; |
| 9692 | int slot; |
| 9693 | |
| 9694 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 9695 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9696 | goto out; |
| 9697 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9698 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9699 | slot = path->slots[0]; |
| 9700 | leaf = path->nodes[0]; |
| 9701 | if (slot >= btrfs_header_nritems(leaf)) { |
| 9702 | ret = btrfs_next_leaf(root, path); |
| 9703 | if (ret == 0) |
| 9704 | continue; |
| 9705 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9706 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9707 | break; |
| 9708 | } |
| 9709 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 9710 | |
| 9711 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9712 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9713 | struct extent_map_tree *em_tree; |
| 9714 | struct extent_map *em; |
| 9715 | |
| 9716 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 9717 | read_lock(&em_tree->lock); |
| 9718 | em = lookup_extent_mapping(em_tree, found_key.objectid, |
| 9719 | found_key.offset); |
| 9720 | read_unlock(&em_tree->lock); |
| 9721 | if (!em) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9722 | btrfs_err(fs_info, |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9723 | "logical %llu len %llu found bg but no related chunk", |
| 9724 | found_key.objectid, found_key.offset); |
| 9725 | ret = -ENOENT; |
| 9726 | } else { |
| 9727 | ret = 0; |
| 9728 | } |
Josef Bacik | 187ee58 | 2016-08-18 15:30:06 -0400 | [diff] [blame] | 9729 | free_extent_map(em); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9730 | goto out; |
| 9731 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9732 | path->slots[0]++; |
| 9733 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9734 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9735 | return ret; |
| 9736 | } |
| 9737 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9738 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 9739 | { |
| 9740 | struct btrfs_block_group_cache *block_group; |
| 9741 | u64 last = 0; |
| 9742 | |
| 9743 | while (1) { |
| 9744 | struct inode *inode; |
| 9745 | |
| 9746 | block_group = btrfs_lookup_first_block_group(info, last); |
| 9747 | while (block_group) { |
| 9748 | spin_lock(&block_group->lock); |
| 9749 | if (block_group->iref) |
| 9750 | break; |
| 9751 | spin_unlock(&block_group->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9752 | block_group = next_block_group(info, block_group); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9753 | } |
| 9754 | if (!block_group) { |
| 9755 | if (last == 0) |
| 9756 | break; |
| 9757 | last = 0; |
| 9758 | continue; |
| 9759 | } |
| 9760 | |
| 9761 | inode = block_group->inode; |
| 9762 | block_group->iref = 0; |
| 9763 | block_group->inode = NULL; |
| 9764 | spin_unlock(&block_group->lock); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9765 | ASSERT(block_group->io_ctl.inode == NULL); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9766 | iput(inode); |
| 9767 | last = block_group->key.objectid + block_group->key.offset; |
| 9768 | btrfs_put_block_group(block_group); |
| 9769 | } |
| 9770 | } |
| 9771 | |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 9772 | /* |
| 9773 | * Must be called only after stopping all workers, since we could have block |
| 9774 | * group caching kthreads running, and therefore they could race with us if we |
| 9775 | * freed the block groups before stopping them. |
| 9776 | */ |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9777 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 9778 | { |
| 9779 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9780 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9781 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9782 | struct rb_node *n; |
| 9783 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9784 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9785 | while (!list_empty(&info->caching_block_groups)) { |
| 9786 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 9787 | struct btrfs_caching_control, list); |
| 9788 | list_del(&caching_ctl->list); |
| 9789 | put_caching_control(caching_ctl); |
| 9790 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9791 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9792 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9793 | spin_lock(&info->unused_bgs_lock); |
| 9794 | while (!list_empty(&info->unused_bgs)) { |
| 9795 | block_group = list_first_entry(&info->unused_bgs, |
| 9796 | struct btrfs_block_group_cache, |
| 9797 | bg_list); |
| 9798 | list_del_init(&block_group->bg_list); |
| 9799 | btrfs_put_block_group(block_group); |
| 9800 | } |
| 9801 | spin_unlock(&info->unused_bgs_lock); |
| 9802 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9803 | spin_lock(&info->block_group_cache_lock); |
| 9804 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 9805 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 9806 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9807 | rb_erase(&block_group->cache_node, |
| 9808 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9809 | RB_CLEAR_NODE(&block_group->cache_node); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9810 | spin_unlock(&info->block_group_cache_lock); |
| 9811 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9812 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9813 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9814 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 9815 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9816 | /* |
| 9817 | * We haven't cached this block group, which means we could |
| 9818 | * possibly have excluded extents on this block group. |
| 9819 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 9820 | if (block_group->cached == BTRFS_CACHE_NO || |
| 9821 | block_group->cached == BTRFS_CACHE_ERROR) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9822 | free_excluded_extents(info, block_group); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9823 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9824 | btrfs_remove_free_space_cache(block_group); |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 9825 | ASSERT(block_group->cached != BTRFS_CACHE_STARTED); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9826 | ASSERT(list_empty(&block_group->dirty_list)); |
| 9827 | ASSERT(list_empty(&block_group->io_list)); |
| 9828 | ASSERT(list_empty(&block_group->bg_list)); |
| 9829 | ASSERT(atomic_read(&block_group->count) == 1); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 9830 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9831 | |
| 9832 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9833 | } |
| 9834 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9835 | |
| 9836 | /* now that all the block groups are freed, go through and |
| 9837 | * free all the space_info structs. This is only called during |
| 9838 | * the final stages of unmount, and so we know nobody is |
| 9839 | * using them. We call synchronize_rcu() once before we start, |
| 9840 | * just to be on the safe side. |
| 9841 | */ |
| 9842 | synchronize_rcu(); |
| 9843 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 9844 | release_global_block_rsv(info); |
| 9845 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 9846 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9847 | int i; |
| 9848 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9849 | space_info = list_entry(info->space_info.next, |
| 9850 | struct btrfs_space_info, |
| 9851 | list); |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 9852 | |
| 9853 | /* |
| 9854 | * Do not hide this behind enospc_debug, this is actually |
| 9855 | * important and indicates a real bug if this happens. |
| 9856 | */ |
| 9857 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9858 | space_info->bytes_reserved > 0 || |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 9859 | space_info->bytes_may_use > 0)) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9860 | dump_space_info(info, space_info, 0, 0); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9861 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9862 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 9863 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9864 | kobj = space_info->block_group_kobjs[i]; |
| 9865 | space_info->block_group_kobjs[i] = NULL; |
| 9866 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9867 | kobject_del(kobj); |
| 9868 | kobject_put(kobj); |
| 9869 | } |
| 9870 | } |
| 9871 | kobject_del(&space_info->kobj); |
| 9872 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9873 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9874 | return 0; |
| 9875 | } |
| 9876 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9877 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 9878 | struct btrfs_block_group_cache *cache) |
| 9879 | { |
| 9880 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9881 | bool first = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9882 | |
| 9883 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9884 | if (list_empty(&space_info->block_groups[index])) |
| 9885 | first = true; |
| 9886 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 9887 | up_write(&space_info->groups_sem); |
| 9888 | |
| 9889 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9890 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9891 | int ret; |
| 9892 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9893 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 9894 | if (!rkobj) |
| 9895 | goto out_err; |
| 9896 | rkobj->raid_type = index; |
| 9897 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 9898 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 9899 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9900 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9901 | kobject_put(&rkobj->kobj); |
| 9902 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9903 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9904 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9905 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9906 | |
| 9907 | return; |
| 9908 | out_err: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9909 | btrfs_warn(cache->fs_info, |
| 9910 | "failed to add kobject for block cache, ignoring"); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9911 | } |
| 9912 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9913 | static struct btrfs_block_group_cache * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9914 | btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info, |
| 9915 | u64 start, u64 size) |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9916 | { |
| 9917 | struct btrfs_block_group_cache *cache; |
| 9918 | |
| 9919 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 9920 | if (!cache) |
| 9921 | return NULL; |
| 9922 | |
| 9923 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 9924 | GFP_NOFS); |
| 9925 | if (!cache->free_space_ctl) { |
| 9926 | kfree(cache); |
| 9927 | return NULL; |
| 9928 | } |
| 9929 | |
| 9930 | cache->key.objectid = start; |
| 9931 | cache->key.offset = size; |
| 9932 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 9933 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9934 | cache->sectorsize = fs_info->sectorsize; |
| 9935 | cache->fs_info = fs_info; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9936 | cache->full_stripe_len = btrfs_full_stripe_len(fs_info, |
| 9937 | &fs_info->mapping_tree, |
| 9938 | start); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 9939 | set_free_space_tree_thresholds(cache); |
| 9940 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9941 | atomic_set(&cache->count, 1); |
| 9942 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 9943 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9944 | INIT_LIST_HEAD(&cache->list); |
| 9945 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9946 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9947 | INIT_LIST_HEAD(&cache->ro_list); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9948 | INIT_LIST_HEAD(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 9949 | INIT_LIST_HEAD(&cache->io_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9950 | btrfs_init_free_space_ctl(cache); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9951 | atomic_set(&cache->trimming, 0); |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 9952 | mutex_init(&cache->free_space_lock); |
Qu Wenruo | 0966a7b | 2017-04-14 08:35:54 +0800 | [diff] [blame] | 9953 | btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9954 | |
| 9955 | return cache; |
| 9956 | } |
| 9957 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 9958 | int btrfs_read_block_groups(struct btrfs_fs_info *info) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9959 | { |
| 9960 | struct btrfs_path *path; |
| 9961 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9962 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9963 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9964 | struct btrfs_key key; |
| 9965 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9966 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9967 | int need_clear = 0; |
| 9968 | u64 cache_gen; |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 9969 | u64 feature; |
| 9970 | int mixed; |
| 9971 | |
| 9972 | feature = btrfs_super_incompat_flags(info->super_copy); |
| 9973 | mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9974 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9975 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9976 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 9977 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9978 | path = btrfs_alloc_path(); |
| 9979 | if (!path) |
| 9980 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 9981 | path->reada = READA_FORWARD; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9982 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9983 | cache_gen = btrfs_super_cache_generation(info->super_copy); |
| 9984 | if (btrfs_test_opt(info, SPACE_CACHE) && |
| 9985 | btrfs_super_generation(info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9986 | need_clear = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9987 | if (btrfs_test_opt(info, CLEAR_CACHE)) |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 9988 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9989 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9990 | while (1) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9991 | ret = find_first_block_group(info, path, &key); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9992 | if (ret > 0) |
| 9993 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9994 | if (ret != 0) |
| 9995 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9996 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9997 | leaf = path->nodes[0]; |
| 9998 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9999 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10000 | cache = btrfs_create_block_group_cache(info, found_key.objectid, |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10001 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10002 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10003 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10004 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10005 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10006 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10007 | if (need_clear) { |
| 10008 | /* |
| 10009 | * When we mount with old space cache, we need to |
| 10010 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 10011 | * |
| 10012 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 10013 | * truncate the old free space cache inode and |
| 10014 | * setup a new one. |
| 10015 | * b) Setting 'dirty flag' makes sure that we flush |
| 10016 | * the new space cache info onto disk. |
| 10017 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10018 | if (btrfs_test_opt(info, SPACE_CACHE)) |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10019 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10020 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10021 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10022 | read_extent_buffer(leaf, &cache->item, |
| 10023 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 10024 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10025 | cache->flags = btrfs_block_group_flags(&cache->item); |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 10026 | if (!mixed && |
| 10027 | ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) && |
| 10028 | (cache->flags & BTRFS_BLOCK_GROUP_DATA))) { |
| 10029 | btrfs_err(info, |
| 10030 | "bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups", |
| 10031 | cache->key.objectid); |
| 10032 | ret = -EINVAL; |
| 10033 | goto error; |
| 10034 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10035 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10036 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10037 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10038 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10039 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10040 | * We need to exclude the super stripes now so that the space |
| 10041 | * info has super bytes accounted for, otherwise we'll think |
| 10042 | * we have more space than we actually do. |
| 10043 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10044 | ret = exclude_super_stripes(info, cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10045 | if (ret) { |
| 10046 | /* |
| 10047 | * We may have excluded something, so call this just in |
| 10048 | * case. |
| 10049 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10050 | free_excluded_extents(info, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10051 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10052 | goto error; |
| 10053 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10054 | |
| 10055 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10056 | * check for two cases, either we are full, and therefore |
| 10057 | * don't need to bother with the caching work since we won't |
| 10058 | * find any space, or we are empty, and we can just add all |
| 10059 | * the space in and be done with it. This saves us _alot_ of |
| 10060 | * time, particularly in the full case. |
| 10061 | */ |
| 10062 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10063 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10064 | cache->cached = BTRFS_CACHE_FINISHED; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10065 | free_excluded_extents(info, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10066 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10067 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10068 | cache->cached = BTRFS_CACHE_FINISHED; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10069 | add_new_free_space(cache, info, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10070 | found_key.objectid, |
| 10071 | found_key.objectid + |
| 10072 | found_key.offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10073 | free_excluded_extents(info, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10074 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 10075 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10076 | ret = btrfs_add_block_group_cache(info, cache); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10077 | if (ret) { |
| 10078 | btrfs_remove_free_space_cache(cache); |
| 10079 | btrfs_put_block_group(cache); |
| 10080 | goto error; |
| 10081 | } |
| 10082 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10083 | trace_btrfs_add_block_group(info, cache, 0); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10084 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 10085 | btrfs_block_group_used(&cache->item), |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10086 | cache->bytes_super, &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10087 | if (ret) { |
| 10088 | btrfs_remove_free_space_cache(cache); |
| 10089 | spin_lock(&info->block_group_cache_lock); |
| 10090 | rb_erase(&cache->cache_node, |
| 10091 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10092 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10093 | spin_unlock(&info->block_group_cache_lock); |
| 10094 | btrfs_put_block_group(cache); |
| 10095 | goto error; |
| 10096 | } |
| 10097 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10098 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10099 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10100 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10101 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10102 | set_avail_alloc_bits(info, cache->flags); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10103 | if (btrfs_chunk_readonly(info, cache->key.objectid)) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10104 | inc_block_group_ro(cache, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10105 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
| 10106 | spin_lock(&info->unused_bgs_lock); |
| 10107 | /* Should always be true but just in case. */ |
| 10108 | if (list_empty(&cache->bg_list)) { |
| 10109 | btrfs_get_block_group(cache); |
| 10110 | list_add_tail(&cache->bg_list, |
| 10111 | &info->unused_bgs); |
| 10112 | } |
| 10113 | spin_unlock(&info->unused_bgs_lock); |
| 10114 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10115 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10116 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10117 | list_for_each_entry_rcu(space_info, &info->space_info, list) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10118 | if (!(get_alloc_profile(info, space_info->flags) & |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10119 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 10120 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 10121 | BTRFS_BLOCK_GROUP_RAID5 | |
| 10122 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10123 | BTRFS_BLOCK_GROUP_DUP))) |
| 10124 | continue; |
| 10125 | /* |
| 10126 | * avoid allocating from un-mirrored block group if there are |
| 10127 | * mirrored block groups. |
| 10128 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10129 | list_for_each_entry(cache, |
| 10130 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 10131 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10132 | inc_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10133 | list_for_each_entry(cache, |
| 10134 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 10135 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10136 | inc_block_group_ro(cache, 1); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10137 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10138 | |
| 10139 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10140 | ret = 0; |
| 10141 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10142 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10143 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10144 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10145 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10146 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10147 | struct btrfs_fs_info *fs_info) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10148 | { |
| 10149 | struct btrfs_block_group_cache *block_group, *tmp; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10150 | struct btrfs_root *extent_root = fs_info->extent_root; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10151 | struct btrfs_block_group_item item; |
| 10152 | struct btrfs_key key; |
| 10153 | int ret = 0; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10154 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10155 | |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10156 | trans->can_flush_pending_bgs = false; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10157 | 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] | 10158 | if (ret) |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10159 | goto next; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10160 | |
| 10161 | spin_lock(&block_group->lock); |
| 10162 | memcpy(&item, &block_group->item, sizeof(item)); |
| 10163 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10164 | spin_unlock(&block_group->lock); |
| 10165 | |
| 10166 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 10167 | sizeof(item)); |
| 10168 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10169 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10170 | ret = btrfs_finish_chunk_alloc(trans, fs_info, key.objectid, |
| 10171 | key.offset); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 10172 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10173 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10174 | add_block_group_free_space(trans, fs_info, block_group); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10175 | /* already aborted the transaction if it failed. */ |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10176 | next: |
| 10177 | list_del_init(&block_group->bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10178 | } |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10179 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10180 | } |
| 10181 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10182 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10183 | struct btrfs_fs_info *fs_info, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 10184 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10185 | u64 size) |
| 10186 | { |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10187 | struct btrfs_block_group_cache *cache; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10188 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10189 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10190 | btrfs_set_log_full_commit(fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 10191 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10192 | cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 10193 | if (!cache) |
| 10194 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10195 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10196 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10197 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10198 | btrfs_set_block_group_flags(&cache->item, type); |
| 10199 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10200 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10201 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10202 | cache->cached = BTRFS_CACHE_FINISHED; |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10203 | cache->needs_free_space = 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10204 | ret = exclude_super_stripes(fs_info, cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10205 | if (ret) { |
| 10206 | /* |
| 10207 | * We may have excluded something, so call this just in |
| 10208 | * case. |
| 10209 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10210 | free_excluded_extents(fs_info, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10211 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10212 | return ret; |
| 10213 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10214 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10215 | add_new_free_space(cache, fs_info, chunk_offset, chunk_offset + size); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10216 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10217 | free_excluded_extents(fs_info, cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10218 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10219 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10220 | if (btrfs_should_fragment_free_space(cache)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10221 | u64 new_bytes_used = size - bytes_used; |
| 10222 | |
| 10223 | bytes_used += new_bytes_used >> 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10224 | fragment_free_space(cache); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10225 | } |
| 10226 | #endif |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10227 | /* |
| 10228 | * Call to ensure the corresponding space_info object is created and |
| 10229 | * assigned to our block group, but don't update its counters just yet. |
| 10230 | * We want our bg to be added to the rbtree with its ->space_info set. |
| 10231 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10232 | ret = update_space_info(fs_info, cache->flags, 0, 0, 0, |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10233 | &cache->space_info); |
| 10234 | if (ret) { |
| 10235 | btrfs_remove_free_space_cache(cache); |
| 10236 | btrfs_put_block_group(cache); |
| 10237 | return ret; |
| 10238 | } |
| 10239 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10240 | ret = btrfs_add_block_group_cache(fs_info, cache); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10241 | if (ret) { |
| 10242 | btrfs_remove_free_space_cache(cache); |
| 10243 | btrfs_put_block_group(cache); |
| 10244 | return ret; |
| 10245 | } |
| 10246 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10247 | /* |
| 10248 | * Now that our block group has its ->space_info set and is inserted in |
| 10249 | * the rbtree, update the space info's counters. |
| 10250 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10251 | trace_btrfs_add_block_group(fs_info, cache, 1); |
| 10252 | ret = update_space_info(fs_info, cache->flags, size, bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10253 | cache->bytes_super, &cache->space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10254 | if (ret) { |
| 10255 | btrfs_remove_free_space_cache(cache); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10256 | spin_lock(&fs_info->block_group_cache_lock); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10257 | rb_erase(&cache->cache_node, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10258 | &fs_info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10259 | RB_CLEAR_NODE(&cache->cache_node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10260 | spin_unlock(&fs_info->block_group_cache_lock); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10261 | btrfs_put_block_group(cache); |
| 10262 | return ret; |
| 10263 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10264 | update_global_block_rsv(fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10265 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10266 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10267 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10268 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10269 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10270 | set_avail_alloc_bits(fs_info, type); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10271 | return 0; |
| 10272 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10273 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10274 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 10275 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 10276 | u64 extra_flags = chunk_to_extended(flags) & |
| 10277 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10278 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10279 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10280 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 10281 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 10282 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 10283 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 10284 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 10285 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10286 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10287 | } |
| 10288 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10289 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10290 | struct btrfs_fs_info *fs_info, u64 group_start, |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10291 | struct extent_map *em) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10292 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10293 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10294 | struct btrfs_path *path; |
| 10295 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10296 | struct btrfs_free_cluster *cluster; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10297 | struct btrfs_root *tree_root = fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10298 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10299 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10300 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10301 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10302 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10303 | int factor; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10304 | struct btrfs_caching_control *caching_ctl = NULL; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10305 | bool remove_em; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10306 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10307 | block_group = btrfs_lookup_block_group(fs_info, group_start); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10308 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10309 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10310 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10311 | /* |
| 10312 | * Free the reserved super bytes from this block group before |
| 10313 | * remove it. |
| 10314 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10315 | free_excluded_extents(fs_info, block_group); |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10316 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10317 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10318 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10319 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 10320 | BTRFS_BLOCK_GROUP_RAID1 | |
| 10321 | BTRFS_BLOCK_GROUP_RAID10)) |
| 10322 | factor = 2; |
| 10323 | else |
| 10324 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10325 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10326 | /* make sure this block group isn't part of an allocation cluster */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10327 | cluster = &fs_info->data_alloc_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10328 | spin_lock(&cluster->refill_lock); |
| 10329 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10330 | spin_unlock(&cluster->refill_lock); |
| 10331 | |
| 10332 | /* |
| 10333 | * make sure this block group isn't part of a metadata |
| 10334 | * allocation cluster |
| 10335 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10336 | cluster = &fs_info->meta_alloc_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10337 | spin_lock(&cluster->refill_lock); |
| 10338 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10339 | spin_unlock(&cluster->refill_lock); |
| 10340 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10341 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 10342 | if (!path) { |
| 10343 | ret = -ENOMEM; |
| 10344 | goto out; |
| 10345 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10346 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10347 | /* |
| 10348 | * get the inode first so any iput calls done for the io_list |
| 10349 | * aren't the final iput (no unlinks allowed now) |
| 10350 | */ |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 10351 | inode = lookup_free_space_inode(fs_info, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10352 | |
| 10353 | mutex_lock(&trans->transaction->cache_write_mutex); |
| 10354 | /* |
| 10355 | * make sure our free spache cache IO is done before remove the |
| 10356 | * free space inode |
| 10357 | */ |
| 10358 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10359 | if (!list_empty(&block_group->io_list)) { |
| 10360 | list_del_init(&block_group->io_list); |
| 10361 | |
| 10362 | WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode); |
| 10363 | |
| 10364 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 10365 | btrfs_wait_cache_io(trans, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10366 | btrfs_put_block_group(block_group); |
| 10367 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10368 | } |
| 10369 | |
| 10370 | if (!list_empty(&block_group->dirty_list)) { |
| 10371 | list_del_init(&block_group->dirty_list); |
| 10372 | btrfs_put_block_group(block_group); |
| 10373 | } |
| 10374 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 10375 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 10376 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10377 | if (!IS_ERR(inode)) { |
Nikolay Borisov | 73f2e54 | 2017-02-20 13:50:59 +0200 | [diff] [blame] | 10378 | ret = btrfs_orphan_add(trans, BTRFS_I(inode)); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 10379 | if (ret) { |
| 10380 | btrfs_add_delayed_iput(inode); |
| 10381 | goto out; |
| 10382 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10383 | clear_nlink(inode); |
| 10384 | /* One for the block groups ref */ |
| 10385 | spin_lock(&block_group->lock); |
| 10386 | if (block_group->iref) { |
| 10387 | block_group->iref = 0; |
| 10388 | block_group->inode = NULL; |
| 10389 | spin_unlock(&block_group->lock); |
| 10390 | iput(inode); |
| 10391 | } else { |
| 10392 | spin_unlock(&block_group->lock); |
| 10393 | } |
| 10394 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 10395 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10396 | } |
| 10397 | |
| 10398 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 10399 | key.offset = block_group->key.objectid; |
| 10400 | key.type = 0; |
| 10401 | |
| 10402 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 10403 | if (ret < 0) |
| 10404 | goto out; |
| 10405 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10406 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10407 | if (ret == 0) { |
| 10408 | ret = btrfs_del_item(trans, tree_root, path); |
| 10409 | if (ret) |
| 10410 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10411 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10412 | } |
| 10413 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10414 | spin_lock(&fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10415 | rb_erase(&block_group->cache_node, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10416 | &fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 10417 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 10418 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10419 | if (fs_info->first_logical_byte == block_group->key.objectid) |
| 10420 | fs_info->first_logical_byte = (u64)-1; |
| 10421 | spin_unlock(&fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10422 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10423 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10424 | /* |
| 10425 | * we must use list_del_init so people can check to see if they |
| 10426 | * are still on the list after taking the semaphore |
| 10427 | */ |
| 10428 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10429 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10430 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 10431 | block_group->space_info->block_group_kobjs[index] = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10432 | clear_avail_alloc_bits(fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10433 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10434 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10435 | if (kobj) { |
| 10436 | kobject_del(kobj); |
| 10437 | kobject_put(kobj); |
| 10438 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10439 | |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10440 | if (block_group->has_caching_ctl) |
| 10441 | caching_ctl = get_caching_control(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10442 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10443 | wait_block_group_cache_done(block_group); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10444 | if (block_group->has_caching_ctl) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10445 | down_write(&fs_info->commit_root_sem); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10446 | if (!caching_ctl) { |
| 10447 | struct btrfs_caching_control *ctl; |
| 10448 | |
| 10449 | list_for_each_entry(ctl, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10450 | &fs_info->caching_block_groups, list) |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10451 | if (ctl->block_group == block_group) { |
| 10452 | caching_ctl = ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 10453 | refcount_inc(&caching_ctl->count); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10454 | break; |
| 10455 | } |
| 10456 | } |
| 10457 | if (caching_ctl) |
| 10458 | list_del_init(&caching_ctl->list); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10459 | up_write(&fs_info->commit_root_sem); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10460 | if (caching_ctl) { |
| 10461 | /* Once for the caching bgs list and once for us. */ |
| 10462 | put_caching_control(caching_ctl); |
| 10463 | put_caching_control(caching_ctl); |
| 10464 | } |
| 10465 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10466 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10467 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10468 | if (!list_empty(&block_group->dirty_list)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10469 | WARN_ON(1); |
| 10470 | } |
| 10471 | if (!list_empty(&block_group->io_list)) { |
| 10472 | WARN_ON(1); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10473 | } |
| 10474 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10475 | btrfs_remove_free_space_cache(block_group); |
| 10476 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10477 | spin_lock(&block_group->space_info->lock); |
Filipe Manana | 75c68e9 | 2015-01-16 13:24:40 +0000 | [diff] [blame] | 10478 | list_del_init(&block_group->ro_list); |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10479 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10480 | if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10481 | WARN_ON(block_group->space_info->total_bytes |
| 10482 | < block_group->key.offset); |
| 10483 | WARN_ON(block_group->space_info->bytes_readonly |
| 10484 | < block_group->key.offset); |
| 10485 | WARN_ON(block_group->space_info->disk_total |
| 10486 | < block_group->key.offset * factor); |
| 10487 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10488 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 10489 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10490 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10491 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10492 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 10493 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10494 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10495 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 10496 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 10497 | if (!list_empty(&em->list)) { |
| 10498 | /* We're in the transaction->pending_chunks list. */ |
| 10499 | free_extent_map(em); |
| 10500 | } |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10501 | spin_lock(&block_group->lock); |
| 10502 | block_group->removed = 1; |
| 10503 | /* |
| 10504 | * At this point trimming can't start on this block group, because we |
| 10505 | * removed the block group from the tree fs_info->block_group_cache_tree |
| 10506 | * so no one can't find it anymore and even if someone already got this |
| 10507 | * block group before we removed it from the rbtree, they have already |
| 10508 | * incremented block_group->trimming - if they didn't, they won't find |
| 10509 | * any free space entries because we already removed them all when we |
| 10510 | * called btrfs_remove_free_space_cache(). |
| 10511 | * |
| 10512 | * And we must not remove the extent map from the fs_info->mapping_tree |
| 10513 | * to prevent the same logical address range and physical device space |
| 10514 | * ranges from being reused for a new block group. This is because our |
| 10515 | * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is |
| 10516 | * completely transactionless, so while it is trimming a range the |
| 10517 | * currently running transaction might finish and a new one start, |
| 10518 | * allowing for new block groups to be created that can reuse the same |
| 10519 | * physical device locations unless we take this special care. |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10520 | * |
| 10521 | * There may also be an implicit trim operation if the file system |
| 10522 | * is mounted with -odiscard. The same protections must remain |
| 10523 | * in place until the extents have been discarded completely when |
| 10524 | * the transaction commit has completed. |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10525 | */ |
| 10526 | remove_em = (atomic_read(&block_group->trimming) == 0); |
| 10527 | /* |
| 10528 | * Make sure a trimmer task always sees the em in the pinned_chunks list |
| 10529 | * if it sees block_group->removed == 1 (needs to lock block_group->lock |
| 10530 | * before checking block_group->removed). |
| 10531 | */ |
| 10532 | if (!remove_em) { |
| 10533 | /* |
| 10534 | * Our em might be in trans->transaction->pending_chunks which |
| 10535 | * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks), |
| 10536 | * and so is the fs_info->pinned_chunks list. |
| 10537 | * |
| 10538 | * So at this point we must be holding the chunk_mutex to avoid |
| 10539 | * any races with chunk allocation (more specifically at |
| 10540 | * volumes.c:contains_pending_extent()), to ensure it always |
| 10541 | * sees the em, either in the pending_chunks list or in the |
| 10542 | * pinned_chunks list. |
| 10543 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10544 | list_move_tail(&em->list, &fs_info->pinned_chunks); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10545 | } |
| 10546 | spin_unlock(&block_group->lock); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10547 | |
| 10548 | if (remove_em) { |
| 10549 | struct extent_map_tree *em_tree; |
| 10550 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10551 | em_tree = &fs_info->mapping_tree.map_tree; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10552 | write_lock(&em_tree->lock); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10553 | /* |
| 10554 | * The em might be in the pending_chunks list, so make sure the |
| 10555 | * chunk mutex is locked, since remove_extent_mapping() will |
| 10556 | * delete us from that list. |
| 10557 | */ |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10558 | remove_extent_mapping(em_tree, em); |
| 10559 | write_unlock(&em_tree->lock); |
| 10560 | /* once for the tree */ |
| 10561 | free_extent_map(em); |
| 10562 | } |
| 10563 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 10564 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10565 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10566 | ret = remove_block_group_free_space(trans, fs_info, block_group); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10567 | if (ret) |
| 10568 | goto out; |
| 10569 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 10570 | btrfs_put_block_group(block_group); |
| 10571 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10572 | |
| 10573 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 10574 | if (ret > 0) |
| 10575 | ret = -EIO; |
| 10576 | if (ret < 0) |
| 10577 | goto out; |
| 10578 | |
| 10579 | ret = btrfs_del_item(trans, root, path); |
| 10580 | out: |
| 10581 | btrfs_free_path(path); |
| 10582 | return ret; |
| 10583 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10584 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10585 | struct btrfs_trans_handle * |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10586 | btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info, |
| 10587 | const u64 chunk_offset) |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10588 | { |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10589 | struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree; |
| 10590 | struct extent_map *em; |
| 10591 | struct map_lookup *map; |
| 10592 | unsigned int num_items; |
| 10593 | |
| 10594 | read_lock(&em_tree->lock); |
| 10595 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 10596 | read_unlock(&em_tree->lock); |
| 10597 | ASSERT(em && em->start == chunk_offset); |
| 10598 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10599 | /* |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10600 | * We need to reserve 3 + N units from the metadata space info in order |
| 10601 | * to remove a block group (done at btrfs_remove_chunk() and at |
| 10602 | * btrfs_remove_block_group()), which are used for: |
| 10603 | * |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10604 | * 1 unit for adding the free space inode's orphan (located in the tree |
| 10605 | * of tree roots). |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10606 | * 1 unit for deleting the block group item (located in the extent |
| 10607 | * tree). |
| 10608 | * 1 unit for deleting the free space item (located in tree of tree |
| 10609 | * roots). |
| 10610 | * N units for deleting N device extent items corresponding to each |
| 10611 | * stripe (located in the device tree). |
| 10612 | * |
| 10613 | * In order to remove a block group we also need to reserve units in the |
| 10614 | * system space info in order to update the chunk tree (update one or |
| 10615 | * more device items and remove one chunk item), but this is done at |
| 10616 | * btrfs_remove_chunk() through a call to check_system_chunk(). |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10617 | */ |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 10618 | map = em->map_lookup; |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10619 | num_items = 3 + map->num_stripes; |
| 10620 | free_extent_map(em); |
| 10621 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10622 | return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root, |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10623 | num_items, 1); |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10624 | } |
| 10625 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10626 | /* |
| 10627 | * Process the unused_bgs list and remove any that don't have any allocated |
| 10628 | * space inside of them. |
| 10629 | */ |
| 10630 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 10631 | { |
| 10632 | struct btrfs_block_group_cache *block_group; |
| 10633 | struct btrfs_space_info *space_info; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10634 | struct btrfs_trans_handle *trans; |
| 10635 | int ret = 0; |
| 10636 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 10637 | if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags)) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10638 | return; |
| 10639 | |
| 10640 | spin_lock(&fs_info->unused_bgs_lock); |
| 10641 | while (!list_empty(&fs_info->unused_bgs)) { |
| 10642 | u64 start, end; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10643 | int trimming; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10644 | |
| 10645 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 10646 | struct btrfs_block_group_cache, |
| 10647 | bg_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10648 | list_del_init(&block_group->bg_list); |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10649 | |
| 10650 | space_info = block_group->space_info; |
| 10651 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10652 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 10653 | btrfs_put_block_group(block_group); |
| 10654 | continue; |
| 10655 | } |
| 10656 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10657 | |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10658 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10659 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10660 | /* Don't want to race with allocators so take the groups_sem */ |
| 10661 | down_write(&space_info->groups_sem); |
| 10662 | spin_lock(&block_group->lock); |
| 10663 | if (block_group->reserved || |
| 10664 | btrfs_block_group_used(&block_group->item) || |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 10665 | block_group->ro || |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10666 | list_is_singular(&block_group->list)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10667 | /* |
| 10668 | * We want to bail if we made new allocations or have |
| 10669 | * outstanding allocations in this block group. We do |
| 10670 | * the ro check in case balance is currently acting on |
| 10671 | * this block group. |
| 10672 | */ |
| 10673 | spin_unlock(&block_group->lock); |
| 10674 | up_write(&space_info->groups_sem); |
| 10675 | goto next; |
| 10676 | } |
| 10677 | spin_unlock(&block_group->lock); |
| 10678 | |
| 10679 | /* 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] | 10680 | ret = inc_block_group_ro(block_group, 0); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10681 | up_write(&space_info->groups_sem); |
| 10682 | if (ret < 0) { |
| 10683 | ret = 0; |
| 10684 | goto next; |
| 10685 | } |
| 10686 | |
| 10687 | /* |
| 10688 | * Want to do this before we do anything else so we can recover |
| 10689 | * properly if we fail to join the transaction. |
| 10690 | */ |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10691 | trans = btrfs_start_trans_remove_block_group(fs_info, |
| 10692 | block_group->key.objectid); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10693 | if (IS_ERR(trans)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10694 | btrfs_dec_block_group_ro(block_group); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10695 | ret = PTR_ERR(trans); |
| 10696 | goto next; |
| 10697 | } |
| 10698 | |
| 10699 | /* |
| 10700 | * We could have pending pinned extents for this block group, |
| 10701 | * just delete them, we don't care about them anymore. |
| 10702 | */ |
| 10703 | start = block_group->key.objectid; |
| 10704 | end = start + block_group->key.offset - 1; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10705 | /* |
| 10706 | * Hold the unused_bg_unpin_mutex lock to avoid racing with |
| 10707 | * btrfs_finish_extent_commit(). If we are at transaction N, |
| 10708 | * another task might be running finish_extent_commit() for the |
| 10709 | * previous transaction N - 1, and have seen a range belonging |
| 10710 | * to the block group in freed_extents[] before we were able to |
| 10711 | * clear the whole block group range from freed_extents[]. This |
| 10712 | * means that task can lookup for the block group after we |
| 10713 | * unpinned it from freed_extents[] and removed it, leading to |
| 10714 | * a BUG_ON() at btrfs_unpin_extent_range(). |
| 10715 | */ |
| 10716 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10717 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10718 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10719 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10720 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10721 | btrfs_dec_block_group_ro(block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10722 | goto end_trans; |
| 10723 | } |
| 10724 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10725 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10726 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10727 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10728 | btrfs_dec_block_group_ro(block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10729 | goto end_trans; |
| 10730 | } |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10731 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10732 | |
| 10733 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10734 | spin_lock(&space_info->lock); |
| 10735 | spin_lock(&block_group->lock); |
| 10736 | |
| 10737 | space_info->bytes_pinned -= block_group->pinned; |
| 10738 | space_info->bytes_readonly += block_group->pinned; |
| 10739 | percpu_counter_add(&space_info->total_bytes_pinned, |
| 10740 | -block_group->pinned); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10741 | block_group->pinned = 0; |
| 10742 | |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10743 | spin_unlock(&block_group->lock); |
| 10744 | spin_unlock(&space_info->lock); |
| 10745 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10746 | /* DISCARD can flip during remount */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10747 | trimming = btrfs_test_opt(fs_info, DISCARD); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10748 | |
| 10749 | /* Implicit trim during transaction commit. */ |
| 10750 | if (trimming) |
| 10751 | btrfs_get_block_group_trimming(block_group); |
| 10752 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10753 | /* |
| 10754 | * Btrfs_remove_chunk will abort the transaction if things go |
| 10755 | * horribly wrong. |
| 10756 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 10757 | ret = btrfs_remove_chunk(trans, fs_info, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10758 | block_group->key.objectid); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10759 | |
| 10760 | if (ret) { |
| 10761 | if (trimming) |
| 10762 | btrfs_put_block_group_trimming(block_group); |
| 10763 | goto end_trans; |
| 10764 | } |
| 10765 | |
| 10766 | /* |
| 10767 | * If we're not mounted with -odiscard, we can just forget |
| 10768 | * about this block group. Otherwise we'll need to wait |
| 10769 | * until transaction commit to do the actual discard. |
| 10770 | */ |
| 10771 | if (trimming) { |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10772 | spin_lock(&fs_info->unused_bgs_lock); |
| 10773 | /* |
| 10774 | * A concurrent scrub might have added us to the list |
| 10775 | * fs_info->unused_bgs, so use a list_move operation |
| 10776 | * to add the block group to the deleted_bgs list. |
| 10777 | */ |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10778 | list_move(&block_group->bg_list, |
| 10779 | &trans->transaction->deleted_bgs); |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10780 | spin_unlock(&fs_info->unused_bgs_lock); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10781 | btrfs_get_block_group(block_group); |
| 10782 | } |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10783 | end_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 10784 | btrfs_end_transaction(trans); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10785 | next: |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10786 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10787 | btrfs_put_block_group(block_group); |
| 10788 | spin_lock(&fs_info->unused_bgs_lock); |
| 10789 | } |
| 10790 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10791 | } |
| 10792 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10793 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 10794 | { |
| 10795 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10796 | struct btrfs_super_block *disk_super; |
| 10797 | u64 features; |
| 10798 | u64 flags; |
| 10799 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10800 | int ret; |
| 10801 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10802 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10803 | if (!btrfs_super_root(disk_super)) |
Dan Carpenter | 0dc924c5 | 2016-01-13 15:21:17 +0300 | [diff] [blame] | 10804 | return -EINVAL; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10805 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10806 | features = btrfs_super_incompat_flags(disk_super); |
| 10807 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 10808 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10809 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10810 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10811 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10812 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10813 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10814 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10815 | if (mixed) { |
| 10816 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10817 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10818 | } else { |
| 10819 | flags = BTRFS_BLOCK_GROUP_METADATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10820 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10821 | if (ret) |
| 10822 | goto out; |
| 10823 | |
| 10824 | flags = BTRFS_BLOCK_GROUP_DATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10825 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10826 | } |
| 10827 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10828 | return ret; |
| 10829 | } |
| 10830 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10831 | int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info, |
| 10832 | u64 start, u64 end) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10833 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10834 | return unpin_extent_range(fs_info, start, end, false); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10835 | } |
| 10836 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10837 | /* |
| 10838 | * It used to be that old block groups would be left around forever. |
| 10839 | * Iterating over them would be enough to trim unused space. Since we |
| 10840 | * now automatically remove them, we also need to iterate over unallocated |
| 10841 | * space. |
| 10842 | * |
| 10843 | * We don't want a transaction for this since the discard may take a |
| 10844 | * substantial amount of time. We don't require that a transaction be |
| 10845 | * running, but we do need to take a running transaction into account |
| 10846 | * to ensure that we're not discarding chunks that were released in |
| 10847 | * the current transaction. |
| 10848 | * |
| 10849 | * Holding the chunks lock will prevent other threads from allocating |
| 10850 | * or releasing chunks, but it won't prevent a running transaction |
| 10851 | * from committing and releasing the memory that the pending chunks |
| 10852 | * list head uses. For that, we need to take a reference to the |
| 10853 | * transaction. |
| 10854 | */ |
| 10855 | static int btrfs_trim_free_extents(struct btrfs_device *device, |
| 10856 | u64 minlen, u64 *trimmed) |
| 10857 | { |
| 10858 | u64 start = 0, len = 0; |
| 10859 | int ret; |
| 10860 | |
| 10861 | *trimmed = 0; |
| 10862 | |
| 10863 | /* Not writeable = nothing to do. */ |
| 10864 | if (!device->writeable) |
| 10865 | return 0; |
| 10866 | |
| 10867 | /* No free space = nothing to do. */ |
| 10868 | if (device->total_bytes <= device->bytes_used) |
| 10869 | return 0; |
| 10870 | |
| 10871 | ret = 0; |
| 10872 | |
| 10873 | while (1) { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 10874 | struct btrfs_fs_info *fs_info = device->fs_info; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10875 | struct btrfs_transaction *trans; |
| 10876 | u64 bytes; |
| 10877 | |
| 10878 | ret = mutex_lock_interruptible(&fs_info->chunk_mutex); |
| 10879 | if (ret) |
| 10880 | return ret; |
| 10881 | |
| 10882 | down_read(&fs_info->commit_root_sem); |
| 10883 | |
| 10884 | spin_lock(&fs_info->trans_lock); |
| 10885 | trans = fs_info->running_transaction; |
| 10886 | if (trans) |
Elena Reshetova | 9b64f57 | 2017-03-03 10:55:11 +0200 | [diff] [blame] | 10887 | refcount_inc(&trans->use_count); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10888 | spin_unlock(&fs_info->trans_lock); |
| 10889 | |
| 10890 | ret = find_free_dev_extent_start(trans, device, minlen, start, |
| 10891 | &start, &len); |
| 10892 | if (trans) |
| 10893 | btrfs_put_transaction(trans); |
| 10894 | |
| 10895 | if (ret) { |
| 10896 | up_read(&fs_info->commit_root_sem); |
| 10897 | mutex_unlock(&fs_info->chunk_mutex); |
| 10898 | if (ret == -ENOSPC) |
| 10899 | ret = 0; |
| 10900 | break; |
| 10901 | } |
| 10902 | |
| 10903 | ret = btrfs_issue_discard(device->bdev, start, len, &bytes); |
| 10904 | up_read(&fs_info->commit_root_sem); |
| 10905 | mutex_unlock(&fs_info->chunk_mutex); |
| 10906 | |
| 10907 | if (ret) |
| 10908 | break; |
| 10909 | |
| 10910 | start += len; |
| 10911 | *trimmed += bytes; |
| 10912 | |
| 10913 | if (fatal_signal_pending(current)) { |
| 10914 | ret = -ERESTARTSYS; |
| 10915 | break; |
| 10916 | } |
| 10917 | |
| 10918 | cond_resched(); |
| 10919 | } |
| 10920 | |
| 10921 | return ret; |
| 10922 | } |
| 10923 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10924 | 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] | 10925 | { |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10926 | struct btrfs_block_group_cache *cache = NULL; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10927 | struct btrfs_device *device; |
| 10928 | struct list_head *devices; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10929 | u64 group_trimmed; |
| 10930 | u64 start; |
| 10931 | u64 end; |
| 10932 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10933 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10934 | int ret = 0; |
| 10935 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10936 | /* |
| 10937 | * try to trim all FS space, our block group may start from non-zero. |
| 10938 | */ |
| 10939 | if (range->len == total_bytes) |
| 10940 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 10941 | else |
| 10942 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10943 | |
| 10944 | while (cache) { |
| 10945 | if (cache->key.objectid >= (range->start + range->len)) { |
| 10946 | btrfs_put_block_group(cache); |
| 10947 | break; |
| 10948 | } |
| 10949 | |
| 10950 | start = max(range->start, cache->key.objectid); |
| 10951 | end = min(range->start + range->len, |
| 10952 | cache->key.objectid + cache->key.offset); |
| 10953 | |
| 10954 | if (end - start >= range->minlen) { |
| 10955 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 10956 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 10957 | if (ret) { |
| 10958 | btrfs_put_block_group(cache); |
| 10959 | break; |
| 10960 | } |
| 10961 | ret = wait_block_group_cache_done(cache); |
| 10962 | if (ret) { |
| 10963 | btrfs_put_block_group(cache); |
| 10964 | break; |
| 10965 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10966 | } |
| 10967 | ret = btrfs_trim_block_group(cache, |
| 10968 | &group_trimmed, |
| 10969 | start, |
| 10970 | end, |
| 10971 | range->minlen); |
| 10972 | |
| 10973 | trimmed += group_trimmed; |
| 10974 | if (ret) { |
| 10975 | btrfs_put_block_group(cache); |
| 10976 | break; |
| 10977 | } |
| 10978 | } |
| 10979 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10980 | cache = next_block_group(fs_info, cache); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10981 | } |
| 10982 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10983 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
| 10984 | devices = &fs_info->fs_devices->alloc_list; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10985 | list_for_each_entry(device, devices, dev_alloc_list) { |
| 10986 | ret = btrfs_trim_free_extents(device, range->minlen, |
| 10987 | &group_trimmed); |
| 10988 | if (ret) |
| 10989 | break; |
| 10990 | |
| 10991 | trimmed += group_trimmed; |
| 10992 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10993 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10994 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10995 | range->len = trimmed; |
| 10996 | return ret; |
| 10997 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10998 | |
| 10999 | /* |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11000 | * btrfs_{start,end}_write_no_snapshoting() are similar to |
| 11001 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 11002 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 11003 | * but flush the data into disk after the snapshot creation, or to prevent |
| 11004 | * operations while snapshoting is ongoing and that cause the snapshot to be |
| 11005 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11006 | */ |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11007 | void btrfs_end_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11008 | { |
| 11009 | percpu_counter_dec(&root->subv_writers->counter); |
| 11010 | /* |
David Sterba | a83342a | 2015-02-16 19:36:47 +0100 | [diff] [blame] | 11011 | * Make sure counter is updated before we wake up waiters. |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11012 | */ |
| 11013 | smp_mb(); |
| 11014 | if (waitqueue_active(&root->subv_writers->wait)) |
| 11015 | wake_up(&root->subv_writers->wait); |
| 11016 | } |
| 11017 | |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11018 | int btrfs_start_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11019 | { |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 11020 | if (atomic_read(&root->will_be_snapshoted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11021 | return 0; |
| 11022 | |
| 11023 | percpu_counter_inc(&root->subv_writers->counter); |
| 11024 | /* |
| 11025 | * Make sure counter is updated before we check for snapshot creation. |
| 11026 | */ |
| 11027 | smp_mb(); |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 11028 | if (atomic_read(&root->will_be_snapshoted)) { |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11029 | btrfs_end_write_no_snapshoting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11030 | return 0; |
| 11031 | } |
| 11032 | return 1; |
| 11033 | } |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11034 | |
| 11035 | static int wait_snapshoting_atomic_t(atomic_t *a) |
| 11036 | { |
| 11037 | schedule(); |
| 11038 | return 0; |
| 11039 | } |
| 11040 | |
| 11041 | void btrfs_wait_for_snapshot_creation(struct btrfs_root *root) |
| 11042 | { |
| 11043 | while (true) { |
| 11044 | int ret; |
| 11045 | |
| 11046 | ret = btrfs_start_write_no_snapshoting(root); |
| 11047 | if (ret) |
| 11048 | break; |
| 11049 | wait_on_atomic_t(&root->will_be_snapshoted, |
| 11050 | wait_snapshoting_atomic_t, |
| 11051 | TASK_UNINTERRUPTIBLE); |
| 11052 | } |
| 11053 | } |