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 | |
Omar Sandoval | 0d9f824 | 2017-06-06 16:45:26 -0700 | [diff] [blame] | 770 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, s64 num_bytes, |
| 771 | u64 owner, u64 root_objectid) |
| 772 | { |
| 773 | struct btrfs_space_info *space_info; |
| 774 | u64 flags; |
| 775 | |
| 776 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 777 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 778 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 779 | else |
| 780 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 781 | } else { |
| 782 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 783 | } |
| 784 | |
| 785 | space_info = __find_space_info(fs_info, flags); |
Omar Sandoval | 55e8196 | 2017-06-06 16:45:27 -0700 | [diff] [blame] | 786 | ASSERT(space_info); |
Omar Sandoval | 0d9f824 | 2017-06-06 16:45:26 -0700 | [diff] [blame] | 787 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 788 | } |
| 789 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 790 | /* |
| 791 | * after adding space to the filesystem, we need to clear the full flags |
| 792 | * on all the space infos. |
| 793 | */ |
| 794 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 795 | { |
| 796 | struct list_head *head = &info->space_info; |
| 797 | struct btrfs_space_info *found; |
| 798 | |
| 799 | rcu_read_lock(); |
| 800 | list_for_each_entry_rcu(found, head, list) |
| 801 | found->full = 0; |
| 802 | rcu_read_unlock(); |
| 803 | } |
| 804 | |
Filipe Manana | 1a4ed8f | 2014-10-27 10:44:24 +0000 | [diff] [blame] | 805 | /* 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] | 806 | 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] | 807 | { |
| 808 | int ret; |
| 809 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 810 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 811 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 812 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 813 | if (!path) |
| 814 | return -ENOMEM; |
| 815 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 816 | key.objectid = start; |
| 817 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 818 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 819 | 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] | 820 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 821 | return ret; |
| 822 | } |
| 823 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 824 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 825 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 826 | * |
| 827 | * the head node for delayed ref is used to store the sum of all the |
| 828 | * reference count modifications queued up in the rbtree. the head |
| 829 | * node may also store the extent flags to set. This way you can check |
| 830 | * to see what the reference count and extent flags would be if all of |
| 831 | * the delayed refs are not processed. |
| 832 | */ |
| 833 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 834 | struct btrfs_fs_info *fs_info, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 835 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 836 | { |
| 837 | struct btrfs_delayed_ref_head *head; |
| 838 | struct btrfs_delayed_ref_root *delayed_refs; |
| 839 | struct btrfs_path *path; |
| 840 | struct btrfs_extent_item *ei; |
| 841 | struct extent_buffer *leaf; |
| 842 | struct btrfs_key key; |
| 843 | u32 item_size; |
| 844 | u64 num_refs; |
| 845 | u64 extent_flags; |
| 846 | int ret; |
| 847 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 848 | /* |
| 849 | * If we don't have skinny metadata, don't bother doing anything |
| 850 | * different |
| 851 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 852 | if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) { |
| 853 | offset = fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 854 | metadata = 0; |
| 855 | } |
| 856 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 857 | path = btrfs_alloc_path(); |
| 858 | if (!path) |
| 859 | return -ENOMEM; |
| 860 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 861 | if (!trans) { |
| 862 | path->skip_locking = 1; |
| 863 | path->search_commit_root = 1; |
| 864 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 865 | |
| 866 | search_again: |
| 867 | key.objectid = bytenr; |
| 868 | key.offset = offset; |
| 869 | if (metadata) |
| 870 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 871 | else |
| 872 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 873 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 874 | 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] | 875 | if (ret < 0) |
| 876 | goto out_free; |
| 877 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 878 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 879 | if (path->slots[0]) { |
| 880 | path->slots[0]--; |
| 881 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 882 | path->slots[0]); |
| 883 | if (key.objectid == bytenr && |
| 884 | key.type == BTRFS_EXTENT_ITEM_KEY && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 885 | key.offset == fs_info->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 886 | ret = 0; |
| 887 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 888 | } |
| 889 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 890 | if (ret == 0) { |
| 891 | leaf = path->nodes[0]; |
| 892 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 893 | if (item_size >= sizeof(*ei)) { |
| 894 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 895 | struct btrfs_extent_item); |
| 896 | num_refs = btrfs_extent_refs(leaf, ei); |
| 897 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 898 | } else { |
| 899 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 900 | struct btrfs_extent_item_v0 *ei0; |
| 901 | BUG_ON(item_size != sizeof(*ei0)); |
| 902 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 903 | struct btrfs_extent_item_v0); |
| 904 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 905 | /* FIXME: this isn't correct for data */ |
| 906 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 907 | #else |
| 908 | BUG(); |
| 909 | #endif |
| 910 | } |
| 911 | BUG_ON(num_refs == 0); |
| 912 | } else { |
| 913 | num_refs = 0; |
| 914 | extent_flags = 0; |
| 915 | ret = 0; |
| 916 | } |
| 917 | |
| 918 | if (!trans) |
| 919 | goto out; |
| 920 | |
| 921 | delayed_refs = &trans->transaction->delayed_refs; |
| 922 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 923 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 924 | if (head) { |
| 925 | if (!mutex_trylock(&head->mutex)) { |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 926 | refcount_inc(&head->node.refs); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 927 | spin_unlock(&delayed_refs->lock); |
| 928 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 929 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 930 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 931 | /* |
| 932 | * Mutex was contended, block until it's released and try |
| 933 | * again |
| 934 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 935 | mutex_lock(&head->mutex); |
| 936 | mutex_unlock(&head->mutex); |
| 937 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 938 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 939 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 940 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 941 | if (head->extent_op && head->extent_op->update_flags) |
| 942 | extent_flags |= head->extent_op->flags_to_set; |
| 943 | else |
| 944 | BUG_ON(num_refs == 0); |
| 945 | |
| 946 | num_refs += head->node.ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 947 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 948 | mutex_unlock(&head->mutex); |
| 949 | } |
| 950 | spin_unlock(&delayed_refs->lock); |
| 951 | out: |
| 952 | WARN_ON(num_refs == 0); |
| 953 | if (refs) |
| 954 | *refs = num_refs; |
| 955 | if (flags) |
| 956 | *flags = extent_flags; |
| 957 | out_free: |
| 958 | btrfs_free_path(path); |
| 959 | return ret; |
| 960 | } |
| 961 | |
| 962 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 963 | * Back reference rules. Back refs have three main goals: |
| 964 | * |
| 965 | * 1) differentiate between all holders of references to an extent so that |
| 966 | * when a reference is dropped we can make sure it was a valid reference |
| 967 | * before freeing the extent. |
| 968 | * |
| 969 | * 2) Provide enough information to quickly find the holders of an extent |
| 970 | * if we notice a given block is corrupted or bad. |
| 971 | * |
| 972 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 973 | * maintenance. This is actually the same as #2, but with a slightly |
| 974 | * different use case. |
| 975 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 976 | * There are two kinds of back refs. The implicit back refs is optimized |
| 977 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 978 | * back refs of this kind provide information about the block's owner tree |
| 979 | * and the pointer's key. These information allow us to find the block by |
| 980 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 981 | * referenced by their owner trees. The location of tree block is recorded |
| 982 | * in the back refs. Actually the full back refs is generic, and can be |
| 983 | * used in all cases the implicit back refs is used. The major shortcoming |
| 984 | * of the full back refs is its overhead. Every time a tree block gets |
| 985 | * COWed, we have to update back refs entry for all pointers in it. |
| 986 | * |
| 987 | * For a newly allocated tree block, we use implicit back refs for |
| 988 | * pointers in it. This means most tree related operations only involve |
| 989 | * implicit back refs. For a tree block created in old transaction, the |
| 990 | * only way to drop a reference to it is COW it. So we can detect the |
| 991 | * event that tree block loses its owner tree's reference and do the |
| 992 | * back refs conversion. |
| 993 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 994 | * 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] | 995 | * |
| 996 | * The reference count of the block is one and the tree is the block's |
| 997 | * owner tree. Nothing to do in this case. |
| 998 | * |
| 999 | * The reference count of the block is one and the tree is not the |
| 1000 | * block's owner tree. In this case, full back refs is used for pointers |
| 1001 | * in the block. Remove these full back refs, add implicit back refs for |
| 1002 | * every pointers in the new block. |
| 1003 | * |
| 1004 | * The reference count of the block is greater than one and the tree is |
| 1005 | * the block's owner tree. In this case, implicit back refs is used for |
| 1006 | * pointers in the block. Add full back refs for every pointers in the |
| 1007 | * block, increase lower level extents' reference counts. The original |
| 1008 | * implicit back refs are entailed to the new block. |
| 1009 | * |
| 1010 | * The reference count of the block is greater than one and the tree is |
| 1011 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 1012 | * the new block, increase lower level extents' reference count. |
| 1013 | * |
| 1014 | * Back Reference Key composing: |
| 1015 | * |
| 1016 | * The key objectid corresponds to the first byte in the extent, |
| 1017 | * The key type is used to differentiate between types of back refs. |
| 1018 | * There are different meanings of the key offset for different types |
| 1019 | * of back refs. |
| 1020 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1021 | * File extents can be referenced by: |
| 1022 | * |
| 1023 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1024 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1025 | * - different offsets inside a file (bookend extents in file.c) |
| 1026 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1027 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1028 | * |
| 1029 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1030 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1031 | * - original offset in the file |
| 1032 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1033 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1034 | * The key offset for the implicit back refs is hash of the first |
| 1035 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1036 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1037 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1038 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1039 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1040 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1041 | * The key offset for the implicit back refs is the first byte of |
| 1042 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1043 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1044 | * When a file extent is allocated, The implicit back refs is used. |
| 1045 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1046 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1047 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 1048 | * |
| 1049 | * When a file extent is removed file truncation, we find the |
| 1050 | * corresponding implicit back refs and check the following fields: |
| 1051 | * |
| 1052 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1053 | * |
| 1054 | * Btree extents can be referenced by: |
| 1055 | * |
| 1056 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1057 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1058 | * Both the implicit back refs and the full back refs for tree blocks |
| 1059 | * only consist of key. The key offset for the implicit back refs is |
| 1060 | * objectid of block's owner tree. The key offset for the full back refs |
| 1061 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1062 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1063 | * When implicit back refs is used, information about the lowest key and |
| 1064 | * level of the tree block are required. These information are stored in |
| 1065 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1066 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1067 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1068 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1069 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1070 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1071 | struct btrfs_path *path, |
| 1072 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1073 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1074 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1075 | struct btrfs_extent_item *item; |
| 1076 | struct btrfs_extent_item_v0 *ei0; |
| 1077 | struct btrfs_extent_ref_v0 *ref0; |
| 1078 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1079 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1080 | struct btrfs_key key; |
| 1081 | struct btrfs_key found_key; |
| 1082 | u32 new_size = sizeof(*item); |
| 1083 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1084 | int ret; |
| 1085 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1086 | leaf = path->nodes[0]; |
| 1087 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1088 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1089 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1090 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1091 | struct btrfs_extent_item_v0); |
| 1092 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1093 | |
| 1094 | if (owner == (u64)-1) { |
| 1095 | while (1) { |
| 1096 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1097 | ret = btrfs_next_leaf(root, path); |
| 1098 | if (ret < 0) |
| 1099 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1100 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1101 | leaf = path->nodes[0]; |
| 1102 | } |
| 1103 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1104 | path->slots[0]); |
| 1105 | BUG_ON(key.objectid != found_key.objectid); |
| 1106 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1107 | path->slots[0]++; |
| 1108 | continue; |
| 1109 | } |
| 1110 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1111 | struct btrfs_extent_ref_v0); |
| 1112 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1113 | break; |
| 1114 | } |
| 1115 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1116 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1117 | |
| 1118 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1119 | new_size += sizeof(*bi); |
| 1120 | |
| 1121 | new_size -= sizeof(*ei0); |
| 1122 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1123 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1124 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1125 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1126 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1127 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1128 | btrfs_extend_item(fs_info, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1129 | |
| 1130 | leaf = path->nodes[0]; |
| 1131 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1132 | btrfs_set_extent_refs(leaf, item, refs); |
| 1133 | /* FIXME: get real generation */ |
| 1134 | btrfs_set_extent_generation(leaf, item, 0); |
| 1135 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1136 | btrfs_set_extent_flags(leaf, item, |
| 1137 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1138 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1139 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1140 | /* FIXME: get first key of the block */ |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 1141 | memzero_extent_buffer(leaf, (unsigned long)bi, sizeof(*bi)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1142 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1143 | } else { |
| 1144 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1145 | } |
| 1146 | btrfs_mark_buffer_dirty(leaf); |
| 1147 | return 0; |
| 1148 | } |
| 1149 | #endif |
| 1150 | |
| 1151 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1152 | { |
| 1153 | u32 high_crc = ~(u32)0; |
| 1154 | u32 low_crc = ~(u32)0; |
| 1155 | __le64 lenum; |
| 1156 | |
| 1157 | lenum = cpu_to_le64(root_objectid); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1158 | high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1159 | lenum = cpu_to_le64(owner); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1160 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1161 | lenum = cpu_to_le64(offset); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1162 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1163 | |
| 1164 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1165 | } |
| 1166 | |
| 1167 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1168 | struct btrfs_extent_data_ref *ref) |
| 1169 | { |
| 1170 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1171 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1172 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1173 | } |
| 1174 | |
| 1175 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1176 | struct btrfs_extent_data_ref *ref, |
| 1177 | u64 root_objectid, u64 owner, u64 offset) |
| 1178 | { |
| 1179 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1180 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1181 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1182 | return 0; |
| 1183 | return 1; |
| 1184 | } |
| 1185 | |
| 1186 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1187 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1188 | struct btrfs_path *path, |
| 1189 | u64 bytenr, u64 parent, |
| 1190 | u64 root_objectid, |
| 1191 | u64 owner, u64 offset) |
| 1192 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1193 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1194 | struct btrfs_key key; |
| 1195 | struct btrfs_extent_data_ref *ref; |
| 1196 | struct extent_buffer *leaf; |
| 1197 | u32 nritems; |
| 1198 | int ret; |
| 1199 | int recow; |
| 1200 | int err = -ENOENT; |
| 1201 | |
| 1202 | key.objectid = bytenr; |
| 1203 | if (parent) { |
| 1204 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1205 | key.offset = parent; |
| 1206 | } else { |
| 1207 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1208 | key.offset = hash_extent_data_ref(root_objectid, |
| 1209 | owner, offset); |
| 1210 | } |
| 1211 | again: |
| 1212 | recow = 0; |
| 1213 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1214 | if (ret < 0) { |
| 1215 | err = ret; |
| 1216 | goto fail; |
| 1217 | } |
| 1218 | |
| 1219 | if (parent) { |
| 1220 | if (!ret) |
| 1221 | return 0; |
| 1222 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1223 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1224 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1225 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1226 | if (ret < 0) { |
| 1227 | err = ret; |
| 1228 | goto fail; |
| 1229 | } |
| 1230 | if (!ret) |
| 1231 | return 0; |
| 1232 | #endif |
| 1233 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1237 | nritems = btrfs_header_nritems(leaf); |
| 1238 | while (1) { |
| 1239 | if (path->slots[0] >= nritems) { |
| 1240 | ret = btrfs_next_leaf(root, path); |
| 1241 | if (ret < 0) |
| 1242 | err = ret; |
| 1243 | if (ret) |
| 1244 | goto fail; |
| 1245 | |
| 1246 | leaf = path->nodes[0]; |
| 1247 | nritems = btrfs_header_nritems(leaf); |
| 1248 | recow = 1; |
| 1249 | } |
| 1250 | |
| 1251 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1252 | if (key.objectid != bytenr || |
| 1253 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1254 | goto fail; |
| 1255 | |
| 1256 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1257 | struct btrfs_extent_data_ref); |
| 1258 | |
| 1259 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1260 | owner, offset)) { |
| 1261 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1262 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1263 | goto again; |
| 1264 | } |
| 1265 | err = 0; |
| 1266 | break; |
| 1267 | } |
| 1268 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1269 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1270 | fail: |
| 1271 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1272 | } |
| 1273 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1274 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1275 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1276 | struct btrfs_path *path, |
| 1277 | u64 bytenr, u64 parent, |
| 1278 | u64 root_objectid, u64 owner, |
| 1279 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1280 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1281 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1282 | struct btrfs_key key; |
| 1283 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1284 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1285 | u32 num_refs; |
| 1286 | int ret; |
| 1287 | |
| 1288 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1289 | if (parent) { |
| 1290 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1291 | key.offset = parent; |
| 1292 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1293 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1294 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1295 | key.offset = hash_extent_data_ref(root_objectid, |
| 1296 | owner, offset); |
| 1297 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1298 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1299 | |
| 1300 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1301 | if (ret && ret != -EEXIST) |
| 1302 | goto fail; |
| 1303 | |
| 1304 | leaf = path->nodes[0]; |
| 1305 | if (parent) { |
| 1306 | struct btrfs_shared_data_ref *ref; |
| 1307 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1308 | struct btrfs_shared_data_ref); |
| 1309 | if (ret == 0) { |
| 1310 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1311 | } else { |
| 1312 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1313 | num_refs += refs_to_add; |
| 1314 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1315 | } |
| 1316 | } else { |
| 1317 | struct btrfs_extent_data_ref *ref; |
| 1318 | while (ret == -EEXIST) { |
| 1319 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1320 | struct btrfs_extent_data_ref); |
| 1321 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1322 | owner, offset)) |
| 1323 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1324 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1325 | key.offset++; |
| 1326 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1327 | size); |
| 1328 | if (ret && ret != -EEXIST) |
| 1329 | goto fail; |
| 1330 | |
| 1331 | leaf = path->nodes[0]; |
| 1332 | } |
| 1333 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1334 | struct btrfs_extent_data_ref); |
| 1335 | if (ret == 0) { |
| 1336 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1337 | root_objectid); |
| 1338 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1339 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1340 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1341 | } else { |
| 1342 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1343 | num_refs += refs_to_add; |
| 1344 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1345 | } |
| 1346 | } |
| 1347 | btrfs_mark_buffer_dirty(leaf); |
| 1348 | ret = 0; |
| 1349 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1350 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1351 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1352 | } |
| 1353 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1354 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1355 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1356 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1357 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1358 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1359 | struct btrfs_key key; |
| 1360 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1361 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1362 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1363 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1364 | int ret = 0; |
| 1365 | |
| 1366 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1367 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1368 | |
| 1369 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1370 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1371 | struct btrfs_extent_data_ref); |
| 1372 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1373 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1374 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1375 | struct btrfs_shared_data_ref); |
| 1376 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1377 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1378 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1379 | struct btrfs_extent_ref_v0 *ref0; |
| 1380 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1381 | struct btrfs_extent_ref_v0); |
| 1382 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1383 | #endif |
| 1384 | } else { |
| 1385 | BUG(); |
| 1386 | } |
| 1387 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1388 | BUG_ON(num_refs < refs_to_drop); |
| 1389 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1390 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1391 | if (num_refs == 0) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1392 | ret = btrfs_del_item(trans, fs_info->extent_root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1393 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1394 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1395 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1396 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1397 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1398 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1399 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1400 | else { |
| 1401 | struct btrfs_extent_ref_v0 *ref0; |
| 1402 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1403 | struct btrfs_extent_ref_v0); |
| 1404 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1405 | } |
| 1406 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1407 | btrfs_mark_buffer_dirty(leaf); |
| 1408 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1409 | return ret; |
| 1410 | } |
| 1411 | |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 1412 | static noinline u32 extent_data_ref_count(struct btrfs_path *path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1413 | struct btrfs_extent_inline_ref *iref) |
| 1414 | { |
| 1415 | struct btrfs_key key; |
| 1416 | struct extent_buffer *leaf; |
| 1417 | struct btrfs_extent_data_ref *ref1; |
| 1418 | struct btrfs_shared_data_ref *ref2; |
| 1419 | u32 num_refs = 0; |
| 1420 | |
| 1421 | leaf = path->nodes[0]; |
| 1422 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1423 | if (iref) { |
| 1424 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1425 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1426 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1427 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1428 | } else { |
| 1429 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1430 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1431 | } |
| 1432 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1433 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1434 | struct btrfs_extent_data_ref); |
| 1435 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1436 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1437 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1438 | struct btrfs_shared_data_ref); |
| 1439 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1440 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1441 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1442 | struct btrfs_extent_ref_v0 *ref0; |
| 1443 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1444 | struct btrfs_extent_ref_v0); |
| 1445 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1446 | #endif |
| 1447 | } else { |
| 1448 | WARN_ON(1); |
| 1449 | } |
| 1450 | return num_refs; |
| 1451 | } |
| 1452 | |
| 1453 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1454 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1455 | struct btrfs_path *path, |
| 1456 | u64 bytenr, u64 parent, |
| 1457 | u64 root_objectid) |
| 1458 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1459 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1460 | struct btrfs_key key; |
| 1461 | int ret; |
| 1462 | |
| 1463 | key.objectid = bytenr; |
| 1464 | if (parent) { |
| 1465 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1466 | key.offset = parent; |
| 1467 | } else { |
| 1468 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1469 | key.offset = root_objectid; |
| 1470 | } |
| 1471 | |
| 1472 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1473 | if (ret > 0) |
| 1474 | ret = -ENOENT; |
| 1475 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1476 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1477 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1478 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1479 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1480 | if (ret > 0) |
| 1481 | ret = -ENOENT; |
| 1482 | } |
| 1483 | #endif |
| 1484 | return ret; |
| 1485 | } |
| 1486 | |
| 1487 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1488 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1489 | struct btrfs_path *path, |
| 1490 | u64 bytenr, u64 parent, |
| 1491 | u64 root_objectid) |
| 1492 | { |
| 1493 | struct btrfs_key key; |
| 1494 | int ret; |
| 1495 | |
| 1496 | key.objectid = bytenr; |
| 1497 | if (parent) { |
| 1498 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1499 | key.offset = parent; |
| 1500 | } else { |
| 1501 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1502 | key.offset = root_objectid; |
| 1503 | } |
| 1504 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1505 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, |
| 1506 | path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1507 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1508 | return ret; |
| 1509 | } |
| 1510 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1511 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1512 | { |
| 1513 | int type; |
| 1514 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1515 | if (parent > 0) |
| 1516 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1517 | else |
| 1518 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1519 | } else { |
| 1520 | if (parent > 0) |
| 1521 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1522 | else |
| 1523 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1524 | } |
| 1525 | return type; |
| 1526 | } |
| 1527 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1528 | static int find_next_key(struct btrfs_path *path, int level, |
| 1529 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1530 | |
| 1531 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1532 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1533 | if (!path->nodes[level]) |
| 1534 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1535 | if (path->slots[level] + 1 >= |
| 1536 | btrfs_header_nritems(path->nodes[level])) |
| 1537 | continue; |
| 1538 | if (level == 0) |
| 1539 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1540 | path->slots[level] + 1); |
| 1541 | else |
| 1542 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1543 | path->slots[level] + 1); |
| 1544 | return 0; |
| 1545 | } |
| 1546 | return 1; |
| 1547 | } |
| 1548 | |
| 1549 | /* |
| 1550 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1551 | * to the address of inline back ref, and 0 is returned. |
| 1552 | * |
| 1553 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1554 | * should be inserted, and -ENOENT is returned. |
| 1555 | * |
| 1556 | * if insert is true and there are too many inline back refs, the path |
| 1557 | * points to the extent item, and -EAGAIN is returned. |
| 1558 | * |
| 1559 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1560 | * items in the tree are ordered. |
| 1561 | */ |
| 1562 | static noinline_for_stack |
| 1563 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1564 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1565 | struct btrfs_path *path, |
| 1566 | struct btrfs_extent_inline_ref **ref_ret, |
| 1567 | u64 bytenr, u64 num_bytes, |
| 1568 | u64 parent, u64 root_objectid, |
| 1569 | u64 owner, u64 offset, int insert) |
| 1570 | { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1571 | struct btrfs_root *root = fs_info->extent_root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1572 | struct btrfs_key key; |
| 1573 | struct extent_buffer *leaf; |
| 1574 | struct btrfs_extent_item *ei; |
| 1575 | struct btrfs_extent_inline_ref *iref; |
| 1576 | u64 flags; |
| 1577 | u64 item_size; |
| 1578 | unsigned long ptr; |
| 1579 | unsigned long end; |
| 1580 | int extra_size; |
| 1581 | int type; |
| 1582 | int want; |
| 1583 | int ret; |
| 1584 | int err = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1585 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1586 | |
| 1587 | key.objectid = bytenr; |
| 1588 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1589 | key.offset = num_bytes; |
| 1590 | |
| 1591 | want = extent_ref_type(parent, owner); |
| 1592 | if (insert) { |
| 1593 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1594 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1595 | } else |
| 1596 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1597 | |
| 1598 | /* |
| 1599 | * Owner is our parent level, so we can just add one to get the level |
| 1600 | * for the block we are interested in. |
| 1601 | */ |
| 1602 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1603 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1604 | key.offset = owner; |
| 1605 | } |
| 1606 | |
| 1607 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1608 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1609 | if (ret < 0) { |
| 1610 | err = ret; |
| 1611 | goto out; |
| 1612 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1613 | |
| 1614 | /* |
| 1615 | * We may be a newly converted file system which still has the old fat |
| 1616 | * extent entries for metadata, so try and see if we have one of those. |
| 1617 | */ |
| 1618 | if (ret > 0 && skinny_metadata) { |
| 1619 | skinny_metadata = false; |
| 1620 | if (path->slots[0]) { |
| 1621 | path->slots[0]--; |
| 1622 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1623 | path->slots[0]); |
| 1624 | if (key.objectid == bytenr && |
| 1625 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1626 | key.offset == num_bytes) |
| 1627 | ret = 0; |
| 1628 | } |
| 1629 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1630 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1631 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1632 | key.offset = num_bytes; |
| 1633 | btrfs_release_path(path); |
| 1634 | goto again; |
| 1635 | } |
| 1636 | } |
| 1637 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1638 | if (ret && !insert) { |
| 1639 | err = -ENOENT; |
| 1640 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1641 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1642 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1643 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1644 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1645 | |
| 1646 | leaf = path->nodes[0]; |
| 1647 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1648 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1649 | if (item_size < sizeof(*ei)) { |
| 1650 | if (!insert) { |
| 1651 | err = -ENOENT; |
| 1652 | goto out; |
| 1653 | } |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1654 | ret = convert_extent_item_v0(trans, fs_info, path, owner, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1655 | extra_size); |
| 1656 | if (ret < 0) { |
| 1657 | err = ret; |
| 1658 | goto out; |
| 1659 | } |
| 1660 | leaf = path->nodes[0]; |
| 1661 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1662 | } |
| 1663 | #endif |
| 1664 | BUG_ON(item_size < sizeof(*ei)); |
| 1665 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1666 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1667 | flags = btrfs_extent_flags(leaf, ei); |
| 1668 | |
| 1669 | ptr = (unsigned long)(ei + 1); |
| 1670 | end = (unsigned long)ei + item_size; |
| 1671 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1672 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1673 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1674 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1675 | } |
| 1676 | |
| 1677 | err = -ENOENT; |
| 1678 | while (1) { |
| 1679 | if (ptr >= end) { |
| 1680 | WARN_ON(ptr > end); |
| 1681 | break; |
| 1682 | } |
| 1683 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1684 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1685 | if (want < type) |
| 1686 | break; |
| 1687 | if (want > type) { |
| 1688 | ptr += btrfs_extent_inline_ref_size(type); |
| 1689 | continue; |
| 1690 | } |
| 1691 | |
| 1692 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1693 | struct btrfs_extent_data_ref *dref; |
| 1694 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1695 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1696 | owner, offset)) { |
| 1697 | err = 0; |
| 1698 | break; |
| 1699 | } |
| 1700 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1701 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1702 | break; |
| 1703 | } else { |
| 1704 | u64 ref_offset; |
| 1705 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1706 | if (parent > 0) { |
| 1707 | if (parent == ref_offset) { |
| 1708 | err = 0; |
| 1709 | break; |
| 1710 | } |
| 1711 | if (ref_offset < parent) |
| 1712 | break; |
| 1713 | } else { |
| 1714 | if (root_objectid == ref_offset) { |
| 1715 | err = 0; |
| 1716 | break; |
| 1717 | } |
| 1718 | if (ref_offset < root_objectid) |
| 1719 | break; |
| 1720 | } |
| 1721 | } |
| 1722 | ptr += btrfs_extent_inline_ref_size(type); |
| 1723 | } |
| 1724 | if (err == -ENOENT && insert) { |
| 1725 | if (item_size + extra_size >= |
| 1726 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1727 | err = -EAGAIN; |
| 1728 | goto out; |
| 1729 | } |
| 1730 | /* |
| 1731 | * To add new inline back ref, we have to make sure |
| 1732 | * there is no corresponding back ref item. |
| 1733 | * For simplicity, we just do not add new inline back |
| 1734 | * ref if there is any kind of item for this block |
| 1735 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1736 | if (find_next_key(path, 0, &key) == 0 && |
| 1737 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1738 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1739 | err = -EAGAIN; |
| 1740 | goto out; |
| 1741 | } |
| 1742 | } |
| 1743 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1744 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1745 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1746 | path->keep_locks = 0; |
| 1747 | btrfs_unlock_up_safe(path, 1); |
| 1748 | } |
| 1749 | return err; |
| 1750 | } |
| 1751 | |
| 1752 | /* |
| 1753 | * helper to add new inline back ref |
| 1754 | */ |
| 1755 | static noinline_for_stack |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1756 | void setup_inline_extent_backref(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1757 | struct btrfs_path *path, |
| 1758 | struct btrfs_extent_inline_ref *iref, |
| 1759 | u64 parent, u64 root_objectid, |
| 1760 | u64 owner, u64 offset, int refs_to_add, |
| 1761 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1762 | { |
| 1763 | struct extent_buffer *leaf; |
| 1764 | struct btrfs_extent_item *ei; |
| 1765 | unsigned long ptr; |
| 1766 | unsigned long end; |
| 1767 | unsigned long item_offset; |
| 1768 | u64 refs; |
| 1769 | int size; |
| 1770 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1771 | |
| 1772 | leaf = path->nodes[0]; |
| 1773 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1774 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1775 | |
| 1776 | type = extent_ref_type(parent, owner); |
| 1777 | size = btrfs_extent_inline_ref_size(type); |
| 1778 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1779 | btrfs_extend_item(fs_info, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1780 | |
| 1781 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1782 | refs = btrfs_extent_refs(leaf, ei); |
| 1783 | refs += refs_to_add; |
| 1784 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1785 | if (extent_op) |
| 1786 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1787 | |
| 1788 | ptr = (unsigned long)ei + item_offset; |
| 1789 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1790 | if (ptr < end - size) |
| 1791 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1792 | end - size - ptr); |
| 1793 | |
| 1794 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1795 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1796 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1797 | struct btrfs_extent_data_ref *dref; |
| 1798 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1799 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1800 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1801 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1802 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1803 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1804 | struct btrfs_shared_data_ref *sref; |
| 1805 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1806 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1807 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1808 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1809 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1810 | } else { |
| 1811 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1812 | } |
| 1813 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1814 | } |
| 1815 | |
| 1816 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1817 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1818 | struct btrfs_path *path, |
| 1819 | struct btrfs_extent_inline_ref **ref_ret, |
| 1820 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1821 | u64 root_objectid, u64 owner, u64 offset) |
| 1822 | { |
| 1823 | int ret; |
| 1824 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1825 | ret = lookup_inline_extent_backref(trans, fs_info, path, ref_ret, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1826 | bytenr, num_bytes, parent, |
| 1827 | root_objectid, owner, offset, 0); |
| 1828 | if (ret != -ENOENT) |
| 1829 | return ret; |
| 1830 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1831 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1832 | *ref_ret = NULL; |
| 1833 | |
| 1834 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1835 | ret = lookup_tree_block_ref(trans, fs_info, path, bytenr, |
| 1836 | parent, root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1837 | } else { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1838 | ret = lookup_extent_data_ref(trans, fs_info, path, bytenr, |
| 1839 | parent, root_objectid, owner, |
| 1840 | offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1841 | } |
| 1842 | return ret; |
| 1843 | } |
| 1844 | |
| 1845 | /* |
| 1846 | * helper to update/remove inline back ref |
| 1847 | */ |
| 1848 | static noinline_for_stack |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1849 | void update_inline_extent_backref(struct btrfs_fs_info *fs_info, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1850 | struct btrfs_path *path, |
| 1851 | struct btrfs_extent_inline_ref *iref, |
| 1852 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1853 | struct btrfs_delayed_extent_op *extent_op, |
| 1854 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1855 | { |
| 1856 | struct extent_buffer *leaf; |
| 1857 | struct btrfs_extent_item *ei; |
| 1858 | struct btrfs_extent_data_ref *dref = NULL; |
| 1859 | struct btrfs_shared_data_ref *sref = NULL; |
| 1860 | unsigned long ptr; |
| 1861 | unsigned long end; |
| 1862 | u32 item_size; |
| 1863 | int size; |
| 1864 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1865 | u64 refs; |
| 1866 | |
| 1867 | leaf = path->nodes[0]; |
| 1868 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1869 | refs = btrfs_extent_refs(leaf, ei); |
| 1870 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1871 | refs += refs_to_mod; |
| 1872 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1873 | if (extent_op) |
| 1874 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1875 | |
| 1876 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1877 | |
| 1878 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1879 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1880 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1881 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1882 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1883 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1884 | } else { |
| 1885 | refs = 1; |
| 1886 | BUG_ON(refs_to_mod != -1); |
| 1887 | } |
| 1888 | |
| 1889 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1890 | refs += refs_to_mod; |
| 1891 | |
| 1892 | if (refs > 0) { |
| 1893 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1894 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1895 | else |
| 1896 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1897 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1898 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1899 | size = btrfs_extent_inline_ref_size(type); |
| 1900 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1901 | ptr = (unsigned long)iref; |
| 1902 | end = (unsigned long)ei + item_size; |
| 1903 | if (ptr + size < end) |
| 1904 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1905 | end - ptr - size); |
| 1906 | item_size -= size; |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1907 | btrfs_truncate_item(fs_info, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1908 | } |
| 1909 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1910 | } |
| 1911 | |
| 1912 | static noinline_for_stack |
| 1913 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1914 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1915 | struct btrfs_path *path, |
| 1916 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1917 | u64 root_objectid, u64 owner, |
| 1918 | u64 offset, int refs_to_add, |
| 1919 | struct btrfs_delayed_extent_op *extent_op) |
| 1920 | { |
| 1921 | struct btrfs_extent_inline_ref *iref; |
| 1922 | int ret; |
| 1923 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1924 | ret = lookup_inline_extent_backref(trans, fs_info, path, &iref, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1925 | bytenr, num_bytes, parent, |
| 1926 | root_objectid, owner, offset, 1); |
| 1927 | if (ret == 0) { |
| 1928 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1929 | update_inline_extent_backref(fs_info, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1930 | refs_to_add, extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1931 | } else if (ret == -ENOENT) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1932 | setup_inline_extent_backref(fs_info, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1933 | root_objectid, owner, offset, |
| 1934 | refs_to_add, extent_op); |
| 1935 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1936 | } |
| 1937 | return ret; |
| 1938 | } |
| 1939 | |
| 1940 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1941 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1942 | struct btrfs_path *path, |
| 1943 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1944 | u64 owner, u64 offset, int refs_to_add) |
| 1945 | { |
| 1946 | int ret; |
| 1947 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1948 | BUG_ON(refs_to_add != 1); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1949 | ret = insert_tree_block_ref(trans, fs_info, path, bytenr, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1950 | parent, root_objectid); |
| 1951 | } else { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1952 | ret = insert_extent_data_ref(trans, fs_info, path, bytenr, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1953 | parent, root_objectid, |
| 1954 | owner, offset, refs_to_add); |
| 1955 | } |
| 1956 | return ret; |
| 1957 | } |
| 1958 | |
| 1959 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1960 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1961 | struct btrfs_path *path, |
| 1962 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1963 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1964 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1965 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1966 | |
| 1967 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1968 | if (iref) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1969 | update_inline_extent_backref(fs_info, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1970 | -refs_to_drop, NULL, last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1971 | } else if (is_data) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1972 | ret = remove_extent_data_ref(trans, fs_info, path, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1973 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1974 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1975 | *last_ref = 1; |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 1976 | ret = btrfs_del_item(trans, fs_info->extent_root, path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1977 | } |
| 1978 | return ret; |
| 1979 | } |
| 1980 | |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1981 | #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1982 | static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len, |
| 1983 | u64 *discarded_bytes) |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1984 | { |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1985 | int j, ret = 0; |
| 1986 | u64 bytes_left, end; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1987 | u64 aligned_start = ALIGN(start, 1 << 9); |
| 1988 | |
| 1989 | if (WARN_ON(start != aligned_start)) { |
| 1990 | len -= aligned_start - start; |
| 1991 | len = round_down(len, 1 << 9); |
| 1992 | start = aligned_start; |
| 1993 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1994 | |
| 1995 | *discarded_bytes = 0; |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1996 | |
| 1997 | if (!len) |
| 1998 | return 0; |
| 1999 | |
| 2000 | end = start + len; |
| 2001 | bytes_left = len; |
| 2002 | |
| 2003 | /* Skip any superblocks on this device. */ |
| 2004 | for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) { |
| 2005 | u64 sb_start = btrfs_sb_offset(j); |
| 2006 | u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE; |
| 2007 | u64 size = sb_start - start; |
| 2008 | |
| 2009 | if (!in_range(sb_start, start, bytes_left) && |
| 2010 | !in_range(sb_end, start, bytes_left) && |
| 2011 | !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE)) |
| 2012 | continue; |
| 2013 | |
| 2014 | /* |
| 2015 | * Superblock spans beginning of range. Adjust start and |
| 2016 | * try again. |
| 2017 | */ |
| 2018 | if (sb_start <= start) { |
| 2019 | start += sb_end - start; |
| 2020 | if (start > end) { |
| 2021 | bytes_left = 0; |
| 2022 | break; |
| 2023 | } |
| 2024 | bytes_left = end - start; |
| 2025 | continue; |
| 2026 | } |
| 2027 | |
| 2028 | if (size) { |
| 2029 | ret = blkdev_issue_discard(bdev, start >> 9, size >> 9, |
| 2030 | GFP_NOFS, 0); |
| 2031 | if (!ret) |
| 2032 | *discarded_bytes += size; |
| 2033 | else if (ret != -EOPNOTSUPP) |
| 2034 | return ret; |
| 2035 | } |
| 2036 | |
| 2037 | start = sb_end; |
| 2038 | if (start > end) { |
| 2039 | bytes_left = 0; |
| 2040 | break; |
| 2041 | } |
| 2042 | bytes_left = end - start; |
| 2043 | } |
| 2044 | |
| 2045 | if (bytes_left) { |
| 2046 | ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9, |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2047 | GFP_NOFS, 0); |
| 2048 | if (!ret) |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 2049 | *discarded_bytes += bytes_left; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2050 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2051 | return ret; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2052 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2053 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2054 | int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr, |
Filipe Manana | 1edb647b | 2014-12-08 14:01:12 +0000 | [diff] [blame] | 2055 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2056 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2057 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2058 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2059 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2060 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2061 | |
Filipe Manana | 2999241 | 2016-05-27 17:42:05 +0100 | [diff] [blame] | 2062 | /* |
| 2063 | * Avoid races with device replace and make sure our bbio has devices |
| 2064 | * associated to its stripes that don't go away while we are discarding. |
| 2065 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2066 | btrfs_bio_counter_inc_blocked(fs_info); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2067 | /* Tell the block device(s) that the sectors can be discarded */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2068 | ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes, |
| 2069 | &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2070 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2071 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2072 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2073 | int i; |
| 2074 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2075 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2076 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2077 | u64 bytes; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2078 | if (!stripe->dev->can_discard) |
| 2079 | continue; |
| 2080 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2081 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 2082 | stripe->physical, |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2083 | stripe->length, |
| 2084 | &bytes); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2085 | if (!ret) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2086 | discarded_bytes += bytes; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2087 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2088 | 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] | 2089 | |
| 2090 | /* |
| 2091 | * Just in case we get back EOPNOTSUPP for some reason, |
| 2092 | * just ignore the return value so we don't screw up |
| 2093 | * people calling discard_extent. |
| 2094 | */ |
| 2095 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2096 | } |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2097 | btrfs_put_bbio(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2098 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2099 | btrfs_bio_counter_dec(fs_info); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2100 | |
| 2101 | if (actual_bytes) |
| 2102 | *actual_bytes = discarded_bytes; |
| 2103 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2104 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2105 | if (ret == -EOPNOTSUPP) |
| 2106 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2107 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2108 | } |
| 2109 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2110 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2111 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2112 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2113 | u64 bytenr, u64 num_bytes, u64 parent, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2114 | u64 root_objectid, u64 owner, u64 offset) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2115 | { |
| 2116 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2117 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2118 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 2119 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2120 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2121 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2122 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 2123 | num_bytes, parent, |
| 2124 | root_objectid, (int)owner, |
| 2125 | BTRFS_ADD_DELAYED_REF, NULL, |
| 2126 | NULL, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2127 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2128 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 2129 | num_bytes, parent, |
| 2130 | root_objectid, owner, offset, |
| 2131 | 0, BTRFS_ADD_DELAYED_REF, NULL, |
| 2132 | NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2133 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2134 | return ret; |
| 2135 | } |
| 2136 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2137 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2138 | struct btrfs_fs_info *fs_info, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2139 | struct btrfs_delayed_ref_node *node, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2140 | u64 parent, u64 root_objectid, |
| 2141 | u64 owner, u64 offset, int refs_to_add, |
| 2142 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2143 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2144 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2145 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 2146 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2147 | struct btrfs_key key; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2148 | u64 bytenr = node->bytenr; |
| 2149 | u64 num_bytes = node->num_bytes; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2150 | u64 refs; |
| 2151 | int ret; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 2152 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2153 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2154 | if (!path) |
| 2155 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2156 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2157 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2158 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2159 | /* 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] | 2160 | ret = insert_inline_extent_backref(trans, fs_info, path, bytenr, |
| 2161 | num_bytes, parent, root_objectid, |
| 2162 | owner, offset, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2163 | refs_to_add, extent_op); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 2164 | if ((ret < 0 && ret != -EAGAIN) || !ret) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2165 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2166 | |
| 2167 | /* |
| 2168 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2169 | * inline extent ref, so just update the reference count and add a |
| 2170 | * normal backref. |
| 2171 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2172 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2173 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2174 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2175 | refs = btrfs_extent_refs(leaf, item); |
| 2176 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2177 | if (extent_op) |
| 2178 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2179 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2180 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2181 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2182 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2183 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2184 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2185 | /* now insert the actual backref */ |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 2186 | ret = insert_extent_backref(trans, fs_info, path, bytenr, parent, |
| 2187 | root_objectid, owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2188 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2189 | btrfs_abort_transaction(trans, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2190 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2191 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2192 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2193 | } |
| 2194 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2195 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2196 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2197 | struct btrfs_delayed_ref_node *node, |
| 2198 | struct btrfs_delayed_extent_op *extent_op, |
| 2199 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2200 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2201 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2202 | struct btrfs_delayed_data_ref *ref; |
| 2203 | struct btrfs_key ins; |
| 2204 | u64 parent = 0; |
| 2205 | u64 ref_root = 0; |
| 2206 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2207 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2208 | ins.objectid = node->bytenr; |
| 2209 | ins.offset = node->num_bytes; |
| 2210 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2211 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2212 | ref = btrfs_delayed_node_to_data_ref(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2213 | trace_run_delayed_data_ref(fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2214 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2215 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2216 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2217 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2218 | |
| 2219 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2220 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2221 | flags |= extent_op->flags_to_set; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2222 | ret = alloc_reserved_file_extent(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2223 | parent, ref_root, flags, |
| 2224 | ref->objectid, ref->offset, |
| 2225 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2226 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2227 | ret = __btrfs_inc_extent_ref(trans, fs_info, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2228 | ref_root, ref->objectid, |
| 2229 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2230 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2231 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2232 | ret = __btrfs_free_extent(trans, fs_info, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2233 | ref_root, ref->objectid, |
| 2234 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2235 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2236 | } else { |
| 2237 | BUG(); |
| 2238 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2239 | return ret; |
| 2240 | } |
| 2241 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2242 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2243 | struct extent_buffer *leaf, |
| 2244 | struct btrfs_extent_item *ei) |
| 2245 | { |
| 2246 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2247 | if (extent_op->update_flags) { |
| 2248 | flags |= extent_op->flags_to_set; |
| 2249 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2250 | } |
| 2251 | |
| 2252 | if (extent_op->update_key) { |
| 2253 | struct btrfs_tree_block_info *bi; |
| 2254 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2255 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2256 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2257 | } |
| 2258 | } |
| 2259 | |
| 2260 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2261 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2262 | struct btrfs_delayed_ref_node *node, |
| 2263 | struct btrfs_delayed_extent_op *extent_op) |
| 2264 | { |
| 2265 | struct btrfs_key key; |
| 2266 | struct btrfs_path *path; |
| 2267 | struct btrfs_extent_item *ei; |
| 2268 | struct extent_buffer *leaf; |
| 2269 | u32 item_size; |
| 2270 | int ret; |
| 2271 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2272 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2273 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2274 | if (trans->aborted) |
| 2275 | return 0; |
| 2276 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2277 | if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2278 | metadata = 0; |
| 2279 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2280 | path = btrfs_alloc_path(); |
| 2281 | if (!path) |
| 2282 | return -ENOMEM; |
| 2283 | |
| 2284 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2285 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2286 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2287 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2288 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2289 | } else { |
| 2290 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2291 | key.offset = node->num_bytes; |
| 2292 | } |
| 2293 | |
| 2294 | again: |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2295 | path->reada = READA_FORWARD; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2296 | path->leave_spinning = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2297 | 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] | 2298 | if (ret < 0) { |
| 2299 | err = ret; |
| 2300 | goto out; |
| 2301 | } |
| 2302 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2303 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2304 | if (path->slots[0] > 0) { |
| 2305 | path->slots[0]--; |
| 2306 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2307 | path->slots[0]); |
| 2308 | if (key.objectid == node->bytenr && |
| 2309 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2310 | key.offset == node->num_bytes) |
| 2311 | ret = 0; |
| 2312 | } |
| 2313 | if (ret > 0) { |
| 2314 | btrfs_release_path(path); |
| 2315 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2316 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2317 | key.objectid = node->bytenr; |
| 2318 | key.offset = node->num_bytes; |
| 2319 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2320 | goto again; |
| 2321 | } |
| 2322 | } else { |
| 2323 | err = -EIO; |
| 2324 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2325 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2326 | } |
| 2327 | |
| 2328 | leaf = path->nodes[0]; |
| 2329 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2330 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2331 | if (item_size < sizeof(*ei)) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 2332 | ret = convert_extent_item_v0(trans, fs_info, path, (u64)-1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2333 | if (ret < 0) { |
| 2334 | err = ret; |
| 2335 | goto out; |
| 2336 | } |
| 2337 | leaf = path->nodes[0]; |
| 2338 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2339 | } |
| 2340 | #endif |
| 2341 | BUG_ON(item_size < sizeof(*ei)); |
| 2342 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2343 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2344 | |
| 2345 | btrfs_mark_buffer_dirty(leaf); |
| 2346 | out: |
| 2347 | btrfs_free_path(path); |
| 2348 | return err; |
| 2349 | } |
| 2350 | |
| 2351 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2352 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2353 | struct btrfs_delayed_ref_node *node, |
| 2354 | struct btrfs_delayed_extent_op *extent_op, |
| 2355 | int insert_reserved) |
| 2356 | { |
| 2357 | int ret = 0; |
| 2358 | struct btrfs_delayed_tree_ref *ref; |
| 2359 | struct btrfs_key ins; |
| 2360 | u64 parent = 0; |
| 2361 | u64 ref_root = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2362 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2363 | |
| 2364 | ref = btrfs_delayed_node_to_tree_ref(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2365 | trace_run_delayed_tree_ref(fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2366 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2367 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2368 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2369 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2370 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2371 | ins.objectid = node->bytenr; |
| 2372 | if (skinny_metadata) { |
| 2373 | ins.offset = ref->level; |
| 2374 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2375 | } else { |
| 2376 | ins.offset = node->num_bytes; |
| 2377 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2378 | } |
| 2379 | |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2380 | if (node->ref_mod != 1) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2381 | btrfs_err(fs_info, |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2382 | "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu", |
| 2383 | node->bytenr, node->ref_mod, node->action, ref_root, |
| 2384 | parent); |
| 2385 | return -EIO; |
| 2386 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2387 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2388 | BUG_ON(!extent_op || !extent_op->update_flags); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2389 | ret = alloc_reserved_tree_block(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2390 | parent, ref_root, |
| 2391 | extent_op->flags_to_set, |
| 2392 | &extent_op->key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2393 | ref->level, &ins); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2394 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2395 | ret = __btrfs_inc_extent_ref(trans, fs_info, node, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2396 | parent, ref_root, |
| 2397 | ref->level, 0, 1, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2398 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2399 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2400 | ret = __btrfs_free_extent(trans, fs_info, node, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2401 | parent, ref_root, |
| 2402 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2403 | } else { |
| 2404 | BUG(); |
| 2405 | } |
| 2406 | return ret; |
| 2407 | } |
| 2408 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2409 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2410 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2411 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2412 | struct btrfs_delayed_ref_node *node, |
| 2413 | struct btrfs_delayed_extent_op *extent_op, |
| 2414 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2415 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2416 | int ret = 0; |
| 2417 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2418 | if (trans->aborted) { |
| 2419 | if (insert_reserved) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2420 | btrfs_pin_extent(fs_info, node->bytenr, |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2421 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2422 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2423 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2424 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2425 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2426 | struct btrfs_delayed_ref_head *head; |
| 2427 | /* |
| 2428 | * we've hit the end of the chain and we were supposed |
| 2429 | * to insert this extent into the tree. But, it got |
| 2430 | * deleted before we ever needed to insert it, so all |
| 2431 | * we have to do is clean up the accounting |
| 2432 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2433 | BUG_ON(extent_op); |
| 2434 | head = btrfs_delayed_node_to_head(node); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2435 | trace_run_delayed_ref_head(fs_info, node, head, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2436 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2437 | if (insert_reserved) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2438 | btrfs_pin_extent(fs_info, node->bytenr, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2439 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2440 | if (head->is_data) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2441 | ret = btrfs_del_csums(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2442 | node->bytenr, |
| 2443 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2444 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2445 | } |
Qu Wenruo | 297d750 | 2015-09-08 17:08:37 +0800 | [diff] [blame] | 2446 | |
| 2447 | /* Also free its reserved qgroup space */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2448 | btrfs_qgroup_free_delayed_ref(fs_info, head->qgroup_ref_root, |
Qu Wenruo | 297d750 | 2015-09-08 17:08:37 +0800 | [diff] [blame] | 2449 | head->qgroup_reserved); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2450 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2451 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2452 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2453 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2454 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2455 | ret = run_delayed_tree_ref(trans, fs_info, node, extent_op, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2456 | insert_reserved); |
| 2457 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2458 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2459 | ret = run_delayed_data_ref(trans, fs_info, node, extent_op, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2460 | insert_reserved); |
| 2461 | else |
| 2462 | BUG(); |
| 2463 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2464 | } |
| 2465 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2466 | static inline struct btrfs_delayed_ref_node * |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2467 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2468 | { |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2469 | struct btrfs_delayed_ref_node *ref; |
| 2470 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2471 | if (list_empty(&head->ref_list)) |
| 2472 | return NULL; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2473 | |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2474 | /* |
| 2475 | * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2476 | * This is to prevent a ref count from going down to zero, which deletes |
| 2477 | * the extent item from the extent tree, when there still are references |
| 2478 | * to add, which would fail because they would not find the extent item. |
| 2479 | */ |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2480 | if (!list_empty(&head->ref_add_list)) |
| 2481 | return list_first_entry(&head->ref_add_list, |
| 2482 | struct btrfs_delayed_ref_node, add_list); |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2483 | |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2484 | ref = list_first_entry(&head->ref_list, struct btrfs_delayed_ref_node, |
| 2485 | list); |
| 2486 | ASSERT(list_empty(&ref->add_list)); |
| 2487 | return ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2488 | } |
| 2489 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2490 | /* |
| 2491 | * Returns 0 on success or if called with an already aborted transaction. |
| 2492 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2493 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2494 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2495 | struct btrfs_fs_info *fs_info, |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2496 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2497 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2498 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2499 | struct btrfs_delayed_ref_node *ref; |
| 2500 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2501 | struct btrfs_delayed_extent_op *extent_op; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2502 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2503 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2504 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2505 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2506 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2507 | |
| 2508 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2509 | while (1) { |
| 2510 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2511 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2512 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2513 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2514 | spin_lock(&delayed_refs->lock); |
| 2515 | locked_ref = btrfs_select_ref_head(trans); |
| 2516 | if (!locked_ref) { |
| 2517 | spin_unlock(&delayed_refs->lock); |
| 2518 | break; |
| 2519 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2520 | |
| 2521 | /* grab the lock that says we are going to process |
| 2522 | * all the refs for this head */ |
| 2523 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2524 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2525 | /* |
| 2526 | * we may have dropped the spin lock to get the head |
| 2527 | * mutex lock, and that might have given someone else |
| 2528 | * time to free the head. If that's true, it has been |
| 2529 | * removed from our list and we can move on. |
| 2530 | */ |
| 2531 | if (ret == -EAGAIN) { |
| 2532 | locked_ref = NULL; |
| 2533 | count++; |
| 2534 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2535 | } |
| 2536 | } |
| 2537 | |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2538 | /* |
| 2539 | * We need to try and merge add/drops of the same ref since we |
| 2540 | * can run into issues with relocate dropping the implicit ref |
| 2541 | * and then it being added back again before the drop can |
| 2542 | * finish. If we merged anything we need to re-loop so we can |
| 2543 | * get a good ref. |
| 2544 | * Or we can get node references of the same type that weren't |
| 2545 | * merged when created due to bumps in the tree mod seq, and |
| 2546 | * we need to merge them to prevent adding an inline extent |
| 2547 | * backref before dropping it (triggering a BUG_ON at |
| 2548 | * insert_inline_extent_backref()). |
| 2549 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2550 | spin_lock(&locked_ref->lock); |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2551 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2552 | locked_ref); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2553 | |
| 2554 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2555 | * locked_ref is the head node, so we have to go one |
| 2556 | * node back for any delayed ref updates |
| 2557 | */ |
| 2558 | ref = select_delayed_ref(locked_ref); |
| 2559 | |
| 2560 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2561 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2562 | spin_unlock(&locked_ref->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2563 | spin_lock(&delayed_refs->lock); |
| 2564 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2565 | delayed_refs->num_heads_ready++; |
| 2566 | spin_unlock(&delayed_refs->lock); |
Jeff Mahoney | d028099 | 2016-12-20 13:28:28 -0500 | [diff] [blame] | 2567 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2568 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2569 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2570 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2571 | continue; |
| 2572 | } |
| 2573 | |
| 2574 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2575 | * record the must insert reserved flag before we |
| 2576 | * drop the spin lock. |
| 2577 | */ |
| 2578 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2579 | locked_ref->must_insert_reserved = 0; |
| 2580 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2581 | extent_op = locked_ref->extent_op; |
| 2582 | locked_ref->extent_op = NULL; |
| 2583 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2584 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2585 | |
| 2586 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2587 | /* All delayed refs have been processed, Go ahead |
| 2588 | * and send the head node to run_one_delayed_ref, |
| 2589 | * so that any accounting fixes can happen |
| 2590 | */ |
| 2591 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2592 | |
| 2593 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2594 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2595 | extent_op = NULL; |
| 2596 | } |
| 2597 | |
| 2598 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2599 | spin_unlock(&locked_ref->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2600 | ret = run_delayed_extent_op(trans, fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2601 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2602 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2603 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2604 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2605 | /* |
| 2606 | * Need to reset must_insert_reserved if |
| 2607 | * there was an error so the abort stuff |
| 2608 | * can cleanup the reserved space |
| 2609 | * properly. |
| 2610 | */ |
| 2611 | if (must_insert_reserved) |
| 2612 | locked_ref->must_insert_reserved = 1; |
Jeff Mahoney | aa7c8da | 2016-12-20 13:28:27 -0500 | [diff] [blame] | 2613 | spin_lock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2614 | locked_ref->processing = 0; |
Jeff Mahoney | aa7c8da | 2016-12-20 13:28:27 -0500 | [diff] [blame] | 2615 | delayed_refs->num_heads_ready++; |
| 2616 | spin_unlock(&delayed_refs->lock); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2617 | btrfs_debug(fs_info, |
| 2618 | "run_delayed_extent_op returned %d", |
| 2619 | ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2620 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2621 | return ret; |
| 2622 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2623 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2624 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2625 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2626 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2627 | * Need to drop our head ref lock and re-acquire the |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2628 | * delayed ref lock and then re-check to make sure |
| 2629 | * nobody got added. |
| 2630 | */ |
| 2631 | spin_unlock(&locked_ref->lock); |
| 2632 | spin_lock(&delayed_refs->lock); |
| 2633 | spin_lock(&locked_ref->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2634 | if (!list_empty(&locked_ref->ref_list) || |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2635 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2636 | spin_unlock(&locked_ref->lock); |
| 2637 | spin_unlock(&delayed_refs->lock); |
| 2638 | continue; |
| 2639 | } |
| 2640 | ref->in_tree = 0; |
| 2641 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2642 | rb_erase(&locked_ref->href_node, |
| 2643 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2644 | spin_unlock(&delayed_refs->lock); |
| 2645 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2646 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2647 | ref->in_tree = 0; |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2648 | list_del(&ref->list); |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2649 | if (!list_empty(&ref->add_list)) |
| 2650 | list_del(&ref->add_list); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2651 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2652 | atomic_dec(&delayed_refs->num_entries); |
| 2653 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2654 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2655 | /* |
| 2656 | * when we play the delayed ref, also correct the |
| 2657 | * ref_mod on head |
| 2658 | */ |
| 2659 | switch (ref->action) { |
| 2660 | case BTRFS_ADD_DELAYED_REF: |
| 2661 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2662 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2663 | break; |
| 2664 | case BTRFS_DROP_DELAYED_REF: |
| 2665 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2666 | break; |
| 2667 | default: |
| 2668 | WARN_ON(1); |
| 2669 | } |
| 2670 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2671 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2672 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2673 | ret = run_one_delayed_ref(trans, fs_info, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2674 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2675 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2676 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2677 | if (ret) { |
Wang Xiaoguang | 9d1032c | 2016-06-20 09:18:52 +0800 | [diff] [blame] | 2678 | spin_lock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2679 | locked_ref->processing = 0; |
Wang Xiaoguang | 9d1032c | 2016-06-20 09:18:52 +0800 | [diff] [blame] | 2680 | delayed_refs->num_heads_ready++; |
| 2681 | spin_unlock(&delayed_refs->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2682 | btrfs_delayed_ref_unlock(locked_ref); |
| 2683 | btrfs_put_delayed_ref(ref); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2684 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", |
| 2685 | ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2686 | return ret; |
| 2687 | } |
| 2688 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2689 | /* |
| 2690 | * If this node is a head, that means all the refs in this head |
| 2691 | * have been dealt with, and we will pick the next head to deal |
| 2692 | * with, so we must unlock the head and drop it from the cluster |
| 2693 | * list before we release it. |
| 2694 | */ |
| 2695 | if (btrfs_delayed_ref_is_head(ref)) { |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2696 | if (locked_ref->is_data && |
| 2697 | locked_ref->total_ref_mod < 0) { |
| 2698 | spin_lock(&delayed_refs->lock); |
| 2699 | delayed_refs->pending_csums -= ref->num_bytes; |
| 2700 | spin_unlock(&delayed_refs->lock); |
| 2701 | } |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2702 | btrfs_delayed_ref_unlock(locked_ref); |
| 2703 | locked_ref = NULL; |
| 2704 | } |
| 2705 | btrfs_put_delayed_ref(ref); |
| 2706 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2707 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2708 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2709 | |
| 2710 | /* |
| 2711 | * We don't want to include ref heads since we can have empty ref heads |
| 2712 | * and those will drastically skew our runtime down since we just do |
| 2713 | * accounting, no actual extent tree updates. |
| 2714 | */ |
| 2715 | if (actual_count > 0) { |
| 2716 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2717 | u64 avg; |
| 2718 | |
| 2719 | /* |
| 2720 | * We weigh the current average higher than our current runtime |
| 2721 | * to avoid large swings in the average. |
| 2722 | */ |
| 2723 | spin_lock(&delayed_refs->lock); |
| 2724 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2725 | fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */ |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2726 | spin_unlock(&delayed_refs->lock); |
| 2727 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2728 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2729 | } |
| 2730 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2731 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2732 | /* |
| 2733 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2734 | * correlates in most cases to the order added. To expose dependencies on this |
| 2735 | * order, we start to process the tree in the middle instead of the beginning |
| 2736 | */ |
| 2737 | static u64 find_middle(struct rb_root *root) |
| 2738 | { |
| 2739 | struct rb_node *n = root->rb_node; |
| 2740 | struct btrfs_delayed_ref_node *entry; |
| 2741 | int alt = 1; |
| 2742 | u64 middle; |
| 2743 | u64 first = 0, last = 0; |
| 2744 | |
| 2745 | n = rb_first(root); |
| 2746 | if (n) { |
| 2747 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2748 | first = entry->bytenr; |
| 2749 | } |
| 2750 | n = rb_last(root); |
| 2751 | if (n) { |
| 2752 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2753 | last = entry->bytenr; |
| 2754 | } |
| 2755 | n = root->rb_node; |
| 2756 | |
| 2757 | while (n) { |
| 2758 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2759 | WARN_ON(!entry->in_tree); |
| 2760 | |
| 2761 | middle = entry->bytenr; |
| 2762 | |
| 2763 | if (alt) |
| 2764 | n = n->rb_left; |
| 2765 | else |
| 2766 | n = n->rb_right; |
| 2767 | |
| 2768 | alt = 1 - alt; |
| 2769 | } |
| 2770 | return middle; |
| 2771 | } |
| 2772 | #endif |
| 2773 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2774 | 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] | 2775 | { |
| 2776 | u64 num_bytes; |
| 2777 | |
| 2778 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2779 | sizeof(struct btrfs_extent_inline_ref)); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2780 | if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA)) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2781 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2782 | |
| 2783 | /* |
| 2784 | * 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] | 2785 | * closer to what we're really going to want to use. |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2786 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2787 | return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info)); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2788 | } |
| 2789 | |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2790 | /* |
| 2791 | * Takes the number of bytes to be csumm'ed and figures out how many leaves it |
| 2792 | * would require to store the csums for that many bytes. |
| 2793 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2794 | 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] | 2795 | { |
| 2796 | u64 csum_size; |
| 2797 | u64 num_csums_per_leaf; |
| 2798 | u64 num_csums; |
| 2799 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2800 | csum_size = BTRFS_MAX_ITEM_SIZE(fs_info); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2801 | num_csums_per_leaf = div64_u64(csum_size, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2802 | (u64)btrfs_super_csum_size(fs_info->super_copy)); |
| 2803 | num_csums = div64_u64(csum_bytes, fs_info->sectorsize); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2804 | num_csums += num_csums_per_leaf - 1; |
| 2805 | num_csums = div64_u64(num_csums, num_csums_per_leaf); |
| 2806 | return num_csums; |
| 2807 | } |
| 2808 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2809 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2810 | struct btrfs_fs_info *fs_info) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2811 | { |
| 2812 | struct btrfs_block_rsv *global_rsv; |
| 2813 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2814 | u64 csum_bytes = trans->transaction->delayed_refs.pending_csums; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2815 | u64 num_dirty_bgs = trans->transaction->num_dirty_bgs; |
| 2816 | u64 num_bytes, num_dirty_bgs_bytes; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2817 | int ret = 0; |
| 2818 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2819 | num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2820 | num_heads = heads_to_leaves(fs_info, num_heads); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2821 | if (num_heads > 1) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2822 | num_bytes += (num_heads - 1) * fs_info->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2823 | num_bytes <<= 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2824 | num_bytes += btrfs_csum_bytes_to_leaves(fs_info, csum_bytes) * |
| 2825 | fs_info->nodesize; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2826 | num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(fs_info, |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2827 | num_dirty_bgs); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2828 | global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2829 | |
| 2830 | /* |
| 2831 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2832 | * wiggle room since running delayed refs can create more delayed refs. |
| 2833 | */ |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2834 | if (global_rsv->space_info->full) { |
| 2835 | num_dirty_bgs_bytes <<= 1; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2836 | num_bytes <<= 1; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2837 | } |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2838 | |
| 2839 | spin_lock(&global_rsv->lock); |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2840 | if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2841 | ret = 1; |
| 2842 | spin_unlock(&global_rsv->lock); |
| 2843 | return ret; |
| 2844 | } |
| 2845 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2846 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2847 | struct btrfs_fs_info *fs_info) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2848 | { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2849 | u64 num_entries = |
| 2850 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2851 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2852 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2853 | |
| 2854 | smp_mb(); |
| 2855 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2856 | val = num_entries * avg_runtime; |
Wang Xiaoguang | dc1a90c | 2016-10-26 15:23:01 +0800 | [diff] [blame] | 2857 | if (val >= NSEC_PER_SEC) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2858 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2859 | if (val >= NSEC_PER_SEC / 2) |
| 2860 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2861 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2862 | return btrfs_check_space_for_delayed_refs(trans, fs_info); |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2863 | } |
| 2864 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2865 | struct async_delayed_refs { |
| 2866 | struct btrfs_root *root; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2867 | u64 transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2868 | int count; |
| 2869 | int error; |
| 2870 | int sync; |
| 2871 | struct completion wait; |
| 2872 | struct btrfs_work work; |
| 2873 | }; |
| 2874 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2875 | static inline struct async_delayed_refs * |
| 2876 | to_async_delayed_refs(struct btrfs_work *work) |
| 2877 | { |
| 2878 | return container_of(work, struct async_delayed_refs, work); |
| 2879 | } |
| 2880 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2881 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2882 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2883 | struct async_delayed_refs *async = to_async_delayed_refs(work); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2884 | struct btrfs_trans_handle *trans; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2885 | struct btrfs_fs_info *fs_info = async->root->fs_info; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2886 | int ret; |
| 2887 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2888 | /* 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] | 2889 | if (btrfs_transaction_blocked(fs_info)) |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2890 | goto done; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2891 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2892 | trans = btrfs_join_transaction(async->root); |
| 2893 | if (IS_ERR(trans)) { |
| 2894 | async->error = PTR_ERR(trans); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2895 | goto done; |
| 2896 | } |
| 2897 | |
| 2898 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2899 | * trans->sync means that when we call end_transaction, we won't |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2900 | * wait on delayed refs |
| 2901 | */ |
| 2902 | trans->sync = true; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2903 | |
| 2904 | /* Don't bother flushing if we got into a different transaction */ |
| 2905 | if (trans->transid > async->transid) |
| 2906 | goto end; |
| 2907 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2908 | ret = btrfs_run_delayed_refs(trans, fs_info, async->count); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2909 | if (ret) |
| 2910 | async->error = ret; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2911 | end: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 2912 | ret = btrfs_end_transaction(trans); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2913 | if (ret && !async->error) |
| 2914 | async->error = ret; |
| 2915 | done: |
| 2916 | if (async->sync) |
| 2917 | complete(&async->wait); |
| 2918 | else |
| 2919 | kfree(async); |
| 2920 | } |
| 2921 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2922 | int btrfs_async_run_delayed_refs(struct btrfs_fs_info *fs_info, |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2923 | unsigned long count, u64 transid, int wait) |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2924 | { |
| 2925 | struct async_delayed_refs *async; |
| 2926 | int ret; |
| 2927 | |
| 2928 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2929 | if (!async) |
| 2930 | return -ENOMEM; |
| 2931 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2932 | async->root = fs_info->tree_root; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2933 | async->count = count; |
| 2934 | async->error = 0; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2935 | async->transid = transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2936 | if (wait) |
| 2937 | async->sync = 1; |
| 2938 | else |
| 2939 | async->sync = 0; |
| 2940 | init_completion(&async->wait); |
| 2941 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2942 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2943 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2944 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2945 | btrfs_queue_work(fs_info->extent_workers, &async->work); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2946 | |
| 2947 | if (wait) { |
| 2948 | wait_for_completion(&async->wait); |
| 2949 | ret = async->error; |
| 2950 | kfree(async); |
| 2951 | return ret; |
| 2952 | } |
| 2953 | return 0; |
| 2954 | } |
| 2955 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2956 | /* |
| 2957 | * this starts processing the delayed reference count updates and |
| 2958 | * extent insertions we have queued up so far. count can be |
| 2959 | * 0, which means to process everything in the tree at the start |
| 2960 | * of the run (but not newly added entries), or it can be some target |
| 2961 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2962 | * |
| 2963 | * Returns 0 on success or if called with an aborted transaction |
| 2964 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2965 | */ |
| 2966 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2967 | struct btrfs_fs_info *fs_info, unsigned long count) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2968 | { |
| 2969 | struct rb_node *node; |
| 2970 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2971 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2972 | int ret; |
| 2973 | int run_all = count == (unsigned long)-1; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2974 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2975 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2976 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2977 | if (trans->aborted) |
| 2978 | return 0; |
| 2979 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2980 | if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags)) |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 2981 | return 0; |
| 2982 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2983 | delayed_refs = &trans->transaction->delayed_refs; |
Liu Bo | 26455d3 | 2014-12-17 16:14:09 +0800 | [diff] [blame] | 2984 | if (count == 0) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2985 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2986 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2987 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2988 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2989 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2990 | #endif |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2991 | trans->can_flush_pending_bgs = false; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2992 | ret = __btrfs_run_delayed_refs(trans, fs_info, count); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2993 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2994 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2995 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2996 | } |
| 2997 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2998 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2999 | if (!list_empty(&trans->new_bgs)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3000 | btrfs_create_pending_block_groups(trans, fs_info); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 3001 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3002 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 3003 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3004 | if (!node) { |
| 3005 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3006 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3007 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3008 | |
| 3009 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 3010 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 3011 | href_node); |
| 3012 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 3013 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3014 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 3015 | ref = &head->node; |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 3016 | refcount_inc(&ref->refs); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3017 | |
| 3018 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 3019 | /* |
| 3020 | * Mutex was contended, block until it's |
| 3021 | * released and try again |
| 3022 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3023 | mutex_lock(&head->mutex); |
| 3024 | mutex_unlock(&head->mutex); |
| 3025 | |
| 3026 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 3027 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3028 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 3029 | } else { |
| 3030 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3031 | } |
| 3032 | node = rb_next(node); |
| 3033 | } |
| 3034 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3035 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3036 | goto again; |
| 3037 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3038 | out: |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 3039 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 3040 | return 0; |
| 3041 | } |
| 3042 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3043 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3044 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3045 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3046 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3047 | { |
| 3048 | struct btrfs_delayed_extent_op *extent_op; |
| 3049 | int ret; |
| 3050 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3051 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3052 | if (!extent_op) |
| 3053 | return -ENOMEM; |
| 3054 | |
| 3055 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 3056 | extent_op->update_flags = true; |
| 3057 | extent_op->update_key = false; |
| 3058 | extent_op->is_data = is_data ? true : false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3059 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3060 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3061 | ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3062 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3063 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3064 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3065 | return ret; |
| 3066 | } |
| 3067 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3068 | static noinline int check_delayed_ref(struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3069 | struct btrfs_path *path, |
| 3070 | u64 objectid, u64 offset, u64 bytenr) |
| 3071 | { |
| 3072 | struct btrfs_delayed_ref_head *head; |
| 3073 | struct btrfs_delayed_ref_node *ref; |
| 3074 | struct btrfs_delayed_data_ref *data_ref; |
| 3075 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3076 | struct btrfs_transaction *cur_trans; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3077 | int ret = 0; |
| 3078 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3079 | cur_trans = root->fs_info->running_transaction; |
| 3080 | if (!cur_trans) |
| 3081 | return 0; |
| 3082 | |
| 3083 | delayed_refs = &cur_trans->delayed_refs; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3084 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 3085 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3086 | if (!head) { |
| 3087 | spin_unlock(&delayed_refs->lock); |
| 3088 | return 0; |
| 3089 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3090 | |
| 3091 | if (!mutex_trylock(&head->mutex)) { |
Elena Reshetova | 6df8cdf | 2017-03-03 10:55:15 +0200 | [diff] [blame] | 3092 | refcount_inc(&head->node.refs); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3093 | spin_unlock(&delayed_refs->lock); |
| 3094 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3095 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3096 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 3097 | /* |
| 3098 | * Mutex was contended, block until it's released and let |
| 3099 | * caller try again |
| 3100 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3101 | mutex_lock(&head->mutex); |
| 3102 | mutex_unlock(&head->mutex); |
| 3103 | btrfs_put_delayed_ref(&head->node); |
| 3104 | return -EAGAIN; |
| 3105 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3106 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3107 | |
| 3108 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 3109 | list_for_each_entry(ref, &head->ref_list, list) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3110 | /* If it's a shared ref we know a cross reference exists */ |
| 3111 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 3112 | ret = 1; |
| 3113 | break; |
| 3114 | } |
| 3115 | |
| 3116 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 3117 | |
| 3118 | /* |
| 3119 | * If our ref doesn't match the one we're currently looking at |
| 3120 | * then we have a cross reference. |
| 3121 | */ |
| 3122 | if (data_ref->root != root->root_key.objectid || |
| 3123 | data_ref->objectid != objectid || |
| 3124 | data_ref->offset != offset) { |
| 3125 | ret = 1; |
| 3126 | break; |
| 3127 | } |
| 3128 | } |
| 3129 | spin_unlock(&head->lock); |
| 3130 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3131 | return ret; |
| 3132 | } |
| 3133 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3134 | static noinline int check_committed_ref(struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3135 | struct btrfs_path *path, |
| 3136 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3137 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3138 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 3139 | struct btrfs_root *extent_root = fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3140 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3141 | struct btrfs_extent_data_ref *ref; |
| 3142 | struct btrfs_extent_inline_ref *iref; |
| 3143 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3144 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3145 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3146 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3147 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3148 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3149 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3150 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3151 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3152 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 3153 | if (ret < 0) |
| 3154 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3155 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 3156 | |
| 3157 | ret = -ENOENT; |
| 3158 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3159 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3160 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3161 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3162 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3163 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3164 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3165 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3166 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3167 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3168 | ret = 1; |
| 3169 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 3170 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 3171 | if (item_size < sizeof(*ei)) { |
| 3172 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 3173 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3174 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3175 | #endif |
| 3176 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 3177 | |
| 3178 | if (item_size != sizeof(*ei) + |
| 3179 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 3180 | goto out; |
| 3181 | |
| 3182 | if (btrfs_extent_generation(leaf, ei) <= |
| 3183 | btrfs_root_last_snapshot(&root->root_item)) |
| 3184 | goto out; |
| 3185 | |
| 3186 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 3187 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 3188 | BTRFS_EXTENT_DATA_REF_KEY) |
| 3189 | goto out; |
| 3190 | |
| 3191 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 3192 | if (btrfs_extent_refs(leaf, ei) != |
| 3193 | btrfs_extent_data_ref_count(leaf, ref) || |
| 3194 | btrfs_extent_data_ref_root(leaf, ref) != |
| 3195 | root->root_key.objectid || |
| 3196 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3197 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3198 | goto out; |
| 3199 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3200 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3201 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3202 | return ret; |
| 3203 | } |
| 3204 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3205 | int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset, |
| 3206 | u64 bytenr) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3207 | { |
| 3208 | struct btrfs_path *path; |
| 3209 | int ret; |
| 3210 | int ret2; |
| 3211 | |
| 3212 | path = btrfs_alloc_path(); |
| 3213 | if (!path) |
| 3214 | return -ENOENT; |
| 3215 | |
| 3216 | do { |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3217 | ret = check_committed_ref(root, path, objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3218 | offset, bytenr); |
| 3219 | if (ret && ret != -ENOENT) |
| 3220 | goto out; |
| 3221 | |
Liu Bo | e4c3b2d | 2017-01-30 12:25:28 -0800 | [diff] [blame] | 3222 | ret2 = check_delayed_ref(root, path, objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3223 | offset, bytenr); |
| 3224 | } while (ret2 == -EAGAIN); |
| 3225 | |
| 3226 | if (ret2 && ret2 != -ENOENT) { |
| 3227 | ret = ret2; |
| 3228 | goto out; |
| 3229 | } |
| 3230 | |
| 3231 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3232 | ret = 0; |
| 3233 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3234 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3235 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3236 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3237 | return ret; |
| 3238 | } |
| 3239 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3240 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3241 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3242 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3243 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3244 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3245 | struct btrfs_fs_info *fs_info = root->fs_info; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3246 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3247 | u64 num_bytes; |
| 3248 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3249 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3250 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3251 | struct btrfs_key key; |
| 3252 | struct btrfs_file_extent_item *fi; |
| 3253 | int i; |
| 3254 | int level; |
| 3255 | int ret = 0; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3256 | int (*process_func)(struct btrfs_trans_handle *, |
| 3257 | struct btrfs_fs_info *, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3258 | u64, u64, u64, u64, u64, u64); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3259 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3260 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3261 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3262 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3263 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3264 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3265 | nritems = btrfs_header_nritems(buf); |
| 3266 | level = btrfs_header_level(buf); |
| 3267 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3268 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3269 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3270 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3271 | if (inc) |
| 3272 | process_func = btrfs_inc_extent_ref; |
| 3273 | else |
| 3274 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3275 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3276 | if (full_backref) |
| 3277 | parent = buf->start; |
| 3278 | else |
| 3279 | parent = 0; |
| 3280 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3281 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3282 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3283 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3284 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3285 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3286 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3287 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3288 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3289 | BTRFS_FILE_EXTENT_INLINE) |
| 3290 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3291 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3292 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3293 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3294 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3295 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3296 | key.offset -= btrfs_file_extent_offset(buf, fi); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3297 | ret = process_func(trans, fs_info, bytenr, num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3298 | parent, ref_root, key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3299 | key.offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3300 | if (ret) |
| 3301 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3302 | } else { |
| 3303 | bytenr = btrfs_node_blockptr(buf, i); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3304 | num_bytes = fs_info->nodesize; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3305 | ret = process_func(trans, fs_info, bytenr, num_bytes, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3306 | parent, ref_root, level - 1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3307 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3308 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3309 | } |
| 3310 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3311 | return 0; |
| 3312 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3313 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3314 | } |
| 3315 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3316 | 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] | 3317 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3318 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3319 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3320 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3321 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3322 | 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] | 3323 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3324 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3325 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3326 | } |
| 3327 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3328 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3329 | struct btrfs_fs_info *fs_info, |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3330 | struct btrfs_path *path, |
| 3331 | struct btrfs_block_group_cache *cache) |
| 3332 | { |
| 3333 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3334 | struct btrfs_root *extent_root = fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3335 | unsigned long bi; |
| 3336 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3337 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3338 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3339 | if (ret) { |
| 3340 | if (ret > 0) |
| 3341 | ret = -ENOENT; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3342 | goto fail; |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3343 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3344 | |
| 3345 | leaf = path->nodes[0]; |
| 3346 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3347 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3348 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3349 | fail: |
Filipe Manana | 24b89d0 | 2015-04-25 18:31:05 +0100 | [diff] [blame] | 3350 | btrfs_release_path(path); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3351 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3352 | |
| 3353 | } |
| 3354 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3355 | static struct btrfs_block_group_cache * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3356 | next_block_group(struct btrfs_fs_info *fs_info, |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3357 | struct btrfs_block_group_cache *cache) |
| 3358 | { |
| 3359 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3360 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3361 | spin_lock(&fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3362 | |
| 3363 | /* If our block group was removed, we need a full search. */ |
| 3364 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3365 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3366 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3367 | spin_unlock(&fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3368 | btrfs_put_block_group(cache); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3369 | cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3370 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3371 | node = rb_next(&cache->cache_node); |
| 3372 | btrfs_put_block_group(cache); |
| 3373 | if (node) { |
| 3374 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3375 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3376 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3377 | } else |
| 3378 | cache = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3379 | spin_unlock(&fs_info->block_group_cache_lock); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3380 | return cache; |
| 3381 | } |
| 3382 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3383 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3384 | struct btrfs_trans_handle *trans, |
| 3385 | struct btrfs_path *path) |
| 3386 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3387 | struct btrfs_fs_info *fs_info = block_group->fs_info; |
| 3388 | struct btrfs_root *root = fs_info->tree_root; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3389 | struct inode *inode = NULL; |
| 3390 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3391 | int dcs = BTRFS_DC_ERROR; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3392 | u64 num_pages = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3393 | int retries = 0; |
| 3394 | int ret = 0; |
| 3395 | |
| 3396 | /* |
| 3397 | * If this block group is smaller than 100 megs don't bother caching the |
| 3398 | * block group. |
| 3399 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3400 | if (block_group->key.offset < (100 * SZ_1M)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3401 | spin_lock(&block_group->lock); |
| 3402 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3403 | spin_unlock(&block_group->lock); |
| 3404 | return 0; |
| 3405 | } |
| 3406 | |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3407 | if (trans->aborted) |
| 3408 | return 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3409 | again: |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3410 | inode = lookup_free_space_inode(fs_info, block_group, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3411 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3412 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3413 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3414 | goto out; |
| 3415 | } |
| 3416 | |
| 3417 | if (IS_ERR(inode)) { |
| 3418 | BUG_ON(retries); |
| 3419 | retries++; |
| 3420 | |
| 3421 | if (block_group->ro) |
| 3422 | goto out_free; |
| 3423 | |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3424 | ret = create_free_space_inode(fs_info, trans, block_group, |
| 3425 | path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3426 | if (ret) |
| 3427 | goto out_free; |
| 3428 | goto again; |
| 3429 | } |
| 3430 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3431 | /* We've already setup this transaction, go ahead and exit */ |
| 3432 | if (block_group->cache_generation == trans->transid && |
| 3433 | i_size_read(inode)) { |
| 3434 | dcs = BTRFS_DC_SETUP; |
| 3435 | goto out_put; |
| 3436 | } |
| 3437 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3438 | /* |
| 3439 | * We want to set the generation to 0, that way if anything goes wrong |
| 3440 | * from here on out we know not to trust this cache when we load up next |
| 3441 | * time. |
| 3442 | */ |
| 3443 | BTRFS_I(inode)->generation = 0; |
| 3444 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3445 | if (ret) { |
| 3446 | /* |
| 3447 | * So theoretically we could recover from this, simply set the |
| 3448 | * super cache generation to 0 so we know to invalidate the |
| 3449 | * cache, but then we'd have to keep track of the block groups |
| 3450 | * that fail this way so we know we _have_ to reset this cache |
| 3451 | * before the next commit or risk reading stale cache. So to |
| 3452 | * limit our exposure to horrible edge cases lets just abort the |
| 3453 | * transaction, this only happens in really bad situations |
| 3454 | * anyway. |
| 3455 | */ |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3456 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3457 | goto out_put; |
| 3458 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3459 | WARN_ON(ret); |
| 3460 | |
| 3461 | if (i_size_read(inode) > 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3462 | ret = btrfs_check_trunc_cache_free_space(fs_info, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3463 | &fs_info->global_block_rsv); |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3464 | if (ret) |
| 3465 | goto out_put; |
| 3466 | |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 3467 | ret = btrfs_truncate_free_space_cache(trans, NULL, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3468 | if (ret) |
| 3469 | goto out_put; |
| 3470 | } |
| 3471 | |
| 3472 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3473 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3474 | !btrfs_test_opt(fs_info, SPACE_CACHE)) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3475 | /* |
| 3476 | * don't bother trying to write stuff out _if_ |
| 3477 | * a) we're not cached, |
Liu Bo | 1a79c1f | 2017-03-06 13:49:02 -0800 | [diff] [blame] | 3478 | * b) we're with nospace_cache mount option, |
| 3479 | * c) we're with v2 space_cache (FREE_SPACE_TREE). |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3480 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3481 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3482 | spin_unlock(&block_group->lock); |
| 3483 | goto out_put; |
| 3484 | } |
| 3485 | spin_unlock(&block_group->lock); |
| 3486 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3487 | /* |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3488 | * We hit an ENOSPC when setting up the cache in this transaction, just |
| 3489 | * skip doing the setup, we've already cleared the cache so we're safe. |
| 3490 | */ |
| 3491 | if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) { |
| 3492 | ret = -ENOSPC; |
| 3493 | goto out_put; |
| 3494 | } |
| 3495 | |
| 3496 | /* |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3497 | * Try to preallocate enough space based on how big the block group is. |
| 3498 | * Keep in mind this has to include any pinned space which could end up |
| 3499 | * taking up quite a bit since it's not folded into the other space |
| 3500 | * cache. |
| 3501 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3502 | num_pages = div_u64(block_group->key.offset, SZ_256M); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3503 | if (!num_pages) |
| 3504 | num_pages = 1; |
| 3505 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3506 | num_pages *= 16; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3507 | num_pages *= PAGE_SIZE; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3508 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 3509 | ret = btrfs_check_data_free_space(inode, 0, num_pages); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3510 | if (ret) |
| 3511 | goto out_put; |
| 3512 | |
| 3513 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3514 | num_pages, num_pages, |
| 3515 | &alloc_hint); |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3516 | /* |
| 3517 | * Our cache requires contiguous chunks so that we don't modify a bunch |
| 3518 | * of metadata or split extents when writing the cache out, which means |
| 3519 | * we can enospc if we are heavily fragmented in addition to just normal |
| 3520 | * out of space conditions. So if we hit this just skip setting up any |
| 3521 | * other block groups for this transaction, maybe we'll unpin enough |
| 3522 | * space the next time around. |
| 3523 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3524 | if (!ret) |
| 3525 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3526 | else if (ret == -ENOSPC) |
| 3527 | set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3528 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3529 | out_put: |
| 3530 | iput(inode); |
| 3531 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3532 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3533 | out: |
| 3534 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3535 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3536 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3537 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3538 | spin_unlock(&block_group->lock); |
| 3539 | |
| 3540 | return ret; |
| 3541 | } |
| 3542 | |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3543 | int btrfs_setup_space_cache(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3544 | struct btrfs_fs_info *fs_info) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3545 | { |
| 3546 | struct btrfs_block_group_cache *cache, *tmp; |
| 3547 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3548 | struct btrfs_path *path; |
| 3549 | |
| 3550 | if (list_empty(&cur_trans->dirty_bgs) || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3551 | !btrfs_test_opt(fs_info, SPACE_CACHE)) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3552 | return 0; |
| 3553 | |
| 3554 | path = btrfs_alloc_path(); |
| 3555 | if (!path) |
| 3556 | return -ENOMEM; |
| 3557 | |
| 3558 | /* Could add new block groups, use _safe just in case */ |
| 3559 | list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs, |
| 3560 | dirty_list) { |
| 3561 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3562 | cache_save_setup(cache, trans, path); |
| 3563 | } |
| 3564 | |
| 3565 | btrfs_free_path(path); |
| 3566 | return 0; |
| 3567 | } |
| 3568 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3569 | /* |
| 3570 | * transaction commit does final block group cache writeback during a |
| 3571 | * critical section where nothing is allowed to change the FS. This is |
| 3572 | * required in order for the cache to actually match the block group, |
| 3573 | * but can introduce a lot of latency into the commit. |
| 3574 | * |
| 3575 | * So, btrfs_start_dirty_block_groups is here to kick off block group |
| 3576 | * cache IO. There's a chance we'll have to redo some of it if the |
| 3577 | * block group changes again during the commit, but it greatly reduces |
| 3578 | * the commit latency by getting rid of the easy block groups while |
| 3579 | * we're still allowing others to join the commit. |
| 3580 | */ |
| 3581 | int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3582 | struct btrfs_fs_info *fs_info) |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3583 | { |
| 3584 | struct btrfs_block_group_cache *cache; |
| 3585 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3586 | int ret = 0; |
| 3587 | int should_put; |
| 3588 | struct btrfs_path *path = NULL; |
| 3589 | LIST_HEAD(dirty); |
| 3590 | struct list_head *io = &cur_trans->io_bgs; |
| 3591 | int num_started = 0; |
| 3592 | int loops = 0; |
| 3593 | |
| 3594 | spin_lock(&cur_trans->dirty_bgs_lock); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3595 | if (list_empty(&cur_trans->dirty_bgs)) { |
| 3596 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3597 | return 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3598 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3599 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3600 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3601 | |
| 3602 | again: |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3603 | /* |
| 3604 | * make sure all the block groups on our dirty list actually |
| 3605 | * exist |
| 3606 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3607 | btrfs_create_pending_block_groups(trans, fs_info); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3608 | |
| 3609 | if (!path) { |
| 3610 | path = btrfs_alloc_path(); |
| 3611 | if (!path) |
| 3612 | return -ENOMEM; |
| 3613 | } |
| 3614 | |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3615 | /* |
| 3616 | * cache_write_mutex is here only to save us from balance or automatic |
| 3617 | * removal of empty block groups deleting this block group while we are |
| 3618 | * writing out the cache |
| 3619 | */ |
| 3620 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3621 | while (!list_empty(&dirty)) { |
| 3622 | cache = list_first_entry(&dirty, |
| 3623 | struct btrfs_block_group_cache, |
| 3624 | dirty_list); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3625 | /* |
| 3626 | * this can happen if something re-dirties a block |
| 3627 | * group that is already under IO. Just wait for it to |
| 3628 | * finish and then do it all again |
| 3629 | */ |
| 3630 | if (!list_empty(&cache->io_list)) { |
| 3631 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3632 | btrfs_wait_cache_io(trans, cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3633 | btrfs_put_block_group(cache); |
| 3634 | } |
| 3635 | |
| 3636 | |
| 3637 | /* |
| 3638 | * btrfs_wait_cache_io uses the cache->dirty_list to decide |
| 3639 | * if it should update the cache_state. Don't delete |
| 3640 | * until after we wait. |
| 3641 | * |
| 3642 | * Since we're not running in the commit critical section |
| 3643 | * we need the dirty_bgs_lock to protect from update_block_group |
| 3644 | */ |
| 3645 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3646 | list_del_init(&cache->dirty_list); |
| 3647 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3648 | |
| 3649 | should_put = 1; |
| 3650 | |
| 3651 | cache_save_setup(cache, trans, path); |
| 3652 | |
| 3653 | if (cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3654 | cache->io_ctl.inode = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3655 | ret = btrfs_write_out_cache(fs_info, trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3656 | cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3657 | if (ret == 0 && cache->io_ctl.inode) { |
| 3658 | num_started++; |
| 3659 | should_put = 0; |
| 3660 | |
| 3661 | /* |
| 3662 | * the cache_write_mutex is protecting |
| 3663 | * the io_list |
| 3664 | */ |
| 3665 | list_add_tail(&cache->io_list, io); |
| 3666 | } else { |
| 3667 | /* |
| 3668 | * if we failed to write the cache, the |
| 3669 | * generation will be bad and life goes on |
| 3670 | */ |
| 3671 | ret = 0; |
| 3672 | } |
| 3673 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3674 | if (!ret) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3675 | ret = write_one_cache_group(trans, fs_info, |
| 3676 | path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3677 | /* |
| 3678 | * Our block group might still be attached to the list |
| 3679 | * of new block groups in the transaction handle of some |
| 3680 | * other task (struct btrfs_trans_handle->new_bgs). This |
| 3681 | * means its block group item isn't yet in the extent |
| 3682 | * tree. If this happens ignore the error, as we will |
| 3683 | * try again later in the critical section of the |
| 3684 | * transaction commit. |
| 3685 | */ |
| 3686 | if (ret == -ENOENT) { |
| 3687 | ret = 0; |
| 3688 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3689 | if (list_empty(&cache->dirty_list)) { |
| 3690 | list_add_tail(&cache->dirty_list, |
| 3691 | &cur_trans->dirty_bgs); |
| 3692 | btrfs_get_block_group(cache); |
| 3693 | } |
| 3694 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3695 | } else if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3696 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3697 | } |
| 3698 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3699 | |
| 3700 | /* if its not on the io list, we need to put the block group */ |
| 3701 | if (should_put) |
| 3702 | btrfs_put_block_group(cache); |
| 3703 | |
| 3704 | if (ret) |
| 3705 | break; |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3706 | |
| 3707 | /* |
| 3708 | * Avoid blocking other tasks for too long. It might even save |
| 3709 | * us from writing caches for block groups that are going to be |
| 3710 | * removed. |
| 3711 | */ |
| 3712 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 3713 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3714 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3715 | mutex_unlock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3716 | |
| 3717 | /* |
| 3718 | * go through delayed refs for all the stuff we've just kicked off |
| 3719 | * and then loop back (just once) |
| 3720 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3721 | ret = btrfs_run_delayed_refs(trans, fs_info, 0); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3722 | if (!ret && loops == 0) { |
| 3723 | loops++; |
| 3724 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3725 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3726 | /* |
| 3727 | * dirty_bgs_lock protects us from concurrent block group |
| 3728 | * deletes too (not just cache_write_mutex). |
| 3729 | */ |
| 3730 | if (!list_empty(&dirty)) { |
| 3731 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3732 | goto again; |
| 3733 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3734 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 3735 | } else if (ret < 0) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3736 | btrfs_cleanup_dirty_bgs(cur_trans, fs_info); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3737 | } |
| 3738 | |
| 3739 | btrfs_free_path(path); |
| 3740 | return ret; |
| 3741 | } |
| 3742 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3743 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3744 | struct btrfs_fs_info *fs_info) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3745 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3746 | struct btrfs_block_group_cache *cache; |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3747 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3748 | int ret = 0; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3749 | int should_put; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3750 | struct btrfs_path *path; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3751 | struct list_head *io = &cur_trans->io_bgs; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3752 | int num_started = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3753 | |
| 3754 | path = btrfs_alloc_path(); |
| 3755 | if (!path) |
| 3756 | return -ENOMEM; |
| 3757 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3758 | /* |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3759 | * Even though we are in the critical section of the transaction commit, |
| 3760 | * we can still have concurrent tasks adding elements to this |
| 3761 | * transaction's list of dirty block groups. These tasks correspond to |
| 3762 | * endio free space workers started when writeback finishes for a |
| 3763 | * space cache, which run inode.c:btrfs_finish_ordered_io(), and can |
| 3764 | * allocate new block groups as a result of COWing nodes of the root |
| 3765 | * tree when updating the free space inode. The writeback for the space |
| 3766 | * caches is triggered by an earlier call to |
| 3767 | * btrfs_start_dirty_block_groups() and iterations of the following |
| 3768 | * loop. |
| 3769 | * 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] | 3770 | * delayed refs to make sure we have the best chance at doing this all |
| 3771 | * in one shot. |
| 3772 | */ |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3773 | spin_lock(&cur_trans->dirty_bgs_lock); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3774 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 3775 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 3776 | struct btrfs_block_group_cache, |
| 3777 | dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3778 | |
| 3779 | /* |
| 3780 | * this can happen if cache_save_setup re-dirties a block |
| 3781 | * group that is already under IO. Just wait for it to |
| 3782 | * finish and then do it all again |
| 3783 | */ |
| 3784 | if (!list_empty(&cache->io_list)) { |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3785 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3786 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3787 | btrfs_wait_cache_io(trans, cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3788 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3789 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3790 | } |
| 3791 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3792 | /* |
| 3793 | * don't remove from the dirty list until after we've waited |
| 3794 | * on any pending IO |
| 3795 | */ |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3796 | list_del_init(&cache->dirty_list); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3797 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3798 | should_put = 1; |
| 3799 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3800 | cache_save_setup(cache, trans, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3801 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3802 | if (!ret) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3803 | ret = btrfs_run_delayed_refs(trans, fs_info, |
| 3804 | (unsigned long) -1); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3805 | |
| 3806 | if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3807 | cache->io_ctl.inode = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3808 | ret = btrfs_write_out_cache(fs_info, trans, |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3809 | cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3810 | if (ret == 0 && cache->io_ctl.inode) { |
| 3811 | num_started++; |
| 3812 | should_put = 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3813 | list_add_tail(&cache->io_list, io); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3814 | } else { |
| 3815 | /* |
| 3816 | * if we failed to write the cache, the |
| 3817 | * generation will be bad and life goes on |
| 3818 | */ |
| 3819 | ret = 0; |
| 3820 | } |
| 3821 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3822 | if (!ret) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3823 | ret = write_one_cache_group(trans, fs_info, |
| 3824 | path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3825 | /* |
| 3826 | * One of the free space endio workers might have |
| 3827 | * created a new block group while updating a free space |
| 3828 | * cache's inode (at inode.c:btrfs_finish_ordered_io()) |
| 3829 | * and hasn't released its transaction handle yet, in |
| 3830 | * which case the new block group is still attached to |
| 3831 | * its transaction handle and its creation has not |
| 3832 | * finished yet (no block group item in the extent tree |
| 3833 | * yet, etc). If this is the case, wait for all free |
| 3834 | * space endio workers to finish and retry. This is a |
| 3835 | * a very rare case so no need for a more efficient and |
| 3836 | * complex approach. |
| 3837 | */ |
| 3838 | if (ret == -ENOENT) { |
| 3839 | wait_event(cur_trans->writer_wait, |
| 3840 | atomic_read(&cur_trans->num_writers) == 1); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3841 | ret = write_one_cache_group(trans, fs_info, |
| 3842 | path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3843 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3844 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3845 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3846 | } |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3847 | |
| 3848 | /* if its not on the io list, we need to put the block group */ |
| 3849 | if (should_put) |
| 3850 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3851 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3852 | } |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3853 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3854 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3855 | while (!list_empty(io)) { |
| 3856 | cache = list_first_entry(io, struct btrfs_block_group_cache, |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3857 | io_list); |
| 3858 | list_del_init(&cache->io_list); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 3859 | btrfs_wait_cache_io(trans, cache, path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3860 | btrfs_put_block_group(cache); |
| 3861 | } |
| 3862 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3863 | btrfs_free_path(path); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3864 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3865 | } |
| 3866 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3867 | int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr) |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3868 | { |
| 3869 | struct btrfs_block_group_cache *block_group; |
| 3870 | int readonly = 0; |
| 3871 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3872 | block_group = btrfs_lookup_block_group(fs_info, bytenr); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3873 | if (!block_group || block_group->ro) |
| 3874 | readonly = 1; |
| 3875 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3876 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3877 | return readonly; |
| 3878 | } |
| 3879 | |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3880 | bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3881 | { |
| 3882 | struct btrfs_block_group_cache *bg; |
| 3883 | bool ret = true; |
| 3884 | |
| 3885 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3886 | if (!bg) |
| 3887 | return false; |
| 3888 | |
| 3889 | spin_lock(&bg->lock); |
| 3890 | if (bg->ro) |
| 3891 | ret = false; |
| 3892 | else |
| 3893 | atomic_inc(&bg->nocow_writers); |
| 3894 | spin_unlock(&bg->lock); |
| 3895 | |
| 3896 | /* no put on block group, done by btrfs_dec_nocow_writers */ |
| 3897 | if (!ret) |
| 3898 | btrfs_put_block_group(bg); |
| 3899 | |
| 3900 | return ret; |
| 3901 | |
| 3902 | } |
| 3903 | |
| 3904 | void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3905 | { |
| 3906 | struct btrfs_block_group_cache *bg; |
| 3907 | |
| 3908 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3909 | ASSERT(bg); |
| 3910 | if (atomic_dec_and_test(&bg->nocow_writers)) |
| 3911 | wake_up_atomic_t(&bg->nocow_writers); |
| 3912 | /* |
| 3913 | * Once for our lookup and once for the lookup done by a previous call |
| 3914 | * to btrfs_inc_nocow_writers() |
| 3915 | */ |
| 3916 | btrfs_put_block_group(bg); |
| 3917 | btrfs_put_block_group(bg); |
| 3918 | } |
| 3919 | |
| 3920 | static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a) |
| 3921 | { |
| 3922 | schedule(); |
| 3923 | return 0; |
| 3924 | } |
| 3925 | |
| 3926 | void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg) |
| 3927 | { |
| 3928 | wait_on_atomic_t(&bg->nocow_writers, |
| 3929 | btrfs_wait_nocow_writers_atomic_t, |
| 3930 | TASK_UNINTERRUPTIBLE); |
| 3931 | } |
| 3932 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3933 | static const char *alloc_name(u64 flags) |
| 3934 | { |
| 3935 | switch (flags) { |
| 3936 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3937 | return "mixed"; |
| 3938 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3939 | return "metadata"; |
| 3940 | case BTRFS_BLOCK_GROUP_DATA: |
| 3941 | return "data"; |
| 3942 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3943 | return "system"; |
| 3944 | default: |
| 3945 | WARN_ON(1); |
| 3946 | return "invalid-combination"; |
| 3947 | }; |
| 3948 | } |
| 3949 | |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 3950 | static int create_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3951 | struct btrfs_space_info **new) |
| 3952 | { |
| 3953 | |
| 3954 | struct btrfs_space_info *space_info; |
| 3955 | int i; |
| 3956 | int ret; |
| 3957 | |
| 3958 | space_info = kzalloc(sizeof(*space_info), GFP_NOFS); |
| 3959 | if (!space_info) |
| 3960 | return -ENOMEM; |
| 3961 | |
| 3962 | ret = percpu_counter_init(&space_info->total_bytes_pinned, 0, |
| 3963 | GFP_KERNEL); |
| 3964 | if (ret) { |
| 3965 | kfree(space_info); |
| 3966 | return ret; |
| 3967 | } |
| 3968 | |
| 3969 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
| 3970 | INIT_LIST_HEAD(&space_info->block_groups[i]); |
| 3971 | init_rwsem(&space_info->groups_sem); |
| 3972 | spin_lock_init(&space_info->lock); |
| 3973 | space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
| 3974 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
| 3975 | init_waitqueue_head(&space_info->wait); |
| 3976 | INIT_LIST_HEAD(&space_info->ro_bgs); |
| 3977 | INIT_LIST_HEAD(&space_info->tickets); |
| 3978 | INIT_LIST_HEAD(&space_info->priority_tickets); |
| 3979 | |
| 3980 | ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype, |
| 3981 | info->space_info_kobj, "%s", |
| 3982 | alloc_name(space_info->flags)); |
| 3983 | if (ret) { |
| 3984 | percpu_counter_destroy(&space_info->total_bytes_pinned); |
| 3985 | kfree(space_info); |
| 3986 | return ret; |
| 3987 | } |
| 3988 | |
| 3989 | *new = space_info; |
| 3990 | list_add_rcu(&space_info->list, &info->space_info); |
| 3991 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3992 | info->data_sinfo = space_info; |
| 3993 | |
| 3994 | return ret; |
| 3995 | } |
| 3996 | |
Nikolay Borisov | d2006e6d | 2017-05-22 09:35:50 +0300 | [diff] [blame] | 3997 | static void update_space_info(struct btrfs_fs_info *info, u64 flags, |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3998 | u64 total_bytes, u64 bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3999 | u64 bytes_readonly, |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4000 | struct btrfs_space_info **space_info) |
| 4001 | { |
| 4002 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4003 | int factor; |
| 4004 | |
| 4005 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 4006 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4007 | factor = 2; |
| 4008 | else |
| 4009 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4010 | |
| 4011 | found = __find_space_info(info, flags); |
Nikolay Borisov | d2006e6d | 2017-05-22 09:35:50 +0300 | [diff] [blame] | 4012 | ASSERT(found); |
| 4013 | spin_lock(&found->lock); |
| 4014 | found->total_bytes += total_bytes; |
| 4015 | found->disk_total += total_bytes * factor; |
| 4016 | found->bytes_used += bytes_used; |
| 4017 | found->disk_used += bytes_used * factor; |
| 4018 | found->bytes_readonly += bytes_readonly; |
| 4019 | if (total_bytes > 0) |
| 4020 | found->full = 0; |
| 4021 | space_info_add_new_bytes(info, found, total_bytes - |
| 4022 | bytes_used - bytes_readonly); |
| 4023 | spin_unlock(&found->lock); |
| 4024 | *space_info = found; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4025 | } |
| 4026 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4027 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 4028 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 4029 | u64 extra_flags = chunk_to_extended(flags) & |
| 4030 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4031 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4032 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4033 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4034 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 4035 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 4036 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 4037 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 4038 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4039 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4040 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4041 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4042 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4043 | * returns target flags in extended format or 0 if restripe for this |
| 4044 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 4045 | * |
| 4046 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4047 | */ |
| 4048 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 4049 | { |
| 4050 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 4051 | u64 target = 0; |
| 4052 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4053 | if (!bctl) |
| 4054 | return 0; |
| 4055 | |
| 4056 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 4057 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4058 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 4059 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 4060 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4061 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 4062 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 4063 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4064 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 4065 | } |
| 4066 | |
| 4067 | return target; |
| 4068 | } |
| 4069 | |
| 4070 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4071 | * @flags: available profiles in extended format (see ctree.h) |
| 4072 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4073 | * Returns reduced profile in chunk format. If profile changing is in |
| 4074 | * progress (either running or paused) picks the target profile (if it's |
| 4075 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4076 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4077 | 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] | 4078 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4079 | u64 num_devices = fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4080 | u64 target; |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4081 | u64 raid_type; |
| 4082 | u64 allowed = 0; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4083 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4084 | /* |
| 4085 | * see if restripe for this chunk_type is in progress, if so |
| 4086 | * try to reduce to the target profile |
| 4087 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4088 | spin_lock(&fs_info->balance_lock); |
| 4089 | target = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4090 | if (target) { |
| 4091 | /* pick target profile only if it's already available */ |
| 4092 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4093 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4094 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4095 | } |
| 4096 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4097 | spin_unlock(&fs_info->balance_lock); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4098 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4099 | /* First, mask out the RAID levels which aren't possible */ |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4100 | for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) { |
| 4101 | if (num_devices >= btrfs_raid_array[raid_type].devs_min) |
| 4102 | allowed |= btrfs_raid_group[raid_type]; |
| 4103 | } |
| 4104 | allowed &= flags; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4105 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4106 | if (allowed & BTRFS_BLOCK_GROUP_RAID6) |
| 4107 | allowed = BTRFS_BLOCK_GROUP_RAID6; |
| 4108 | else if (allowed & BTRFS_BLOCK_GROUP_RAID5) |
| 4109 | allowed = BTRFS_BLOCK_GROUP_RAID5; |
| 4110 | else if (allowed & BTRFS_BLOCK_GROUP_RAID10) |
| 4111 | allowed = BTRFS_BLOCK_GROUP_RAID10; |
| 4112 | else if (allowed & BTRFS_BLOCK_GROUP_RAID1) |
| 4113 | allowed = BTRFS_BLOCK_GROUP_RAID1; |
| 4114 | else if (allowed & BTRFS_BLOCK_GROUP_RAID0) |
| 4115 | allowed = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4116 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4117 | flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4118 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4119 | return extended_to_chunk(flags | allowed); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4120 | } |
| 4121 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4122 | 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] | 4123 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4124 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4125 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4126 | |
| 4127 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4128 | flags = orig_flags; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4129 | seq = read_seqbegin(&fs_info->profiles_lock); |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4130 | |
| 4131 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4132 | flags |= fs_info->avail_data_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4133 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4134 | flags |= fs_info->avail_system_alloc_bits; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4135 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4136 | flags |= fs_info->avail_metadata_alloc_bits; |
| 4137 | } while (read_seqretry(&fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4138 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4139 | return btrfs_reduce_alloc_profile(fs_info, flags); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4140 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4141 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4142 | 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] | 4143 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4144 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4145 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4146 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4147 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4148 | if (data) |
| 4149 | flags = BTRFS_BLOCK_GROUP_DATA; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4150 | else if (root == fs_info->chunk_root) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4151 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 4152 | else |
| 4153 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 4154 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4155 | ret = get_alloc_profile(fs_info, flags); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4156 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4157 | } |
| 4158 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4159 | u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4160 | { |
| 4161 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA); |
| 4162 | } |
| 4163 | |
| 4164 | u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4165 | { |
| 4166 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4167 | } |
| 4168 | |
| 4169 | u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info) |
| 4170 | { |
| 4171 | return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4172 | } |
| 4173 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4174 | static u64 btrfs_space_info_used(struct btrfs_space_info *s_info, |
| 4175 | bool may_use_included) |
| 4176 | { |
| 4177 | ASSERT(s_info); |
| 4178 | return s_info->bytes_used + s_info->bytes_reserved + |
| 4179 | s_info->bytes_pinned + s_info->bytes_readonly + |
| 4180 | (may_use_included ? s_info->bytes_may_use : 0); |
| 4181 | } |
| 4182 | |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4183 | int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4184 | { |
| 4185 | struct btrfs_space_info *data_sinfo; |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4186 | struct btrfs_root *root = inode->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4187 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4188 | u64 used; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4189 | int ret = 0; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4190 | int need_commit = 2; |
| 4191 | int have_pinned_space; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4192 | |
| 4193 | /* make sure bytes are sectorsize aligned */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4194 | bytes = ALIGN(bytes, fs_info->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4195 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4196 | if (btrfs_is_free_space_inode(inode)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4197 | need_commit = 0; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4198 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4199 | } |
| 4200 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4201 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4202 | if (!data_sinfo) |
| 4203 | goto alloc; |
| 4204 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4205 | again: |
| 4206 | /* make sure we have enough space to handle the data first */ |
| 4207 | spin_lock(&data_sinfo->lock); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4208 | used = btrfs_space_info_used(data_sinfo, true); |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4209 | |
| 4210 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4211 | struct btrfs_trans_handle *trans; |
| 4212 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4213 | /* |
| 4214 | * if we don't have enough free bytes in this space then we need |
| 4215 | * to alloc a new chunk. |
| 4216 | */ |
Zhao Lei | b9fd47c | 2015-02-09 14:40:20 +0800 | [diff] [blame] | 4217 | if (!data_sinfo->full) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4218 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4219 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4220 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4221 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4222 | alloc: |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4223 | alloc_target = btrfs_data_alloc_profile(fs_info); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4224 | /* |
| 4225 | * It is ugly that we don't call nolock join |
| 4226 | * transaction for the free space inode case here. |
| 4227 | * But it is safe because we only do the data space |
| 4228 | * reservation for the free space cache in the |
| 4229 | * transaction context, the common join transaction |
| 4230 | * just increase the counter of the current transaction |
| 4231 | * handler, doesn't try to acquire the trans_lock of |
| 4232 | * the fs. |
| 4233 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4234 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4235 | if (IS_ERR(trans)) |
| 4236 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4237 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4238 | ret = do_chunk_alloc(trans, fs_info, alloc_target, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4239 | CHUNK_ALLOC_NO_FORCE); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4240 | btrfs_end_transaction(trans); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4241 | if (ret < 0) { |
| 4242 | if (ret != -ENOSPC) |
| 4243 | return ret; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4244 | else { |
| 4245 | have_pinned_space = 1; |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4246 | goto commit_trans; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4247 | } |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4248 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4249 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4250 | if (!data_sinfo) |
| 4251 | data_sinfo = fs_info->data_sinfo; |
| 4252 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4253 | goto again; |
| 4254 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4255 | |
| 4256 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4257 | * If we don't have enough pinned space to deal with this |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4258 | * allocation, and no removed chunk in current transaction, |
| 4259 | * don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4260 | */ |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4261 | have_pinned_space = percpu_counter_compare( |
| 4262 | &data_sinfo->total_bytes_pinned, |
| 4263 | used + bytes - data_sinfo->total_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4264 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4265 | |
| 4266 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4267 | commit_trans: |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4268 | if (need_commit && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4269 | !atomic_read(&fs_info->open_ioctl_trans)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4270 | need_commit--; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4271 | |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4272 | if (need_commit > 0) { |
| 4273 | btrfs_start_delalloc_roots(fs_info, 0, -1); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4274 | btrfs_wait_ordered_roots(fs_info, -1, 0, |
| 4275 | (u64)-1); |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4276 | } |
Zhao Lei | 9a4e727 | 2015-04-09 12:34:43 +0800 | [diff] [blame] | 4277 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4278 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4279 | if (IS_ERR(trans)) |
| 4280 | return PTR_ERR(trans); |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4281 | if (have_pinned_space >= 0 || |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 4282 | test_bit(BTRFS_TRANS_HAVE_FREE_BGS, |
| 4283 | &trans->transaction->flags) || |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4284 | need_commit > 0) { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4285 | ret = btrfs_commit_transaction(trans); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4286 | if (ret) |
| 4287 | return ret; |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4288 | /* |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 4289 | * The cleaner kthread might still be doing iput |
| 4290 | * operations. Wait for it to finish so that |
| 4291 | * more space is released. |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4292 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4293 | mutex_lock(&fs_info->cleaner_delayed_iput_mutex); |
| 4294 | mutex_unlock(&fs_info->cleaner_delayed_iput_mutex); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4295 | goto again; |
| 4296 | } else { |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4297 | btrfs_end_transaction(trans); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4298 | } |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4299 | } |
| 4300 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4301 | trace_btrfs_space_reservation(fs_info, |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4302 | "space_info:enospc", |
| 4303 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4304 | return -ENOSPC; |
| 4305 | } |
| 4306 | data_sinfo->bytes_may_use += bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4307 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4308 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4309 | spin_unlock(&data_sinfo->lock); |
| 4310 | |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 4311 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4312 | } |
| 4313 | |
| 4314 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4315 | * New check_data_free_space() with ability for precious data reservation |
| 4316 | * Will replace old btrfs_check_data_free_space(), but for patch split, |
| 4317 | * add a new function first and then replace it. |
| 4318 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 4319 | 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] | 4320 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4321 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4322 | int ret; |
| 4323 | |
| 4324 | /* align the range */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4325 | len = round_up(start + len, fs_info->sectorsize) - |
| 4326 | round_down(start, fs_info->sectorsize); |
| 4327 | start = round_down(start, fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4328 | |
Nikolay Borisov | 04f4f91 | 2017-02-20 13:50:36 +0200 | [diff] [blame] | 4329 | ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4330 | if (ret < 0) |
| 4331 | return ret; |
| 4332 | |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4333 | /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */ |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4334 | ret = btrfs_qgroup_reserve_data(inode, start, len); |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4335 | if (ret) |
| 4336 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4337 | return ret; |
| 4338 | } |
| 4339 | |
| 4340 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4341 | * Called if we need to clear a data reservation for this inode |
| 4342 | * Normally in a error case. |
| 4343 | * |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4344 | * This one will *NOT* use accurate qgroup reserved space API, just for case |
| 4345 | * which we can't sleep and is sure it won't affect qgroup reserved space. |
| 4346 | * Like clear_bit_hook(). |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4347 | */ |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4348 | void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start, |
| 4349 | u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4350 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4351 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4352 | struct btrfs_space_info *data_sinfo; |
| 4353 | |
| 4354 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4355 | len = round_up(start + len, fs_info->sectorsize) - |
| 4356 | round_down(start, fs_info->sectorsize); |
| 4357 | start = round_down(start, fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4358 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4359 | data_sinfo = fs_info->data_sinfo; |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4360 | spin_lock(&data_sinfo->lock); |
| 4361 | if (WARN_ON(data_sinfo->bytes_may_use < len)) |
| 4362 | data_sinfo->bytes_may_use = 0; |
| 4363 | else |
| 4364 | data_sinfo->bytes_may_use -= len; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4365 | trace_btrfs_space_reservation(fs_info, "space_info", |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4366 | data_sinfo->flags, len, 0); |
| 4367 | spin_unlock(&data_sinfo->lock); |
| 4368 | } |
| 4369 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4370 | /* |
| 4371 | * Called if we need to clear a data reservation for this inode |
| 4372 | * Normally in a error case. |
| 4373 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 4374 | * 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] | 4375 | * space framework. |
| 4376 | */ |
| 4377 | void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len) |
| 4378 | { |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4379 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4380 | |
| 4381 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4382 | len = round_up(start + len, root->fs_info->sectorsize) - |
| 4383 | round_down(start, root->fs_info->sectorsize); |
| 4384 | start = round_down(start, root->fs_info->sectorsize); |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4385 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4386 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
| 4387 | btrfs_qgroup_free_data(inode, start, len); |
| 4388 | } |
| 4389 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4390 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 4391 | { |
| 4392 | struct list_head *head = &info->space_info; |
| 4393 | struct btrfs_space_info *found; |
| 4394 | |
| 4395 | rcu_read_lock(); |
| 4396 | list_for_each_entry_rcu(found, head, list) { |
| 4397 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4398 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4399 | } |
| 4400 | rcu_read_unlock(); |
| 4401 | } |
| 4402 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4403 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 4404 | { |
| 4405 | return (global->size << 1); |
| 4406 | } |
| 4407 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4408 | static int should_alloc_chunk(struct btrfs_fs_info *fs_info, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4409 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4410 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4411 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4412 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4413 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4414 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4415 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4416 | if (force == CHUNK_ALLOC_FORCE) |
| 4417 | return 1; |
| 4418 | |
| 4419 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4420 | * We need to take into account the global rsv because for all intents |
| 4421 | * and purposes it's used space. Don't worry about locking the |
| 4422 | * global_rsv, it doesn't change except when the transaction commits. |
| 4423 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 4424 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4425 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4426 | |
| 4427 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4428 | * in limited mode, we want to have some free space up to |
| 4429 | * about 1% of the FS size. |
| 4430 | */ |
| 4431 | if (force == CHUNK_ALLOC_LIMITED) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4432 | thresh = btrfs_super_total_bytes(fs_info->super_copy); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4433 | thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1)); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4434 | |
| 4435 | if (num_bytes - num_allocated < thresh) |
| 4436 | return 1; |
| 4437 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4438 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4439 | if (num_allocated + SZ_2M < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 4440 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4441 | return 1; |
| 4442 | } |
| 4443 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4444 | 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] | 4445 | { |
| 4446 | u64 num_dev; |
| 4447 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4448 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 4449 | BTRFS_BLOCK_GROUP_RAID0 | |
| 4450 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4451 | BTRFS_BLOCK_GROUP_RAID6)) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4452 | num_dev = fs_info->fs_devices->rw_devices; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4453 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 4454 | num_dev = 2; |
| 4455 | else |
| 4456 | num_dev = 1; /* DUP or single */ |
| 4457 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4458 | return num_dev; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4459 | } |
| 4460 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4461 | /* |
| 4462 | * If @is_allocation is true, reserve space in the system space info necessary |
| 4463 | * for allocating a chunk, otherwise if it's false, reserve space necessary for |
| 4464 | * removing a chunk. |
| 4465 | */ |
| 4466 | void check_system_chunk(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4467 | struct btrfs_fs_info *fs_info, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4468 | { |
| 4469 | struct btrfs_space_info *info; |
| 4470 | u64 left; |
| 4471 | u64 thresh; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4472 | int ret = 0; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4473 | u64 num_devs; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4474 | |
| 4475 | /* |
| 4476 | * Needed because we can end up allocating a system chunk and for an |
| 4477 | * atomic and race free space reservation in the chunk block reserve. |
| 4478 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4479 | ASSERT(mutex_is_locked(&fs_info->chunk_mutex)); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4480 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4481 | info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4482 | spin_lock(&info->lock); |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4483 | left = info->total_bytes - btrfs_space_info_used(info, true); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4484 | spin_unlock(&info->lock); |
| 4485 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4486 | num_devs = get_profile_num_devs(fs_info, type); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4487 | |
| 4488 | /* 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] | 4489 | thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) + |
| 4490 | btrfs_calc_trans_metadata_size(fs_info, 1); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4491 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4492 | if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
| 4493 | btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu", |
| 4494 | left, thresh, type); |
| 4495 | dump_space_info(fs_info, info, 0, 0); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4496 | } |
| 4497 | |
| 4498 | if (left < thresh) { |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4499 | u64 flags = btrfs_system_alloc_profile(fs_info); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4500 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4501 | /* |
| 4502 | * Ignore failure to create system chunk. We might end up not |
| 4503 | * needing it, as we might not need to COW all nodes/leafs from |
| 4504 | * the paths we visit in the chunk tree (they were already COWed |
| 4505 | * or created in the current transaction for example). |
| 4506 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4507 | ret = btrfs_alloc_chunk(trans, fs_info, flags); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4508 | } |
| 4509 | |
| 4510 | if (!ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4511 | ret = btrfs_block_rsv_add(fs_info->chunk_root, |
| 4512 | &fs_info->chunk_block_rsv, |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4513 | thresh, BTRFS_RESERVE_NO_FLUSH); |
| 4514 | if (!ret) |
| 4515 | trans->chunk_bytes_reserved += thresh; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4516 | } |
| 4517 | } |
| 4518 | |
Liu Bo | 28b737f | 2016-07-29 11:09:50 -0700 | [diff] [blame] | 4519 | /* |
| 4520 | * If force is CHUNK_ALLOC_FORCE: |
| 4521 | * - return 1 if it successfully allocates a chunk, |
| 4522 | * - return errors including -ENOSPC otherwise. |
| 4523 | * If force is NOT CHUNK_ALLOC_FORCE: |
| 4524 | * - return 0 if it doesn't need to allocate a new chunk, |
| 4525 | * - return 1 if it successfully allocates a chunk, |
| 4526 | * - return errors including -ENOSPC otherwise. |
| 4527 | */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4528 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4529 | struct btrfs_fs_info *fs_info, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4530 | { |
| 4531 | struct btrfs_space_info *space_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4532 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 4533 | int ret = 0; |
| 4534 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4535 | /* Don't re-enter if we're already allocating a chunk */ |
| 4536 | if (trans->allocating_chunk) |
| 4537 | return -ENOSPC; |
| 4538 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4539 | space_info = __find_space_info(fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4540 | if (!space_info) { |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 4541 | ret = create_space_info(fs_info, flags, &space_info); |
| 4542 | if (ret) |
| 4543 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4544 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4545 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4546 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4547 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 4548 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4549 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4550 | if (space_info->full) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4551 | if (should_alloc_chunk(fs_info, space_info, force)) |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4552 | ret = -ENOSPC; |
| 4553 | else |
| 4554 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4555 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4556 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4557 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4558 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4559 | if (!should_alloc_chunk(fs_info, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4560 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4561 | return 0; |
| 4562 | } else if (space_info->chunk_alloc) { |
| 4563 | wait_for_alloc = 1; |
| 4564 | } else { |
| 4565 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4566 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4567 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4568 | spin_unlock(&space_info->lock); |
| 4569 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4570 | mutex_lock(&fs_info->chunk_mutex); |
| 4571 | |
| 4572 | /* |
| 4573 | * The chunk_mutex is held throughout the entirety of a chunk |
| 4574 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 4575 | * other guy is done and we need to recheck and see if we should |
| 4576 | * allocate. |
| 4577 | */ |
| 4578 | if (wait_for_alloc) { |
| 4579 | mutex_unlock(&fs_info->chunk_mutex); |
| 4580 | wait_for_alloc = 0; |
| 4581 | goto again; |
| 4582 | } |
| 4583 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4584 | trans->allocating_chunk = true; |
| 4585 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4586 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 4587 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 4588 | * allocating mixed chunks instead of individual chunks. |
| 4589 | */ |
| 4590 | if (btrfs_mixed_space_info(space_info)) |
| 4591 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 4592 | |
| 4593 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4594 | * if we're doing a data chunk, go ahead and make sure that |
| 4595 | * we keep a reasonable number of metadata chunks allocated in the |
| 4596 | * FS as well. |
| 4597 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4598 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4599 | fs_info->data_chunk_allocations++; |
| 4600 | if (!(fs_info->data_chunk_allocations % |
| 4601 | fs_info->metadata_ratio)) |
| 4602 | force_metadata_allocation(fs_info); |
| 4603 | } |
| 4604 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4605 | /* |
| 4606 | * Check if we have enough space in SYSTEM chunk because we may need |
| 4607 | * to update devices. |
| 4608 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4609 | check_system_chunk(trans, fs_info, flags); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4610 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4611 | ret = btrfs_alloc_chunk(trans, fs_info, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4612 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 4613 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4614 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4615 | if (ret < 0 && ret != -ENOSPC) |
| 4616 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4617 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4618 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4619 | else |
| 4620 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4621 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4622 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4623 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4624 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4625 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4626 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4627 | /* |
| 4628 | * When we allocate a new chunk we reserve space in the chunk block |
| 4629 | * reserve to make sure we can COW nodes/leafs in the chunk tree or |
| 4630 | * add new nodes/leafs to it if we end up needing to do it when |
| 4631 | * inserting the chunk item and updating device items as part of the |
| 4632 | * second phase of chunk allocation, performed by |
| 4633 | * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a |
| 4634 | * large number of new block groups to create in our transaction |
| 4635 | * handle's new_bgs list to avoid exhausting the chunk block reserve |
| 4636 | * in extreme cases - like having a single transaction create many new |
| 4637 | * block groups when starting to write out the free space caches of all |
| 4638 | * the block groups that were made dirty during the lifetime of the |
| 4639 | * transaction. |
| 4640 | */ |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 4641 | if (trans->can_flush_pending_bgs && |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4642 | trans->chunk_bytes_reserved >= (u64)SZ_2M) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4643 | btrfs_create_pending_block_groups(trans, fs_info); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4644 | btrfs_trans_release_chunk_metadata(trans); |
| 4645 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4646 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4647 | } |
| 4648 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4649 | static int can_overcommit(struct btrfs_fs_info *fs_info, |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4650 | struct btrfs_space_info *space_info, u64 bytes, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4651 | enum btrfs_reserve_flush_enum flush, |
| 4652 | bool system_chunk) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4653 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4654 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4655 | u64 profile; |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4656 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4657 | u64 avail; |
| 4658 | u64 used; |
| 4659 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4660 | /* Don't overcommit when in mixed mode. */ |
| 4661 | if (space_info->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4662 | return 0; |
| 4663 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4664 | if (system_chunk) |
| 4665 | profile = btrfs_system_alloc_profile(fs_info); |
| 4666 | else |
| 4667 | profile = btrfs_metadata_alloc_profile(fs_info); |
| 4668 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 4669 | used = btrfs_space_info_used(space_info, false); |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4670 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4671 | /* |
| 4672 | * We only want to allow over committing if we have lots of actual space |
| 4673 | * free, but if we don't have enough space to handle the global reserve |
| 4674 | * space then we could end up having a real enospc problem when trying |
| 4675 | * to allocate a chunk or some other such important allocation. |
| 4676 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4677 | spin_lock(&global_rsv->lock); |
| 4678 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4679 | spin_unlock(&global_rsv->lock); |
| 4680 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4681 | return 0; |
| 4682 | |
| 4683 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4684 | |
Nikolay Borisov | a5ed45f | 2017-05-11 09:17:46 +0300 | [diff] [blame] | 4685 | avail = atomic64_read(&fs_info->free_chunk_space); |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4686 | |
| 4687 | /* |
| 4688 | * 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] | 4689 | * space is actually useable. For raid56, the space info used |
| 4690 | * doesn't include the parity drive, so we don't have to |
| 4691 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4692 | */ |
| 4693 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4694 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4695 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4696 | avail >>= 1; |
| 4697 | |
| 4698 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4699 | * If we aren't flushing all things, let us overcommit up to |
| 4700 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4701 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4702 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4703 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4704 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4705 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4706 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4707 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4708 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4709 | return 1; |
| 4710 | return 0; |
| 4711 | } |
| 4712 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4713 | 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] | 4714 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4715 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4716 | struct super_block *sb = fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4717 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4718 | if (down_read_trylock(&sb->s_umount)) { |
| 4719 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4720 | up_read(&sb->s_umount); |
| 4721 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4722 | /* |
| 4723 | * We needn't worry the filesystem going from r/w to r/o though |
| 4724 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4725 | * should guarantee the delalloc inodes list be empty after |
| 4726 | * the filesystem is readonly(all dirty pages are written to |
| 4727 | * the disk). |
| 4728 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4729 | btrfs_start_delalloc_roots(fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4730 | if (!current->journal_info) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4731 | btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4732 | } |
| 4733 | } |
| 4734 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4735 | static inline int calc_reclaim_items_nr(struct btrfs_fs_info *fs_info, |
| 4736 | u64 to_reclaim) |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4737 | { |
| 4738 | u64 bytes; |
| 4739 | int nr; |
| 4740 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4741 | bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4742 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4743 | if (!nr) |
| 4744 | nr = 1; |
| 4745 | return nr; |
| 4746 | } |
| 4747 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4748 | #define EXTENT_SIZE_PER_ITEM SZ_256K |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4749 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4750 | /* |
| 4751 | * shrink metadata reservation for delalloc |
| 4752 | */ |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4753 | static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim, |
| 4754 | u64 orig, bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4755 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4756 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4757 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4758 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4759 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4760 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4761 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4762 | unsigned long nr_pages; |
| 4763 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4764 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4765 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4766 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4767 | /* Calc the number of the pages we need flush for space reservation */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4768 | items = calc_reclaim_items_nr(fs_info, to_reclaim); |
Adam Borowski | 8eb0dfd | 2016-05-08 15:08:00 +0200 | [diff] [blame] | 4769 | to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4770 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4771 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4772 | block_rsv = &fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4773 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4774 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4775 | delalloc_bytes = percpu_counter_sum_positive( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4776 | &fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4777 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4778 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4779 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4780 | if (wait_ordered) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4781 | btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4782 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4783 | } |
| 4784 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4785 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4786 | while (delalloc_bytes && loops < 3) { |
| 4787 | max_reclaim = min(delalloc_bytes, to_reclaim); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4788 | nr_pages = max_reclaim >> PAGE_SHIFT; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4789 | btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4790 | /* |
| 4791 | * We need to wait for the async pages to actually start before |
| 4792 | * we do anything. |
| 4793 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4794 | max_reclaim = atomic_read(&fs_info->async_delalloc_pages); |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4795 | if (!max_reclaim) |
| 4796 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4797 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4798 | if (max_reclaim <= nr_pages) |
| 4799 | max_reclaim = 0; |
| 4800 | else |
| 4801 | max_reclaim -= nr_pages; |
| 4802 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4803 | wait_event(fs_info->async_submit_wait, |
| 4804 | atomic_read(&fs_info->async_delalloc_pages) <= |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4805 | (int)max_reclaim); |
| 4806 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4807 | if (!trans) |
| 4808 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4809 | else |
| 4810 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4811 | spin_lock(&space_info->lock); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4812 | if (can_overcommit(fs_info, space_info, orig, flush, false)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4813 | spin_unlock(&space_info->lock); |
| 4814 | break; |
| 4815 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4816 | if (list_empty(&space_info->tickets) && |
| 4817 | list_empty(&space_info->priority_tickets)) { |
| 4818 | spin_unlock(&space_info->lock); |
| 4819 | break; |
| 4820 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4821 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4822 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4823 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4824 | if (wait_ordered && !trans) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4825 | btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4826 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4827 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4828 | if (time_left) |
| 4829 | break; |
| 4830 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4831 | delalloc_bytes = percpu_counter_sum_positive( |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4832 | &fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4833 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4834 | } |
| 4835 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4836 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4837 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4838 | * @root - the root we're allocating for |
| 4839 | * @bytes - the number of bytes we want to reserve |
| 4840 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4841 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4842 | * This will check to make sure that committing the transaction will actually |
| 4843 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4844 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4845 | */ |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4846 | static int may_commit_transaction(struct btrfs_fs_info *fs_info, |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4847 | struct btrfs_space_info *space_info, |
| 4848 | u64 bytes, int force) |
| 4849 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4850 | struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4851 | struct btrfs_trans_handle *trans; |
| 4852 | |
| 4853 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4854 | if (trans) |
| 4855 | return -EAGAIN; |
| 4856 | |
| 4857 | if (force) |
| 4858 | goto commit; |
| 4859 | |
| 4860 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4861 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4862 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4863 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4864 | |
| 4865 | /* |
| 4866 | * See if there is some space in the delayed insertion reservation for |
| 4867 | * this reservation. |
| 4868 | */ |
| 4869 | if (space_info != delayed_rsv->space_info) |
| 4870 | return -ENOSPC; |
| 4871 | |
| 4872 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4873 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Liu Bo | 28785f7 | 2017-05-19 11:39:15 -0600 | [diff] [blame] | 4874 | bytes - delayed_rsv->size) < 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4875 | spin_unlock(&delayed_rsv->lock); |
| 4876 | return -ENOSPC; |
| 4877 | } |
| 4878 | spin_unlock(&delayed_rsv->lock); |
| 4879 | |
| 4880 | commit: |
Jeff Mahoney | a9b3311 | 2017-05-17 11:38:34 -0400 | [diff] [blame] | 4881 | trans = btrfs_join_transaction(fs_info->extent_root); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4882 | if (IS_ERR(trans)) |
| 4883 | return -ENOSPC; |
| 4884 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4885 | return btrfs_commit_transaction(trans); |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4886 | } |
| 4887 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4888 | struct reserve_ticket { |
| 4889 | u64 bytes; |
| 4890 | int error; |
| 4891 | struct list_head list; |
| 4892 | wait_queue_head_t wait; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4893 | }; |
| 4894 | |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4895 | static int flush_space(struct btrfs_fs_info *fs_info, |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4896 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4897 | u64 orig_bytes, int state) |
| 4898 | { |
Jeff Mahoney | a9b3311 | 2017-05-17 11:38:34 -0400 | [diff] [blame] | 4899 | struct btrfs_root *root = fs_info->extent_root; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4900 | struct btrfs_trans_handle *trans; |
| 4901 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4902 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4903 | |
| 4904 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4905 | case FLUSH_DELAYED_ITEMS_NR: |
| 4906 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4907 | if (state == FLUSH_DELAYED_ITEMS_NR) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4908 | nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4909 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4910 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4911 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4912 | trans = btrfs_join_transaction(root); |
| 4913 | if (IS_ERR(trans)) { |
| 4914 | ret = PTR_ERR(trans); |
| 4915 | break; |
| 4916 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4917 | ret = btrfs_run_delayed_items_nr(trans, fs_info, nr); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4918 | btrfs_end_transaction(trans); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4919 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4920 | case FLUSH_DELALLOC: |
| 4921 | case FLUSH_DELALLOC_WAIT: |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4922 | shrink_delalloc(fs_info, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4923 | state == FLUSH_DELALLOC_WAIT); |
| 4924 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4925 | case ALLOC_CHUNK: |
| 4926 | trans = btrfs_join_transaction(root); |
| 4927 | if (IS_ERR(trans)) { |
| 4928 | ret = PTR_ERR(trans); |
| 4929 | break; |
| 4930 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 4931 | ret = do_chunk_alloc(trans, fs_info, |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 4932 | btrfs_metadata_alloc_profile(fs_info), |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4933 | CHUNK_ALLOC_NO_FORCE); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 4934 | btrfs_end_transaction(trans); |
Alex Lyakas | eecba89 | 2015-12-06 12:32:31 +0200 | [diff] [blame] | 4935 | if (ret > 0 || ret == -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4936 | ret = 0; |
| 4937 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4938 | case COMMIT_TRANS: |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 4939 | ret = may_commit_transaction(fs_info, space_info, |
| 4940 | orig_bytes, 0); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4941 | break; |
| 4942 | default: |
| 4943 | ret = -ENOSPC; |
| 4944 | break; |
| 4945 | } |
| 4946 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4947 | trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 4948 | orig_bytes, state, ret); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4949 | return ret; |
| 4950 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4951 | |
| 4952 | static inline u64 |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4953 | btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info, |
| 4954 | struct btrfs_space_info *space_info, |
| 4955 | bool system_chunk) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4956 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4957 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4958 | u64 used; |
| 4959 | u64 expected; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4960 | u64 to_reclaim = 0; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4961 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4962 | list_for_each_entry(ticket, &space_info->tickets, list) |
| 4963 | to_reclaim += ticket->bytes; |
| 4964 | list_for_each_entry(ticket, &space_info->priority_tickets, list) |
| 4965 | to_reclaim += ticket->bytes; |
| 4966 | if (to_reclaim) |
| 4967 | return to_reclaim; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4968 | |
Wang Xiaoguang | e0af248 | 2016-08-31 19:46:16 +0800 | [diff] [blame] | 4969 | to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4970 | if (can_overcommit(fs_info, space_info, to_reclaim, |
| 4971 | BTRFS_RESERVE_FLUSH_ALL, system_chunk)) |
Wang Xiaoguang | e0af248 | 2016-08-31 19:46:16 +0800 | [diff] [blame] | 4972 | return 0; |
| 4973 | |
Nikolay Borisov | 0eee8a4 | 2017-06-14 11:35:34 +0300 | [diff] [blame] | 4974 | used = btrfs_space_info_used(space_info, true); |
| 4975 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4976 | if (can_overcommit(fs_info, space_info, SZ_1M, |
| 4977 | BTRFS_RESERVE_FLUSH_ALL, system_chunk)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4978 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4979 | else |
| 4980 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4981 | |
| 4982 | if (used > expected) |
| 4983 | to_reclaim = used - expected; |
| 4984 | else |
| 4985 | to_reclaim = 0; |
| 4986 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4987 | space_info->bytes_reserved); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4988 | return to_reclaim; |
| 4989 | } |
| 4990 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 4991 | static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info, |
| 4992 | struct btrfs_space_info *space_info, |
| 4993 | u64 used, bool system_chunk) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4994 | { |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4995 | u64 thresh = div_factor_fine(space_info->total_bytes, 98); |
| 4996 | |
| 4997 | /* 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] | 4998 | if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh) |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4999 | return 0; |
| 5000 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5001 | if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 5002 | system_chunk)) |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 5003 | return 0; |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 5004 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5005 | return (used >= thresh && !btrfs_fs_closing(fs_info) && |
| 5006 | !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state)); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5007 | } |
| 5008 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5009 | static void wake_all_tickets(struct list_head *head) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5010 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5011 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5012 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5013 | while (!list_empty(head)) { |
| 5014 | ticket = list_first_entry(head, struct reserve_ticket, list); |
| 5015 | list_del_init(&ticket->list); |
| 5016 | ticket->error = -ENOSPC; |
| 5017 | wake_up(&ticket->wait); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5018 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5019 | } |
| 5020 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5021 | /* |
| 5022 | * This is for normal flushers, we can wait all goddamned day if we want to. We |
| 5023 | * will loop and continuously try to flush as long as we are making progress. |
| 5024 | * We count progress as clearing off tickets each time we have to loop. |
| 5025 | */ |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5026 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 5027 | { |
| 5028 | struct btrfs_fs_info *fs_info; |
| 5029 | struct btrfs_space_info *space_info; |
| 5030 | u64 to_reclaim; |
| 5031 | int flush_state; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5032 | int commit_cycles = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5033 | u64 last_tickets_id; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5034 | |
| 5035 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 5036 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 5037 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5038 | spin_lock(&space_info->lock); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5039 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 5040 | false); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5041 | if (!to_reclaim) { |
| 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 | } |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5046 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5047 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5048 | |
| 5049 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5050 | do { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5051 | struct reserve_ticket *ticket; |
| 5052 | int ret; |
| 5053 | |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 5054 | ret = flush_space(fs_info, space_info, to_reclaim, to_reclaim, |
| 5055 | flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5056 | spin_lock(&space_info->lock); |
| 5057 | if (list_empty(&space_info->tickets)) { |
| 5058 | space_info->flush = 0; |
| 5059 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5060 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5061 | } |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5062 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, |
| 5063 | space_info, |
| 5064 | false); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5065 | ticket = list_first_entry(&space_info->tickets, |
| 5066 | struct reserve_ticket, list); |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5067 | if (last_tickets_id == space_info->tickets_id) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5068 | flush_state++; |
| 5069 | } else { |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5070 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5071 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5072 | if (commit_cycles) |
| 5073 | commit_cycles--; |
| 5074 | } |
| 5075 | |
| 5076 | if (flush_state > COMMIT_TRANS) { |
| 5077 | commit_cycles++; |
| 5078 | if (commit_cycles > 2) { |
| 5079 | wake_all_tickets(&space_info->tickets); |
| 5080 | space_info->flush = 0; |
| 5081 | } else { |
| 5082 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5083 | } |
| 5084 | } |
| 5085 | spin_unlock(&space_info->lock); |
| 5086 | } while (flush_state <= COMMIT_TRANS); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5087 | } |
| 5088 | |
| 5089 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 5090 | { |
| 5091 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 5092 | } |
| 5093 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5094 | static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info, |
| 5095 | struct btrfs_space_info *space_info, |
| 5096 | struct reserve_ticket *ticket) |
| 5097 | { |
| 5098 | u64 to_reclaim; |
| 5099 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5100 | |
| 5101 | spin_lock(&space_info->lock); |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5102 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info, |
| 5103 | false); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5104 | if (!to_reclaim) { |
| 5105 | spin_unlock(&space_info->lock); |
| 5106 | return; |
| 5107 | } |
| 5108 | spin_unlock(&space_info->lock); |
| 5109 | |
| 5110 | do { |
Jeff Mahoney | 0c9ab34 | 2017-02-15 16:28:28 -0500 | [diff] [blame] | 5111 | flush_space(fs_info, space_info, to_reclaim, to_reclaim, |
| 5112 | flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5113 | flush_state++; |
| 5114 | spin_lock(&space_info->lock); |
| 5115 | if (ticket->bytes == 0) { |
| 5116 | spin_unlock(&space_info->lock); |
| 5117 | return; |
| 5118 | } |
| 5119 | spin_unlock(&space_info->lock); |
| 5120 | |
| 5121 | /* |
| 5122 | * Priority flushers can't wait on delalloc without |
| 5123 | * deadlocking. |
| 5124 | */ |
| 5125 | if (flush_state == FLUSH_DELALLOC || |
| 5126 | flush_state == FLUSH_DELALLOC_WAIT) |
| 5127 | flush_state = ALLOC_CHUNK; |
| 5128 | } while (flush_state < COMMIT_TRANS); |
| 5129 | } |
| 5130 | |
| 5131 | static int wait_reserve_ticket(struct btrfs_fs_info *fs_info, |
| 5132 | struct btrfs_space_info *space_info, |
| 5133 | struct reserve_ticket *ticket, u64 orig_bytes) |
| 5134 | |
| 5135 | { |
| 5136 | DEFINE_WAIT(wait); |
| 5137 | int ret = 0; |
| 5138 | |
| 5139 | spin_lock(&space_info->lock); |
| 5140 | while (ticket->bytes > 0 && ticket->error == 0) { |
| 5141 | ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE); |
| 5142 | if (ret) { |
| 5143 | ret = -EINTR; |
| 5144 | break; |
| 5145 | } |
| 5146 | spin_unlock(&space_info->lock); |
| 5147 | |
| 5148 | schedule(); |
| 5149 | |
| 5150 | finish_wait(&ticket->wait, &wait); |
| 5151 | spin_lock(&space_info->lock); |
| 5152 | } |
| 5153 | if (!ret) |
| 5154 | ret = ticket->error; |
| 5155 | if (!list_empty(&ticket->list)) |
| 5156 | list_del_init(&ticket->list); |
| 5157 | if (ticket->bytes && ticket->bytes < orig_bytes) { |
| 5158 | u64 num_bytes = orig_bytes - ticket->bytes; |
| 5159 | space_info->bytes_may_use -= num_bytes; |
| 5160 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5161 | space_info->flags, num_bytes, 0); |
| 5162 | } |
| 5163 | spin_unlock(&space_info->lock); |
| 5164 | |
| 5165 | return ret; |
| 5166 | } |
| 5167 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5168 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5169 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5170 | * @root - the root we're allocating for |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5171 | * @space_info - the space info we want to allocate from |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5172 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 5173 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5174 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5175 | * 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] | 5176 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5177 | * flush out space to make room. It will do this by flushing delalloc if |
| 5178 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5179 | * regain reservations will be made and this will fail if there is not enough |
| 5180 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5181 | */ |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5182 | static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5183 | struct btrfs_space_info *space_info, |
| 5184 | u64 orig_bytes, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5185 | enum btrfs_reserve_flush_enum flush, |
| 5186 | bool system_chunk) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5187 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5188 | struct reserve_ticket ticket; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5189 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5190 | int ret = 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5191 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5192 | ASSERT(orig_bytes); |
Josef Bacik | 8ca17f0 | 2016-05-27 13:24:13 -0400 | [diff] [blame] | 5193 | ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL); |
| 5194 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5195 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 5196 | ret = -ENOSPC; |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 5197 | used = btrfs_space_info_used(space_info, true); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5198 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5199 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5200 | * If we have enough space then hooray, make our reservation and carry |
| 5201 | * on. If not see if we can overcommit, and if we can, hooray carry on. |
| 5202 | * If not things get more complicated. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5203 | */ |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5204 | if (used + orig_bytes <= space_info->total_bytes) { |
| 5205 | space_info->bytes_may_use += orig_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5206 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5207 | space_info->flags, orig_bytes, 1); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5208 | ret = 0; |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5209 | } else if (can_overcommit(fs_info, space_info, orig_bytes, flush, |
| 5210 | system_chunk)) { |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5211 | space_info->bytes_may_use += orig_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5212 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5213 | space_info->flags, orig_bytes, 1); |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5214 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5215 | } |
| 5216 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5217 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5218 | * If we couldn't make a reservation then setup our reservation ticket |
| 5219 | * and kick the async worker if it's not already running. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5220 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5221 | * If we are a priority flusher then we just need to add our ticket to |
| 5222 | * the list and we will do our own flushing further down. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5223 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 5224 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5225 | ticket.bytes = orig_bytes; |
| 5226 | ticket.error = 0; |
| 5227 | init_waitqueue_head(&ticket.wait); |
| 5228 | if (flush == BTRFS_RESERVE_FLUSH_ALL) { |
| 5229 | list_add_tail(&ticket.list, &space_info->tickets); |
| 5230 | if (!space_info->flush) { |
| 5231 | space_info->flush = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5232 | trace_btrfs_trigger_flush(fs_info, |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5233 | space_info->flags, |
| 5234 | orig_bytes, flush, |
| 5235 | "enospc"); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5236 | queue_work(system_unbound_wq, |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5237 | &fs_info->async_reclaim_work); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5238 | } |
| 5239 | } else { |
| 5240 | list_add_tail(&ticket.list, |
| 5241 | &space_info->priority_tickets); |
| 5242 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5243 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 5244 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 5245 | /* |
| 5246 | * We will do the space reservation dance during log replay, |
| 5247 | * which means we won't have fs_info->fs_root set, so don't do |
| 5248 | * the async reclaim as we will panic. |
| 5249 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5250 | if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) && |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5251 | need_do_async_reclaim(fs_info, space_info, |
| 5252 | used, system_chunk) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5253 | !work_busy(&fs_info->async_reclaim_work)) { |
| 5254 | trace_btrfs_trigger_flush(fs_info, space_info->flags, |
| 5255 | orig_bytes, flush, "preempt"); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5256 | queue_work(system_unbound_wq, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5257 | &fs_info->async_reclaim_work); |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5258 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5259 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5260 | spin_unlock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5261 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5262 | return ret; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5263 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5264 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5265 | return wait_reserve_ticket(fs_info, space_info, &ticket, |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5266 | orig_bytes); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5267 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5268 | ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5269 | priority_reclaim_metadata_space(fs_info, space_info, &ticket); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5270 | spin_lock(&space_info->lock); |
| 5271 | if (ticket.bytes) { |
| 5272 | if (ticket.bytes < orig_bytes) { |
| 5273 | u64 num_bytes = orig_bytes - ticket.bytes; |
| 5274 | space_info->bytes_may_use -= num_bytes; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5275 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5276 | space_info->flags, |
| 5277 | num_bytes, 0); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5278 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5279 | } |
| 5280 | list_del_init(&ticket.list); |
| 5281 | ret = -ENOSPC; |
| 5282 | } |
| 5283 | spin_unlock(&space_info->lock); |
| 5284 | ASSERT(list_empty(&ticket.list)); |
| 5285 | return ret; |
| 5286 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5287 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5288 | /** |
| 5289 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5290 | * @root - the root we're allocating for |
| 5291 | * @block_rsv - the block_rsv we're allocating for |
| 5292 | * @orig_bytes - the number of bytes we want |
| 5293 | * @flush - whether or not we can flush to make our reservation |
| 5294 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5295 | * 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] | 5296 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5297 | * flush out space to make room. It will do this by flushing delalloc if |
| 5298 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5299 | * regain reservations will be made and this will fail if there is not enough |
| 5300 | * space already. |
| 5301 | */ |
| 5302 | static int reserve_metadata_bytes(struct btrfs_root *root, |
| 5303 | struct btrfs_block_rsv *block_rsv, |
| 5304 | u64 orig_bytes, |
| 5305 | enum btrfs_reserve_flush_enum flush) |
| 5306 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5307 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5308 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5309 | int ret; |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5310 | bool system_chunk = (root == fs_info->chunk_root); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5311 | |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5312 | ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info, |
| 5313 | orig_bytes, flush, system_chunk); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5314 | if (ret == -ENOSPC && |
| 5315 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5316 | if (block_rsv != global_rsv && |
| 5317 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 5318 | ret = 0; |
| 5319 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 5320 | if (ret == -ENOSPC) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5321 | trace_btrfs_space_reservation(fs_info, "space_info:enospc", |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5322 | block_rsv->space_info->flags, |
| 5323 | orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5324 | return ret; |
| 5325 | } |
| 5326 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5327 | static struct btrfs_block_rsv *get_block_rsv( |
| 5328 | const struct btrfs_trans_handle *trans, |
| 5329 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5330 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5331 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5332 | struct btrfs_block_rsv *block_rsv = NULL; |
| 5333 | |
Alexandru Moise | e9cf439 | 2015-09-09 00:18:50 +0000 | [diff] [blame] | 5334 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5335 | (root == fs_info->csum_root && trans->adding_csums) || |
| 5336 | (root == fs_info->uuid_root)) |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 5337 | block_rsv = trans->block_rsv; |
| 5338 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5339 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5340 | block_rsv = root->block_rsv; |
| 5341 | |
| 5342 | if (!block_rsv) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5343 | block_rsv = &fs_info->empty_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5344 | |
| 5345 | return block_rsv; |
| 5346 | } |
| 5347 | |
| 5348 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 5349 | u64 num_bytes) |
| 5350 | { |
| 5351 | int ret = -ENOSPC; |
| 5352 | spin_lock(&block_rsv->lock); |
| 5353 | if (block_rsv->reserved >= num_bytes) { |
| 5354 | block_rsv->reserved -= num_bytes; |
| 5355 | if (block_rsv->reserved < block_rsv->size) |
| 5356 | block_rsv->full = 0; |
| 5357 | ret = 0; |
| 5358 | } |
| 5359 | spin_unlock(&block_rsv->lock); |
| 5360 | return ret; |
| 5361 | } |
| 5362 | |
| 5363 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 5364 | u64 num_bytes, int update_size) |
| 5365 | { |
| 5366 | spin_lock(&block_rsv->lock); |
| 5367 | block_rsv->reserved += num_bytes; |
| 5368 | if (update_size) |
| 5369 | block_rsv->size += num_bytes; |
| 5370 | else if (block_rsv->reserved >= block_rsv->size) |
| 5371 | block_rsv->full = 1; |
| 5372 | spin_unlock(&block_rsv->lock); |
| 5373 | } |
| 5374 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 5375 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 5376 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 5377 | int min_factor) |
| 5378 | { |
| 5379 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5380 | u64 min_bytes; |
| 5381 | |
| 5382 | if (global_rsv->space_info != dest->space_info) |
| 5383 | return -ENOSPC; |
| 5384 | |
| 5385 | spin_lock(&global_rsv->lock); |
| 5386 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 5387 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 5388 | spin_unlock(&global_rsv->lock); |
| 5389 | return -ENOSPC; |
| 5390 | } |
| 5391 | global_rsv->reserved -= num_bytes; |
| 5392 | if (global_rsv->reserved < global_rsv->size) |
| 5393 | global_rsv->full = 0; |
| 5394 | spin_unlock(&global_rsv->lock); |
| 5395 | |
| 5396 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 5397 | return 0; |
| 5398 | } |
| 5399 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5400 | /* |
| 5401 | * This is for space we already have accounted in space_info->bytes_may_use, so |
| 5402 | * basically when we're returning space from block_rsv's. |
| 5403 | */ |
| 5404 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 5405 | struct btrfs_space_info *space_info, |
| 5406 | u64 num_bytes) |
| 5407 | { |
| 5408 | struct reserve_ticket *ticket; |
| 5409 | struct list_head *head; |
| 5410 | u64 used; |
| 5411 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH; |
| 5412 | bool check_overcommit = false; |
| 5413 | |
| 5414 | spin_lock(&space_info->lock); |
| 5415 | head = &space_info->priority_tickets; |
| 5416 | |
| 5417 | /* |
| 5418 | * If we are over our limit then we need to check and see if we can |
| 5419 | * overcommit, and if we can't then we just need to free up our space |
| 5420 | * and not satisfy any requests. |
| 5421 | */ |
Nikolay Borisov | 0eee8a4 | 2017-06-14 11:35:34 +0300 | [diff] [blame] | 5422 | used = btrfs_space_info_used(space_info, true); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5423 | if (used - num_bytes >= space_info->total_bytes) |
| 5424 | check_overcommit = true; |
| 5425 | again: |
| 5426 | while (!list_empty(head) && num_bytes) { |
| 5427 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5428 | list); |
| 5429 | /* |
| 5430 | * We use 0 bytes because this space is already reserved, so |
| 5431 | * adding the ticket space would be a double count. |
| 5432 | */ |
| 5433 | if (check_overcommit && |
Jeff Mahoney | c1c4919 | 2017-05-17 11:38:36 -0400 | [diff] [blame] | 5434 | !can_overcommit(fs_info, space_info, 0, flush, false)) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5435 | break; |
| 5436 | if (num_bytes >= ticket->bytes) { |
| 5437 | list_del_init(&ticket->list); |
| 5438 | num_bytes -= ticket->bytes; |
| 5439 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5440 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5441 | wake_up(&ticket->wait); |
| 5442 | } else { |
| 5443 | ticket->bytes -= num_bytes; |
| 5444 | num_bytes = 0; |
| 5445 | } |
| 5446 | } |
| 5447 | |
| 5448 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5449 | head = &space_info->tickets; |
| 5450 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 5451 | goto again; |
| 5452 | } |
| 5453 | space_info->bytes_may_use -= num_bytes; |
| 5454 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5455 | space_info->flags, num_bytes, 0); |
| 5456 | spin_unlock(&space_info->lock); |
| 5457 | } |
| 5458 | |
| 5459 | /* |
| 5460 | * This is for newly allocated space that isn't accounted in |
| 5461 | * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent |
| 5462 | * we use this helper. |
| 5463 | */ |
| 5464 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 5465 | struct btrfs_space_info *space_info, |
| 5466 | u64 num_bytes) |
| 5467 | { |
| 5468 | struct reserve_ticket *ticket; |
| 5469 | struct list_head *head = &space_info->priority_tickets; |
| 5470 | |
| 5471 | again: |
| 5472 | while (!list_empty(head) && num_bytes) { |
| 5473 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5474 | list); |
| 5475 | if (num_bytes >= ticket->bytes) { |
| 5476 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5477 | space_info->flags, |
| 5478 | ticket->bytes, 1); |
| 5479 | list_del_init(&ticket->list); |
| 5480 | num_bytes -= ticket->bytes; |
| 5481 | space_info->bytes_may_use += ticket->bytes; |
| 5482 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5483 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5484 | wake_up(&ticket->wait); |
| 5485 | } else { |
| 5486 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5487 | space_info->flags, |
| 5488 | num_bytes, 1); |
| 5489 | space_info->bytes_may_use += num_bytes; |
| 5490 | ticket->bytes -= num_bytes; |
| 5491 | num_bytes = 0; |
| 5492 | } |
| 5493 | } |
| 5494 | |
| 5495 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5496 | head = &space_info->tickets; |
| 5497 | goto again; |
| 5498 | } |
| 5499 | } |
| 5500 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5501 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 5502 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 5503 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5504 | { |
| 5505 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 5506 | |
| 5507 | spin_lock(&block_rsv->lock); |
| 5508 | if (num_bytes == (u64)-1) |
| 5509 | num_bytes = block_rsv->size; |
| 5510 | block_rsv->size -= num_bytes; |
| 5511 | if (block_rsv->reserved >= block_rsv->size) { |
| 5512 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 5513 | block_rsv->reserved = block_rsv->size; |
| 5514 | block_rsv->full = 1; |
| 5515 | } else { |
| 5516 | num_bytes = 0; |
| 5517 | } |
| 5518 | spin_unlock(&block_rsv->lock); |
| 5519 | |
| 5520 | if (num_bytes > 0) { |
| 5521 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 5522 | spin_lock(&dest->lock); |
| 5523 | if (!dest->full) { |
| 5524 | u64 bytes_to_add; |
| 5525 | |
| 5526 | bytes_to_add = dest->size - dest->reserved; |
| 5527 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 5528 | dest->reserved += bytes_to_add; |
| 5529 | if (dest->reserved >= dest->size) |
| 5530 | dest->full = 1; |
| 5531 | num_bytes -= bytes_to_add; |
| 5532 | } |
| 5533 | spin_unlock(&dest->lock); |
| 5534 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5535 | if (num_bytes) |
| 5536 | space_info_add_old_bytes(fs_info, space_info, |
| 5537 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5538 | } |
| 5539 | } |
| 5540 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5541 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src, |
| 5542 | struct btrfs_block_rsv *dst, u64 num_bytes, |
| 5543 | int update_size) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5544 | { |
| 5545 | int ret; |
| 5546 | |
| 5547 | ret = block_rsv_use_bytes(src, num_bytes); |
| 5548 | if (ret) |
| 5549 | return ret; |
| 5550 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5551 | block_rsv_add_bytes(dst, num_bytes, update_size); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5552 | return 0; |
| 5553 | } |
| 5554 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5555 | 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] | 5556 | { |
| 5557 | memset(rsv, 0, sizeof(*rsv)); |
| 5558 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5559 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5560 | } |
| 5561 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5562 | 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] | 5563 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5564 | { |
| 5565 | struct btrfs_block_rsv *block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5566 | |
| 5567 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 5568 | if (!block_rsv) |
| 5569 | return NULL; |
| 5570 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5571 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5572 | block_rsv->space_info = __find_space_info(fs_info, |
| 5573 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5574 | return block_rsv; |
| 5575 | } |
| 5576 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5577 | void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5578 | struct btrfs_block_rsv *rsv) |
| 5579 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 5580 | if (!rsv) |
| 5581 | return; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5582 | btrfs_block_rsv_release(fs_info, rsv, (u64)-1); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5583 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5584 | } |
| 5585 | |
Chris Mason | cdfb080 | 2015-04-06 18:17:00 -0700 | [diff] [blame] | 5586 | void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv) |
| 5587 | { |
| 5588 | kfree(rsv); |
| 5589 | } |
| 5590 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5591 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 5592 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 5593 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5594 | { |
| 5595 | int ret; |
| 5596 | |
| 5597 | if (num_bytes == 0) |
| 5598 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5599 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 5600 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5601 | if (!ret) { |
| 5602 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 5603 | return 0; |
| 5604 | } |
| 5605 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5606 | return ret; |
| 5607 | } |
| 5608 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5609 | 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] | 5610 | { |
| 5611 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5612 | int ret = -ENOSPC; |
| 5613 | |
| 5614 | if (!block_rsv) |
| 5615 | return 0; |
| 5616 | |
| 5617 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5618 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 5619 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5620 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5621 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5622 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5623 | return ret; |
| 5624 | } |
| 5625 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5626 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 5627 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 5628 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5629 | { |
| 5630 | u64 num_bytes = 0; |
| 5631 | int ret = -ENOSPC; |
| 5632 | |
| 5633 | if (!block_rsv) |
| 5634 | return 0; |
| 5635 | |
| 5636 | spin_lock(&block_rsv->lock); |
| 5637 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5638 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5639 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5640 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5641 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5642 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5643 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5644 | if (!ret) |
| 5645 | return 0; |
| 5646 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 5647 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5648 | if (!ret) { |
| 5649 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5650 | return 0; |
| 5651 | } |
| 5652 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5653 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5654 | } |
| 5655 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5656 | void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5657 | struct btrfs_block_rsv *block_rsv, |
| 5658 | u64 num_bytes) |
| 5659 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5660 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5661 | |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 5662 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5663 | block_rsv->space_info != global_rsv->space_info) |
| 5664 | global_rsv = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5665 | block_rsv_release_bytes(fs_info, block_rsv, global_rsv, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5666 | } |
| 5667 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5668 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5669 | { |
| 5670 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 5671 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 5672 | u64 num_bytes; |
| 5673 | |
Josef Bacik | ae2e472 | 2016-05-27 12:58:35 -0400 | [diff] [blame] | 5674 | /* |
| 5675 | * The global block rsv is based on the size of the extent tree, the |
| 5676 | * checksum tree and the root tree. If the fs is empty we want to set |
| 5677 | * it to a minimal amount for safety. |
| 5678 | */ |
| 5679 | num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) + |
| 5680 | btrfs_root_used(&fs_info->csum_root->root_item) + |
| 5681 | btrfs_root_used(&fs_info->tree_root->root_item); |
| 5682 | num_bytes = max_t(u64, num_bytes, SZ_16M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5683 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5684 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5685 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5686 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 5687 | block_rsv->size = min_t(u64, num_bytes, SZ_512M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5688 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5689 | if (block_rsv->reserved < block_rsv->size) { |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 5690 | num_bytes = btrfs_space_info_used(sinfo, true); |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5691 | if (sinfo->total_bytes > num_bytes) { |
| 5692 | num_bytes = sinfo->total_bytes - num_bytes; |
| 5693 | num_bytes = min(num_bytes, |
| 5694 | block_rsv->size - block_rsv->reserved); |
| 5695 | block_rsv->reserved += num_bytes; |
| 5696 | sinfo->bytes_may_use += num_bytes; |
| 5697 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5698 | sinfo->flags, num_bytes, |
| 5699 | 1); |
| 5700 | } |
| 5701 | } else if (block_rsv->reserved > block_rsv->size) { |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5702 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5703 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5704 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5705 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5706 | block_rsv->reserved = block_rsv->size; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5707 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 5708 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5709 | if (block_rsv->reserved == block_rsv->size) |
| 5710 | block_rsv->full = 1; |
| 5711 | else |
| 5712 | block_rsv->full = 0; |
| 5713 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5714 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5715 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5716 | } |
| 5717 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5718 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5719 | { |
| 5720 | struct btrfs_space_info *space_info; |
| 5721 | |
| 5722 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 5723 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5724 | |
| 5725 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5726 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5727 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5728 | fs_info->trans_block_rsv.space_info = space_info; |
| 5729 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5730 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5731 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5732 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 5733 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 5734 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 5735 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 5736 | if (fs_info->quota_root) |
| 5737 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5738 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5739 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5740 | update_global_block_rsv(fs_info); |
| 5741 | } |
| 5742 | |
| 5743 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5744 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5745 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 5746 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5747 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 5748 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 5749 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 5750 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 5751 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 5752 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5753 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 5754 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5755 | } |
| 5756 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5757 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5758 | struct btrfs_fs_info *fs_info) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5759 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 5760 | if (!trans->block_rsv) |
| 5761 | return; |
| 5762 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5763 | if (!trans->bytes_reserved) |
| 5764 | return; |
| 5765 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5766 | trace_btrfs_space_reservation(fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5767 | trans->transid, trans->bytes_reserved, 0); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5768 | btrfs_block_rsv_release(fs_info, trans->block_rsv, |
| 5769 | trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5770 | trans->bytes_reserved = 0; |
| 5771 | } |
| 5772 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5773 | /* |
| 5774 | * To be called after all the new block groups attached to the transaction |
| 5775 | * handle have been created (btrfs_create_pending_block_groups()). |
| 5776 | */ |
| 5777 | void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) |
| 5778 | { |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 5779 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5780 | |
| 5781 | if (!trans->chunk_bytes_reserved) |
| 5782 | return; |
| 5783 | |
| 5784 | WARN_ON_ONCE(!list_empty(&trans->new_bgs)); |
| 5785 | |
| 5786 | block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL, |
| 5787 | trans->chunk_bytes_reserved); |
| 5788 | trans->chunk_bytes_reserved = 0; |
| 5789 | } |
| 5790 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5791 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5792 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5793 | struct btrfs_inode *inode) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5794 | { |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5795 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5796 | struct btrfs_root *root = inode->root; |
Josef Bacik | 40acc3ee | 2016-05-27 13:01:08 -0400 | [diff] [blame] | 5797 | /* |
| 5798 | * We always use trans->block_rsv here as we will have reserved space |
| 5799 | * for our orphan when starting the transaction, using get_block_rsv() |
| 5800 | * here will sometimes make us choose the wrong block rsv as we could be |
| 5801 | * doing a reloc inode for a non refcounted root. |
| 5802 | */ |
| 5803 | struct btrfs_block_rsv *src_rsv = trans->block_rsv; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5804 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 5805 | |
| 5806 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5807 | * We need to hold space in order to delete our orphan item once we've |
| 5808 | * added it, so this takes the reservation so we can release it later |
| 5809 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5810 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5811 | u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
| 5812 | |
Nikolay Borisov | 8ed7a2a | 2017-02-20 13:50:39 +0200 | [diff] [blame] | 5813 | trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode), |
| 5814 | num_bytes, 1); |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5815 | return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5816 | } |
| 5817 | |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5818 | void btrfs_orphan_release_metadata(struct btrfs_inode *inode) |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5819 | { |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5820 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5821 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5822 | u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1); |
| 5823 | |
Nikolay Borisov | 703b391 | 2017-02-20 13:50:40 +0200 | [diff] [blame] | 5824 | trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode), |
| 5825 | num_bytes, 0); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5826 | btrfs_block_rsv_release(fs_info, root->orphan_block_rsv, num_bytes); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5827 | } |
| 5828 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5829 | /* |
| 5830 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 5831 | * root: the root of the parent directory |
| 5832 | * rsv: block reservation |
| 5833 | * items: the number of items that we need do reservation |
| 5834 | * qgroup_reserved: used to return the reserved size in qgroup |
| 5835 | * |
| 5836 | * This function is used to reserve the space for snapshot/subvolume |
| 5837 | * creation and deletion. Those operations are different with the |
| 5838 | * common file/directory operations, they change two fs/file trees |
| 5839 | * and root tree, the number of items that the qgroup reserves is |
| 5840 | * different with the free space reservation. So we can not use |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5841 | * the space reservation mechanism in start_transaction(). |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5842 | */ |
| 5843 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 5844 | struct btrfs_block_rsv *rsv, |
| 5845 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5846 | u64 *qgroup_reserved, |
| 5847 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5848 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5849 | u64 num_bytes; |
| 5850 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5851 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 5852 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5853 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5854 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5855 | /* One for parent inode, two for dir entries */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5856 | num_bytes = 3 * fs_info->nodesize; |
Jeff Mahoney | 003d7c5 | 2017-01-25 09:50:33 -0500 | [diff] [blame] | 5857 | ret = btrfs_qgroup_reserve_meta(root, num_bytes, true); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5858 | if (ret) |
| 5859 | return ret; |
| 5860 | } else { |
| 5861 | num_bytes = 0; |
| 5862 | } |
| 5863 | |
| 5864 | *qgroup_reserved = num_bytes; |
| 5865 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5866 | num_bytes = btrfs_calc_trans_metadata_size(fs_info, items); |
| 5867 | rsv->space_info = __find_space_info(fs_info, |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5868 | BTRFS_BLOCK_GROUP_METADATA); |
| 5869 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5870 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5871 | |
| 5872 | if (ret == -ENOSPC && use_global_rsv) |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5873 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5874 | |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5875 | if (ret && *qgroup_reserved) |
| 5876 | btrfs_qgroup_free_meta(root, *qgroup_reserved); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5877 | |
| 5878 | return ret; |
| 5879 | } |
| 5880 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5881 | void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info, |
David Sterba | 7775c81 | 2017-02-10 19:18:18 +0100 | [diff] [blame] | 5882 | struct btrfs_block_rsv *rsv) |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5883 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 5884 | btrfs_block_rsv_release(fs_info, rsv, (u64)-1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5885 | } |
| 5886 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5887 | /** |
| 5888 | * drop_outstanding_extent - drop an outstanding extent |
| 5889 | * @inode: the inode we're dropping the extent for |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5890 | * @num_bytes: the number of bytes we're releasing. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5891 | * |
| 5892 | * This is called when we are freeing up an outstanding extent, either called |
| 5893 | * after an error or after an extent is written. This will return the number of |
| 5894 | * reserved extents that need to be freed. This must be called with |
| 5895 | * BTRFS_I(inode)->lock held. |
| 5896 | */ |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5897 | static unsigned drop_outstanding_extent(struct btrfs_inode *inode, |
| 5898 | u64 num_bytes) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5899 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5900 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5901 | unsigned dropped_extents = 0; |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5902 | unsigned num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5903 | |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5904 | num_extents = count_max_extents(num_bytes); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5905 | ASSERT(num_extents); |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5906 | ASSERT(inode->outstanding_extents >= num_extents); |
| 5907 | inode->outstanding_extents -= num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5908 | |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5909 | if (inode->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5910 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5911 | &inode->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5912 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5913 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5914 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5915 | * 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] | 5916 | * reserved then we need to leave the reserved extents count alone. |
| 5917 | */ |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5918 | if (inode->outstanding_extents >= inode->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5919 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5920 | |
Nikolay Borisov | baa3ba3 | 2017-02-20 13:50:37 +0200 | [diff] [blame] | 5921 | dropped_extents = inode->reserved_extents - inode->outstanding_extents; |
| 5922 | inode->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5923 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5924 | } |
| 5925 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5926 | /** |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5927 | * calc_csum_metadata_size - return the amount of metadata space that must be |
| 5928 | * reserved/freed for the given bytes. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5929 | * @inode: the inode we're manipulating |
| 5930 | * @num_bytes: the number of bytes in question |
| 5931 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5932 | * |
| 5933 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5934 | * correct amount of metadata that must either be reserved or freed. We |
| 5935 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5936 | * number of bytes that will need to be checksumed by this value to figure out |
| 5937 | * how many checksums will be required. If we are adding bytes then the number |
| 5938 | * may go up and we will return the number of additional bytes that must be |
| 5939 | * reserved. If it is going down we will return the number of bytes that must |
| 5940 | * be freed. |
| 5941 | * |
| 5942 | * This must be called with BTRFS_I(inode)->lock held. |
| 5943 | */ |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5944 | 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] | 5945 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5946 | { |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5947 | 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] | 5948 | u64 old_csums, num_csums; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5949 | |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5950 | if (inode->flags & BTRFS_INODE_NODATASUM && inode->csum_bytes == 0) |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5951 | return 0; |
| 5952 | |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5953 | old_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5954 | if (reserve) |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5955 | inode->csum_bytes += num_bytes; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5956 | else |
Nikolay Borisov | 0e6bf9b | 2017-02-20 13:50:38 +0200 | [diff] [blame] | 5957 | inode->csum_bytes -= num_bytes; |
| 5958 | num_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5959 | |
| 5960 | /* No change, no need to reserve more */ |
| 5961 | if (old_csums == num_csums) |
| 5962 | return 0; |
| 5963 | |
| 5964 | if (reserve) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5965 | return btrfs_calc_trans_metadata_size(fs_info, |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5966 | num_csums - old_csums); |
| 5967 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5968 | return btrfs_calc_trans_metadata_size(fs_info, old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5969 | } |
| 5970 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5971 | int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5972 | { |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 5973 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb); |
| 5974 | struct btrfs_root *root = inode->root; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 5975 | struct btrfs_block_rsv *block_rsv = &fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5976 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5977 | u64 csum_bytes; |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 5978 | unsigned nr_extents; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5979 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5980 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5981 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5982 | u64 to_free = 0; |
| 5983 | unsigned dropped; |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5984 | bool release_extra = false; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5985 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5986 | /* If we are a free space inode we need to not flush since we will be in |
| 5987 | * the middle of a transaction commit. We also don't need the delalloc |
| 5988 | * mutex since we won't race with anybody. We need this mostly to make |
| 5989 | * lockdep shut its filthy mouth. |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5990 | * |
| 5991 | * If we have a transaction open (can happen if we call truncate_block |
| 5992 | * from truncate), then we need FLUSH_LIMIT so we don't deadlock. |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5993 | */ |
| 5994 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5995 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5996 | delalloc_lock = false; |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5997 | } else if (current->journal_info) { |
| 5998 | flush = BTRFS_RESERVE_FLUSH_LIMIT; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5999 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 6000 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 6001 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6002 | btrfs_transaction_in_commit(fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6003 | schedule_timeout(1); |
| 6004 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6005 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6006 | mutex_lock(&inode->delalloc_mutex); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6007 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6008 | num_bytes = ALIGN(num_bytes, fs_info->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 6009 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6010 | spin_lock(&inode->lock); |
David Sterba | 823bb20 | 2017-01-04 11:09:51 +0100 | [diff] [blame] | 6011 | nr_extents = count_max_extents(num_bytes); |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6012 | inode->outstanding_extents += nr_extents; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 6013 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6014 | nr_extents = 0; |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6015 | if (inode->outstanding_extents > inode->reserved_extents) |
| 6016 | nr_extents += inode->outstanding_extents - |
| 6017 | inode->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 6018 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6019 | /* We always want to reserve a slot for updating the inode. */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6020 | to_reserve = btrfs_calc_trans_metadata_size(fs_info, nr_extents + 1); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6021 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6022 | csum_bytes = inode->csum_bytes; |
| 6023 | spin_unlock(&inode->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 6024 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6025 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) { |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 6026 | ret = btrfs_qgroup_reserve_meta(root, |
Jeff Mahoney | 003d7c5 | 2017-01-25 09:50:33 -0500 | [diff] [blame] | 6027 | nr_extents * fs_info->nodesize, true); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6028 | if (ret) |
| 6029 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 6030 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 6031 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6032 | ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6033 | if (unlikely(ret)) { |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 6034 | btrfs_qgroup_free_meta(root, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6035 | nr_extents * fs_info->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6036 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6037 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6038 | |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6039 | spin_lock(&inode->lock); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6040 | if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6041 | &inode->runtime_flags)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6042 | to_reserve -= btrfs_calc_trans_metadata_size(fs_info, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6043 | release_extra = true; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6044 | } |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6045 | inode->reserved_extents += nr_extents; |
| 6046 | spin_unlock(&inode->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6047 | |
| 6048 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6049 | mutex_unlock(&inode->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6050 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6051 | if (to_reserve) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6052 | trace_btrfs_space_reservation(fs_info, "delalloc", |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6053 | btrfs_ino(inode), to_reserve, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6054 | if (release_extra) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6055 | btrfs_block_rsv_release(fs_info, block_rsv, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6056 | btrfs_calc_trans_metadata_size(fs_info, 1)); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6057 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6058 | |
| 6059 | out_fail: |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6060 | spin_lock(&inode->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6061 | dropped = drop_outstanding_extent(inode, num_bytes); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6062 | /* |
| 6063 | * If the inodes csum_bytes is the same as the original |
| 6064 | * csum_bytes then we know we haven't raced with any free()ers |
| 6065 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6066 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6067 | if (inode->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6068 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6069 | } else { |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6070 | u64 orig_csum_bytes = inode->csum_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6071 | u64 bytes; |
| 6072 | |
| 6073 | /* |
| 6074 | * 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] | 6075 | * freed from any free-ers that occurred during this |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6076 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 6077 | * before we dropped our lock, and then call the free for the |
| 6078 | * number of bytes that were freed while we were trying our |
| 6079 | * reservation. |
| 6080 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6081 | bytes = csum_bytes - inode->csum_bytes; |
| 6082 | inode->csum_bytes = csum_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6083 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 6084 | |
| 6085 | |
| 6086 | /* |
| 6087 | * Now we need to see how much we would have freed had we not |
| 6088 | * been making this reservation and our ->csum_bytes were not |
| 6089 | * artificially inflated. |
| 6090 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6091 | inode->csum_bytes = csum_bytes - num_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6092 | bytes = csum_bytes - orig_csum_bytes; |
| 6093 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 6094 | |
| 6095 | /* |
| 6096 | * 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] | 6097 | * 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] | 6098 | * not had an artificially high ->csum_bytes, so we need to free |
| 6099 | * the remainder. If bytes is the same or less then we don't |
| 6100 | * need to do anything, the other free-ers did the correct |
| 6101 | * thing. |
| 6102 | */ |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6103 | inode->csum_bytes = orig_csum_bytes - num_bytes; |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6104 | if (bytes > to_free) |
| 6105 | to_free = bytes - to_free; |
| 6106 | else |
| 6107 | to_free = 0; |
| 6108 | } |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6109 | spin_unlock(&inode->lock); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 6110 | if (dropped) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6111 | to_free += btrfs_calc_trans_metadata_size(fs_info, dropped); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6112 | |
| 6113 | if (to_free) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6114 | btrfs_block_rsv_release(fs_info, block_rsv, to_free); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6115 | trace_btrfs_space_reservation(fs_info, "delalloc", |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6116 | btrfs_ino(inode), to_free, 0); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6117 | } |
| 6118 | if (delalloc_lock) |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6119 | mutex_unlock(&inode->delalloc_mutex); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6120 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6121 | } |
| 6122 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6123 | /** |
| 6124 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 6125 | * @inode: the inode to release the reservation for |
| 6126 | * @num_bytes: the number of bytes we're releasing |
| 6127 | * |
| 6128 | * This will release the metadata reservation for an inode. This can be called |
| 6129 | * once we complete IO for a given set of bytes to release their metadata |
| 6130 | * reservations. |
| 6131 | */ |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6132 | void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6133 | { |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6134 | 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] | 6135 | u64 to_free = 0; |
| 6136 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6137 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6138 | num_bytes = ALIGN(num_bytes, fs_info->sectorsize); |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6139 | spin_lock(&inode->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6140 | dropped = drop_outstanding_extent(inode, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6141 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 6142 | if (num_bytes) |
| 6143 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6144 | spin_unlock(&inode->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6145 | if (dropped > 0) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6146 | to_free += btrfs_calc_trans_metadata_size(fs_info, dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6147 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6148 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | 6a3891c | 2015-03-16 17:38:52 -0400 | [diff] [blame] | 6149 | return; |
| 6150 | |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6151 | trace_btrfs_space_reservation(fs_info, "delalloc", btrfs_ino(inode), |
| 6152 | to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 6153 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6154 | 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] | 6155 | } |
| 6156 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6157 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6158 | * btrfs_delalloc_reserve_space - reserve data and metadata space for |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6159 | * delalloc |
| 6160 | * @inode: inode we're writing to |
| 6161 | * @start: start range we are writing to |
| 6162 | * @len: how long the range we are writing to |
| 6163 | * |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6164 | * This will do the following things |
| 6165 | * |
| 6166 | * o reserve space in data space info for num bytes |
| 6167 | * and reserve precious corresponding qgroup space |
| 6168 | * (Done in check_data_free_space) |
| 6169 | * |
| 6170 | * o reserve space for metadata space, based on the number of outstanding |
| 6171 | * extents and how much csums will be needed |
| 6172 | * also reserve metadata space in a per root over-reserve method. |
| 6173 | * o add to the inodes->delalloc_bytes |
| 6174 | * o add it to the fs_info's delalloc inodes list. |
| 6175 | * (Above 3 all done in delalloc_reserve_metadata) |
| 6176 | * |
| 6177 | * Return 0 for success |
| 6178 | * Return <0 for error(-ENOSPC or -EQUOT) |
| 6179 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6180 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6181 | { |
| 6182 | int ret; |
| 6183 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6184 | ret = btrfs_check_data_free_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6185 | if (ret < 0) |
| 6186 | return ret; |
Nikolay Borisov | 9f3db42 | 2017-02-20 13:50:41 +0200 | [diff] [blame] | 6187 | ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6188 | if (ret < 0) |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6189 | btrfs_free_reserved_data_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6190 | return ret; |
| 6191 | } |
| 6192 | |
| 6193 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6194 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6195 | * @inode: inode we're releasing space for |
| 6196 | * @start: start position of the space already reserved |
| 6197 | * @len: the len of the space already reserved |
| 6198 | * |
| 6199 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 6200 | * called in the case that we don't need the metadata AND data reservations |
| 6201 | * anymore. So if there is an error or we insert an inline extent. |
| 6202 | * |
| 6203 | * This function will release the metadata space that was not used and will |
| 6204 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 6205 | * list if there are no delalloc bytes left. |
| 6206 | * Also it will handle the qgroup reserved space. |
| 6207 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6208 | void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6209 | { |
Nikolay Borisov | 691fa05 | 2017-02-20 13:50:42 +0200 | [diff] [blame] | 6210 | btrfs_delalloc_release_metadata(BTRFS_I(inode), len); |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6211 | btrfs_free_reserved_data_space(inode, start, len); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6212 | } |
| 6213 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6214 | static int update_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 6215 | struct btrfs_fs_info *info, u64 bytenr, |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6216 | u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6217 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6218 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6219 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6220 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6221 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6222 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 6223 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6224 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6225 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6226 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6227 | if (alloc) |
| 6228 | old_val += num_bytes; |
| 6229 | else |
| 6230 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6231 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6232 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6233 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6234 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6235 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6236 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6237 | return -ENOENT; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6238 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 6239 | BTRFS_BLOCK_GROUP_RAID1 | |
| 6240 | BTRFS_BLOCK_GROUP_RAID10)) |
| 6241 | factor = 2; |
| 6242 | else |
| 6243 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 6244 | /* |
| 6245 | * If this block group has free space cache written out, we |
| 6246 | * need to make sure to load it if we are removing space. This |
| 6247 | * is because we need the unpinning stage to actually add the |
| 6248 | * space back to the block group, otherwise we will leak space. |
| 6249 | */ |
| 6250 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6251 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6252 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6253 | byte_in_group = bytenr - cache->key.objectid; |
| 6254 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6255 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6256 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6257 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6258 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 6259 | if (btrfs_test_opt(info, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6260 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 6261 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 6262 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6263 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6264 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6265 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6266 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6267 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6268 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6269 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6270 | cache->space_info->bytes_used += num_bytes; |
| 6271 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6272 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6273 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6274 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6275 | old_val -= num_bytes; |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6276 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6277 | cache->pinned += num_bytes; |
| 6278 | cache->space_info->bytes_pinned += num_bytes; |
| 6279 | cache->space_info->bytes_used -= num_bytes; |
| 6280 | cache->space_info->disk_used -= num_bytes * factor; |
| 6281 | spin_unlock(&cache->lock); |
| 6282 | spin_unlock(&cache->space_info->lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 6283 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6284 | trace_btrfs_space_reservation(info, "pinned", |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6285 | cache->space_info->flags, |
| 6286 | num_bytes, 1); |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6287 | set_extent_dirty(info->pinned_extents, |
| 6288 | bytenr, bytenr + num_bytes - 1, |
| 6289 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6290 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 6291 | |
| 6292 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 6293 | if (list_empty(&cache->dirty_list)) { |
| 6294 | list_add_tail(&cache->dirty_list, |
| 6295 | &trans->transaction->dirty_bgs); |
| 6296 | trans->transaction->num_dirty_bgs++; |
| 6297 | btrfs_get_block_group(cache); |
| 6298 | } |
| 6299 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 6300 | |
Filipe Manana | 036a934 | 2015-11-23 15:25:16 +0000 | [diff] [blame] | 6301 | /* |
| 6302 | * No longer have used bytes in this block group, queue it for |
| 6303 | * deletion. We do this after adding the block group to the |
| 6304 | * dirty list to avoid races between cleaner kthread and space |
| 6305 | * cache writeout. |
| 6306 | */ |
| 6307 | if (!alloc && old_val == 0) { |
| 6308 | spin_lock(&info->unused_bgs_lock); |
| 6309 | if (list_empty(&cache->bg_list)) { |
| 6310 | btrfs_get_block_group(cache); |
| 6311 | list_add_tail(&cache->bg_list, |
| 6312 | &info->unused_bgs); |
| 6313 | } |
| 6314 | spin_unlock(&info->unused_bgs_lock); |
| 6315 | } |
| 6316 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6317 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6318 | total -= num_bytes; |
| 6319 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6320 | } |
| 6321 | return 0; |
| 6322 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6323 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6324 | 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] | 6325 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6326 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6327 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6328 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6329 | spin_lock(&fs_info->block_group_cache_lock); |
| 6330 | bytenr = fs_info->first_logical_byte; |
| 6331 | spin_unlock(&fs_info->block_group_cache_lock); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 6332 | |
| 6333 | if (bytenr < (u64)-1) |
| 6334 | return bytenr; |
| 6335 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6336 | cache = btrfs_lookup_first_block_group(fs_info, search_start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6337 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6338 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6339 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6340 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6341 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6342 | |
| 6343 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6344 | } |
| 6345 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6346 | static int pin_down_extent(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6347 | struct btrfs_block_group_cache *cache, |
| 6348 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6349 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6350 | spin_lock(&cache->space_info->lock); |
| 6351 | spin_lock(&cache->lock); |
| 6352 | cache->pinned += num_bytes; |
| 6353 | cache->space_info->bytes_pinned += num_bytes; |
| 6354 | if (reserved) { |
| 6355 | cache->reserved -= num_bytes; |
| 6356 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6357 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6358 | spin_unlock(&cache->lock); |
| 6359 | spin_unlock(&cache->space_info->lock); |
| 6360 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6361 | trace_btrfs_space_reservation(fs_info, "pinned", |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6362 | cache->space_info->flags, num_bytes, 1); |
Omar Sandoval | 4da8b76 | 2017-06-06 16:45:28 -0700 | [diff] [blame] | 6363 | percpu_counter_add(&cache->space_info->total_bytes_pinned, num_bytes); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6364 | set_extent_dirty(fs_info->pinned_extents, bytenr, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6365 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6366 | return 0; |
| 6367 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6368 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6369 | /* |
| 6370 | * this function must be called within transaction |
| 6371 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6372 | int btrfs_pin_extent(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6373 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6374 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6375 | struct btrfs_block_group_cache *cache; |
| 6376 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6377 | cache = btrfs_lookup_block_group(fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6378 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6379 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6380 | pin_down_extent(fs_info, cache, bytenr, num_bytes, reserved); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6381 | |
| 6382 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6383 | return 0; |
| 6384 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6385 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6386 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6387 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6388 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6389 | 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] | 6390 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6391 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6392 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6393 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6394 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6395 | cache = btrfs_lookup_block_group(fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6396 | if (!cache) |
| 6397 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6398 | |
| 6399 | /* |
| 6400 | * pull in the free space cache (if any) so that our pin |
| 6401 | * removes the free space from the cache. We have load_only set |
| 6402 | * to one because the slow code to read in the free extents does check |
| 6403 | * the pinned extents. |
| 6404 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6405 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6406 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6407 | pin_down_extent(fs_info, cache, bytenr, num_bytes, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6408 | |
| 6409 | /* 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] | 6410 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6411 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6412 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6413 | } |
| 6414 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6415 | static int __exclude_logged_extent(struct btrfs_fs_info *fs_info, |
| 6416 | u64 start, u64 num_bytes) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6417 | { |
| 6418 | int ret; |
| 6419 | struct btrfs_block_group_cache *block_group; |
| 6420 | struct btrfs_caching_control *caching_ctl; |
| 6421 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6422 | block_group = btrfs_lookup_block_group(fs_info, start); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6423 | if (!block_group) |
| 6424 | return -EINVAL; |
| 6425 | |
| 6426 | cache_block_group(block_group, 0); |
| 6427 | caching_ctl = get_caching_control(block_group); |
| 6428 | |
| 6429 | if (!caching_ctl) { |
| 6430 | /* Logic error */ |
| 6431 | BUG_ON(!block_group_cache_done(block_group)); |
| 6432 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 6433 | } else { |
| 6434 | mutex_lock(&caching_ctl->mutex); |
| 6435 | |
| 6436 | if (start >= caching_ctl->progress) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6437 | ret = add_excluded_extent(fs_info, start, num_bytes); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6438 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 6439 | ret = btrfs_remove_free_space(block_group, |
| 6440 | start, num_bytes); |
| 6441 | } else { |
| 6442 | num_bytes = caching_ctl->progress - start; |
| 6443 | ret = btrfs_remove_free_space(block_group, |
| 6444 | start, num_bytes); |
| 6445 | if (ret) |
| 6446 | goto out_lock; |
| 6447 | |
| 6448 | num_bytes = (start + num_bytes) - |
| 6449 | caching_ctl->progress; |
| 6450 | start = caching_ctl->progress; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6451 | ret = add_excluded_extent(fs_info, start, num_bytes); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6452 | } |
| 6453 | out_lock: |
| 6454 | mutex_unlock(&caching_ctl->mutex); |
| 6455 | put_caching_control(caching_ctl); |
| 6456 | } |
| 6457 | btrfs_put_block_group(block_group); |
| 6458 | return ret; |
| 6459 | } |
| 6460 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6461 | int btrfs_exclude_logged_extents(struct btrfs_fs_info *fs_info, |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6462 | struct extent_buffer *eb) |
| 6463 | { |
| 6464 | struct btrfs_file_extent_item *item; |
| 6465 | struct btrfs_key key; |
| 6466 | int found_type; |
| 6467 | int i; |
| 6468 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6469 | if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6470 | return 0; |
| 6471 | |
| 6472 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 6473 | btrfs_item_key_to_cpu(eb, &key, i); |
| 6474 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 6475 | continue; |
| 6476 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 6477 | found_type = btrfs_file_extent_type(eb, item); |
| 6478 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 6479 | continue; |
| 6480 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 6481 | continue; |
| 6482 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 6483 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6484 | __exclude_logged_extent(fs_info, key.objectid, key.offset); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6485 | } |
| 6486 | |
| 6487 | return 0; |
| 6488 | } |
| 6489 | |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6490 | static void |
| 6491 | btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6492 | { |
| 6493 | atomic_inc(&bg->reservations); |
| 6494 | } |
| 6495 | |
| 6496 | void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info, |
| 6497 | const u64 start) |
| 6498 | { |
| 6499 | struct btrfs_block_group_cache *bg; |
| 6500 | |
| 6501 | bg = btrfs_lookup_block_group(fs_info, start); |
| 6502 | ASSERT(bg); |
| 6503 | if (atomic_dec_and_test(&bg->reservations)) |
| 6504 | wake_up_atomic_t(&bg->reservations); |
| 6505 | btrfs_put_block_group(bg); |
| 6506 | } |
| 6507 | |
| 6508 | static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a) |
| 6509 | { |
| 6510 | schedule(); |
| 6511 | return 0; |
| 6512 | } |
| 6513 | |
| 6514 | void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6515 | { |
| 6516 | struct btrfs_space_info *space_info = bg->space_info; |
| 6517 | |
| 6518 | ASSERT(bg->ro); |
| 6519 | |
| 6520 | if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA)) |
| 6521 | return; |
| 6522 | |
| 6523 | /* |
| 6524 | * Our block group is read only but before we set it to read only, |
| 6525 | * some task might have had allocated an extent from it already, but it |
| 6526 | * has not yet created a respective ordered extent (and added it to a |
| 6527 | * root's list of ordered extents). |
| 6528 | * Therefore wait for any task currently allocating extents, since the |
| 6529 | * block group's reservations counter is incremented while a read lock |
| 6530 | * on the groups' semaphore is held and decremented after releasing |
| 6531 | * the read access on that semaphore and creating the ordered extent. |
| 6532 | */ |
| 6533 | down_write(&space_info->groups_sem); |
| 6534 | up_write(&space_info->groups_sem); |
| 6535 | |
| 6536 | wait_on_atomic_t(&bg->reservations, |
| 6537 | btrfs_wait_bg_reservations_atomic_t, |
| 6538 | TASK_UNINTERRUPTIBLE); |
| 6539 | } |
| 6540 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6541 | /** |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6542 | * btrfs_add_reserved_bytes - update the block_group and space info counters |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6543 | * @cache: The cache we are manipulating |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6544 | * @ram_bytes: The number of bytes of file content, and will be same to |
| 6545 | * @num_bytes except for the compress path. |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6546 | * @num_bytes: The number of bytes in question |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6547 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6548 | * |
Xiaoguang Wang | 745699e | 2016-09-23 12:38:50 +0800 | [diff] [blame] | 6549 | * This is called by the allocator when it reserves space. If this is a |
| 6550 | * reservation and the block group has become read only we cannot make the |
| 6551 | * reservation and return -EAGAIN, otherwise this function always succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6552 | */ |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6553 | static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6554 | u64 ram_bytes, u64 num_bytes, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6555 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6556 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6557 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6558 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6559 | spin_lock(&space_info->lock); |
| 6560 | spin_lock(&cache->lock); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6561 | if (cache->ro) { |
| 6562 | ret = -EAGAIN; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6563 | } else { |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6564 | cache->reserved += num_bytes; |
| 6565 | space_info->bytes_reserved += num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6566 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6567 | trace_btrfs_space_reservation(cache->fs_info, |
| 6568 | "space_info", space_info->flags, |
| 6569 | ram_bytes, 0); |
| 6570 | space_info->bytes_may_use -= ram_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6571 | if (delalloc) |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6572 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6573 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6574 | spin_unlock(&cache->lock); |
| 6575 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6576 | return ret; |
| 6577 | } |
| 6578 | |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6579 | /** |
| 6580 | * btrfs_free_reserved_bytes - update the block_group and space info counters |
| 6581 | * @cache: The cache we are manipulating |
| 6582 | * @num_bytes: The number of bytes in question |
| 6583 | * @delalloc: The blocks are allocated for the delalloc write |
| 6584 | * |
| 6585 | * This is called by somebody who is freeing space that was never actually used |
| 6586 | * on disk. For example if you reserve some space for a new leaf in transaction |
| 6587 | * A and before transaction A commits you free that leaf, you call this with |
| 6588 | * reserve set to 0 in order to clear the reservation. |
| 6589 | */ |
| 6590 | |
| 6591 | static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 6592 | u64 num_bytes, int delalloc) |
| 6593 | { |
| 6594 | struct btrfs_space_info *space_info = cache->space_info; |
| 6595 | int ret = 0; |
| 6596 | |
| 6597 | spin_lock(&space_info->lock); |
| 6598 | spin_lock(&cache->lock); |
| 6599 | if (cache->ro) |
| 6600 | space_info->bytes_readonly += num_bytes; |
| 6601 | cache->reserved -= num_bytes; |
| 6602 | space_info->bytes_reserved -= num_bytes; |
| 6603 | |
| 6604 | if (delalloc) |
| 6605 | cache->delalloc_bytes -= num_bytes; |
| 6606 | spin_unlock(&cache->lock); |
| 6607 | spin_unlock(&space_info->lock); |
| 6608 | return ret; |
| 6609 | } |
David Sterba | 8b74c03 | 2017-02-10 19:20:56 +0100 | [diff] [blame] | 6610 | void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6611 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6612 | struct btrfs_caching_control *next; |
| 6613 | struct btrfs_caching_control *caching_ctl; |
| 6614 | struct btrfs_block_group_cache *cache; |
| 6615 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6616 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6617 | |
| 6618 | list_for_each_entry_safe(caching_ctl, next, |
| 6619 | &fs_info->caching_block_groups, list) { |
| 6620 | cache = caching_ctl->block_group; |
| 6621 | if (block_group_cache_done(cache)) { |
| 6622 | cache->last_byte_to_unpin = (u64)-1; |
| 6623 | list_del_init(&caching_ctl->list); |
| 6624 | put_caching_control(caching_ctl); |
| 6625 | } else { |
| 6626 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 6627 | } |
| 6628 | } |
| 6629 | |
| 6630 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6631 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 6632 | else |
| 6633 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 6634 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6635 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6636 | |
| 6637 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6638 | } |
| 6639 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6640 | /* |
| 6641 | * Returns the free cluster for the given space info and sets empty_cluster to |
| 6642 | * what it should be based on the mount options. |
| 6643 | */ |
| 6644 | static struct btrfs_free_cluster * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6645 | fetch_cluster_info(struct btrfs_fs_info *fs_info, |
| 6646 | struct btrfs_space_info *space_info, u64 *empty_cluster) |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6647 | { |
| 6648 | struct btrfs_free_cluster *ret = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6649 | bool ssd = btrfs_test_opt(fs_info, SSD); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6650 | |
| 6651 | *empty_cluster = 0; |
| 6652 | if (btrfs_mixed_space_info(space_info)) |
| 6653 | return ret; |
| 6654 | |
| 6655 | if (ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6656 | *empty_cluster = SZ_2M; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6657 | if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6658 | ret = &fs_info->meta_alloc_cluster; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6659 | if (!ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6660 | *empty_cluster = SZ_64K; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6661 | } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6662 | ret = &fs_info->data_alloc_cluster; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6663 | } |
| 6664 | |
| 6665 | return ret; |
| 6666 | } |
| 6667 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6668 | static int unpin_extent_range(struct btrfs_fs_info *fs_info, |
| 6669 | u64 start, u64 end, |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6670 | const bool return_free_space) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6671 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6672 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6673 | struct btrfs_space_info *space_info; |
| 6674 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6675 | struct btrfs_free_cluster *cluster = NULL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6676 | u64 len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6677 | u64 total_unpinned = 0; |
| 6678 | u64 empty_cluster = 0; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6679 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6680 | |
| 6681 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6682 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6683 | if (!cache || |
| 6684 | start >= cache->key.objectid + cache->key.offset) { |
| 6685 | if (cache) |
| 6686 | btrfs_put_block_group(cache); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6687 | total_unpinned = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6688 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6689 | BUG_ON(!cache); /* Logic error */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6690 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6691 | cluster = fetch_cluster_info(fs_info, |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6692 | cache->space_info, |
| 6693 | &empty_cluster); |
| 6694 | empty_cluster <<= 1; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6695 | } |
| 6696 | |
| 6697 | len = cache->key.objectid + cache->key.offset - start; |
| 6698 | len = min(len, end + 1 - start); |
| 6699 | |
| 6700 | if (start < cache->last_byte_to_unpin) { |
| 6701 | len = min(len, cache->last_byte_to_unpin - start); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6702 | if (return_free_space) |
| 6703 | btrfs_add_free_space(cache, start, len); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6704 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6705 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6706 | start += len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6707 | total_unpinned += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6708 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6709 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6710 | /* |
| 6711 | * If this space cluster has been marked as fragmented and we've |
| 6712 | * unpinned enough in this block group to potentially allow a |
| 6713 | * cluster to be created inside of it go ahead and clear the |
| 6714 | * fragmented check. |
| 6715 | */ |
| 6716 | if (cluster && cluster->fragmented && |
| 6717 | total_unpinned > empty_cluster) { |
| 6718 | spin_lock(&cluster->lock); |
| 6719 | cluster->fragmented = 0; |
| 6720 | spin_unlock(&cluster->lock); |
| 6721 | } |
| 6722 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6723 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6724 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6725 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6726 | space_info->bytes_pinned -= len; |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6727 | |
| 6728 | trace_btrfs_space_reservation(fs_info, "pinned", |
| 6729 | space_info->flags, len, 0); |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 6730 | space_info->max_extent_size = 0; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 6731 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6732 | if (cache->ro) { |
| 6733 | space_info->bytes_readonly += len; |
| 6734 | readonly = true; |
| 6735 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6736 | spin_unlock(&cache->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6737 | if (!readonly && return_free_space && |
| 6738 | global_rsv->space_info == space_info) { |
| 6739 | u64 to_add = len; |
| 6740 | WARN_ON(!return_free_space); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6741 | spin_lock(&global_rsv->lock); |
| 6742 | if (!global_rsv->full) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6743 | to_add = min(len, global_rsv->size - |
| 6744 | global_rsv->reserved); |
| 6745 | global_rsv->reserved += to_add; |
| 6746 | space_info->bytes_may_use += to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6747 | if (global_rsv->reserved >= global_rsv->size) |
| 6748 | global_rsv->full = 1; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6749 | trace_btrfs_space_reservation(fs_info, |
| 6750 | "space_info", |
| 6751 | space_info->flags, |
| 6752 | to_add, 1); |
| 6753 | len -= to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6754 | } |
| 6755 | spin_unlock(&global_rsv->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6756 | /* Add to any tickets we may have */ |
| 6757 | if (len) |
| 6758 | space_info_add_new_bytes(fs_info, space_info, |
| 6759 | len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6760 | } |
| 6761 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6762 | } |
| 6763 | |
| 6764 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6765 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 6766 | return 0; |
| 6767 | } |
| 6768 | |
| 6769 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6770 | struct btrfs_fs_info *fs_info) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6771 | { |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6772 | struct btrfs_block_group_cache *block_group, *tmp; |
| 6773 | struct list_head *deleted_bgs; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6774 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6775 | u64 start; |
| 6776 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6777 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6778 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6779 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6780 | unpin = &fs_info->freed_extents[1]; |
| 6781 | else |
| 6782 | unpin = &fs_info->freed_extents[0]; |
| 6783 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6784 | while (!trans->aborted) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6785 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6786 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 6787 | EXTENT_DIRTY, NULL); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6788 | if (ret) { |
| 6789 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6790 | break; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6791 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6792 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6793 | if (btrfs_test_opt(fs_info, DISCARD)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6794 | ret = btrfs_discard_extent(fs_info, start, |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6795 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6796 | |
David Sterba | af6f8f6 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 6797 | clear_extent_dirty(unpin, start, end); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6798 | unpin_extent_range(fs_info, start, end, true); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6799 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6800 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6801 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6802 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6803 | /* |
| 6804 | * Transaction is finished. We don't need the lock anymore. We |
| 6805 | * do need to clean up the block groups in case of a transaction |
| 6806 | * abort. |
| 6807 | */ |
| 6808 | deleted_bgs = &trans->transaction->deleted_bgs; |
| 6809 | list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) { |
| 6810 | u64 trimmed = 0; |
| 6811 | |
| 6812 | ret = -EROFS; |
| 6813 | if (!trans->aborted) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6814 | ret = btrfs_discard_extent(fs_info, |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6815 | block_group->key.objectid, |
| 6816 | block_group->key.offset, |
| 6817 | &trimmed); |
| 6818 | |
| 6819 | list_del_init(&block_group->bg_list); |
| 6820 | btrfs_put_block_group_trimming(block_group); |
| 6821 | btrfs_put_block_group(block_group); |
| 6822 | |
| 6823 | if (ret) { |
| 6824 | const char *errstr = btrfs_decode_error(ret); |
| 6825 | btrfs_warn(fs_info, |
| 6826 | "Discard failed while removing blockgroup: errno=%d %s\n", |
| 6827 | ret, errstr); |
| 6828 | } |
| 6829 | } |
| 6830 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6831 | return 0; |
| 6832 | } |
| 6833 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6834 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6835 | struct btrfs_fs_info *info, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6836 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6837 | u64 root_objectid, u64 owner_objectid, |
| 6838 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6839 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6840 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 6841 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6842 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 6843 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6844 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6845 | struct btrfs_extent_item *ei; |
| 6846 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6847 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6848 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6849 | int extent_slot = 0; |
| 6850 | int found_extent = 0; |
| 6851 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6852 | u32 item_size; |
| 6853 | u64 refs; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6854 | u64 bytenr = node->bytenr; |
| 6855 | u64 num_bytes = node->num_bytes; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6856 | int last_ref = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 6857 | bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 6858 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6859 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6860 | if (!path) |
| 6861 | return -ENOMEM; |
| 6862 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 6863 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6864 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6865 | |
| 6866 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 6867 | BUG_ON(!is_data && refs_to_drop != 1); |
| 6868 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6869 | if (is_data) |
| 6870 | skinny_metadata = 0; |
| 6871 | |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6872 | ret = lookup_extent_backref(trans, info, path, &iref, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6873 | bytenr, num_bytes, parent, |
| 6874 | root_objectid, owner_objectid, |
| 6875 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6876 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6877 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6878 | while (extent_slot >= 0) { |
| 6879 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6880 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6881 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6882 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6883 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6884 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6885 | found_extent = 1; |
| 6886 | break; |
| 6887 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6888 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 6889 | key.offset == owner_objectid) { |
| 6890 | found_extent = 1; |
| 6891 | break; |
| 6892 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6893 | if (path->slots[0] - extent_slot > 5) |
| 6894 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6895 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6896 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6897 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6898 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 6899 | if (found_extent && item_size < sizeof(*ei)) |
| 6900 | found_extent = 0; |
| 6901 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6902 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6903 | BUG_ON(iref); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6904 | ret = remove_extent_backref(trans, info, path, NULL, |
| 6905 | refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6906 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6907 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6908 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6909 | goto out; |
| 6910 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6911 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6912 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6913 | |
| 6914 | key.objectid = bytenr; |
| 6915 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6916 | key.offset = num_bytes; |
| 6917 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6918 | if (!is_data && skinny_metadata) { |
| 6919 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 6920 | key.offset = owner_objectid; |
| 6921 | } |
| 6922 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6923 | ret = btrfs_search_slot(trans, extent_root, |
| 6924 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6925 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 6926 | /* |
| 6927 | * Couldn't find our skinny metadata item, |
| 6928 | * see if we have ye olde extent item. |
| 6929 | */ |
| 6930 | path->slots[0]--; |
| 6931 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 6932 | path->slots[0]); |
| 6933 | if (key.objectid == bytenr && |
| 6934 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6935 | key.offset == num_bytes) |
| 6936 | ret = 0; |
| 6937 | } |
| 6938 | |
| 6939 | if (ret > 0 && skinny_metadata) { |
| 6940 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 6941 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6942 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6943 | key.offset = num_bytes; |
| 6944 | btrfs_release_path(path); |
| 6945 | ret = btrfs_search_slot(trans, extent_root, |
| 6946 | &key, path, -1, 1); |
| 6947 | } |
| 6948 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6949 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6950 | btrfs_err(info, |
| 6951 | "umm, got %d back from search, was looking for %llu", |
| 6952 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 6953 | if (ret > 0) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6954 | btrfs_print_leaf(info, path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6955 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6956 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6957 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6958 | goto out; |
| 6959 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6960 | extent_slot = path->slots[0]; |
| 6961 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6962 | } else if (WARN_ON(ret == -ENOENT)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 6963 | btrfs_print_leaf(info, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6964 | btrfs_err(info, |
| 6965 | "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] | 6966 | bytenr, parent, root_objectid, owner_objectid, |
| 6967 | owner_offset); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6968 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 6969 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6970 | } else { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6971 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6972 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6973 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6974 | |
| 6975 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6976 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6977 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6978 | if (item_size < sizeof(*ei)) { |
| 6979 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 6980 | ret = convert_extent_item_v0(trans, info, path, owner_objectid, |
| 6981 | 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6982 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6983 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6984 | goto out; |
| 6985 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6986 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6987 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6988 | path->leave_spinning = 1; |
| 6989 | |
| 6990 | key.objectid = bytenr; |
| 6991 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6992 | key.offset = num_bytes; |
| 6993 | |
| 6994 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 6995 | -1, 1); |
| 6996 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6997 | btrfs_err(info, |
| 6998 | "umm, got %d back from search, was looking for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6999 | ret, bytenr); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7000 | btrfs_print_leaf(info, path->nodes[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7001 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7002 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7003 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7004 | goto out; |
| 7005 | } |
| 7006 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7007 | extent_slot = path->slots[0]; |
| 7008 | leaf = path->nodes[0]; |
| 7009 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 7010 | } |
| 7011 | #endif |
| 7012 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7013 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 7014 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7015 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 7016 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7017 | struct btrfs_tree_block_info *bi; |
| 7018 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 7019 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 7020 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7021 | } |
| 7022 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7023 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7024 | if (refs < refs_to_drop) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7025 | btrfs_err(info, |
| 7026 | "trying to drop %d refs but we only have %Lu for bytenr %Lu", |
| 7027 | refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7028 | ret = -EINVAL; |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7029 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7030 | goto out; |
| 7031 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7032 | refs -= refs_to_drop; |
| 7033 | |
| 7034 | if (refs > 0) { |
| 7035 | if (extent_op) |
| 7036 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 7037 | /* |
| 7038 | * In the case of inline back ref, reference count will |
| 7039 | * be updated by remove_extent_backref |
| 7040 | */ |
| 7041 | if (iref) { |
| 7042 | BUG_ON(!found_extent); |
| 7043 | } else { |
| 7044 | btrfs_set_extent_refs(leaf, ei, refs); |
| 7045 | btrfs_mark_buffer_dirty(leaf); |
| 7046 | } |
| 7047 | if (found_extent) { |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7048 | ret = remove_extent_backref(trans, info, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7049 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7050 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7051 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7052 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7053 | goto out; |
| 7054 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7055 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7056 | add_pinned_bytes(info, -num_bytes, owner_objectid, |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7057 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7058 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7059 | if (found_extent) { |
| 7060 | BUG_ON(is_data && refs_to_drop != |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 7061 | extent_data_ref_count(path, iref)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7062 | if (iref) { |
| 7063 | BUG_ON(path->slots[0] != extent_slot); |
| 7064 | } else { |
| 7065 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 7066 | path->slots[0] = extent_slot; |
| 7067 | num_to_del = 2; |
| 7068 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 7069 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7070 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7071 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7072 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 7073 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7074 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7075 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7076 | goto out; |
| 7077 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 7078 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 7079 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7080 | if (is_data) { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7081 | ret = btrfs_del_csums(trans, info, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7082 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7083 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7084 | goto out; |
| 7085 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 7086 | } |
| 7087 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7088 | ret = add_to_free_space_tree(trans, info, bytenr, num_bytes); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7089 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7090 | btrfs_abort_transaction(trans, ret); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7091 | goto out; |
| 7092 | } |
| 7093 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7094 | ret = update_block_group(trans, info, bytenr, num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7095 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7096 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7097 | goto out; |
| 7098 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7099 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7100 | btrfs_release_path(path); |
| 7101 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7102 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7103 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7104 | return ret; |
| 7105 | } |
| 7106 | |
| 7107 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7108 | * 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] | 7109 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 7110 | * a given extent, and if there are no other delayed refs to be processed, it |
| 7111 | * removes it from the tree. |
| 7112 | */ |
| 7113 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7114 | u64 bytenr) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7115 | { |
| 7116 | struct btrfs_delayed_ref_head *head; |
| 7117 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7118 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7119 | |
| 7120 | delayed_refs = &trans->transaction->delayed_refs; |
| 7121 | spin_lock(&delayed_refs->lock); |
Liu Bo | f72ad18e | 2017-01-30 12:24:37 -0800 | [diff] [blame] | 7122 | head = btrfs_find_delayed_ref_head(delayed_refs, bytenr); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7123 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7124 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7125 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7126 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 7127 | if (!list_empty(&head->ref_list)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7128 | goto out; |
| 7129 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7130 | if (head->extent_op) { |
| 7131 | if (!head->must_insert_reserved) |
| 7132 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7133 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7134 | head->extent_op = NULL; |
| 7135 | } |
| 7136 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7137 | /* |
| 7138 | * waiting for the lock here would deadlock. If someone else has it |
| 7139 | * locked they are already in the process of dropping it anyway |
| 7140 | */ |
| 7141 | if (!mutex_trylock(&head->mutex)) |
| 7142 | goto out; |
| 7143 | |
| 7144 | /* |
| 7145 | * at this point we have a head with no other entries. Go |
| 7146 | * ahead and process it. |
| 7147 | */ |
| 7148 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 7149 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7150 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7151 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7152 | |
| 7153 | /* |
| 7154 | * we don't take a ref on the node because we're removing it from the |
| 7155 | * tree, so we just steal the ref the tree was holding. |
| 7156 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7157 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7158 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7159 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7160 | head->processing = 0; |
| 7161 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7162 | spin_unlock(&delayed_refs->lock); |
| 7163 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7164 | BUG_ON(head->extent_op); |
| 7165 | if (head->must_insert_reserved) |
| 7166 | ret = 1; |
| 7167 | |
| 7168 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7169 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7170 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7171 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7172 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7173 | |
| 7174 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7175 | spin_unlock(&delayed_refs->lock); |
| 7176 | return 0; |
| 7177 | } |
| 7178 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7179 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 7180 | struct btrfs_root *root, |
| 7181 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7182 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7183 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7184 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7185 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7186 | int ret; |
| 7187 | |
| 7188 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 7189 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, buf->start, |
| 7190 | buf->len, parent, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7191 | root->root_key.objectid, |
| 7192 | btrfs_header_level(buf), |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 7193 | BTRFS_DROP_DELAYED_REF, NULL, |
| 7194 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7195 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7196 | } |
| 7197 | |
Omar Sandoval | 0a16c7d | 2017-06-06 16:45:29 -0700 | [diff] [blame] | 7198 | if (last_ref && btrfs_header_generation(buf) == trans->transid) { |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7199 | struct btrfs_block_group_cache *cache; |
| 7200 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7201 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7202 | ret = check_ref_cleanup(trans, buf->start); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7203 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7204 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7205 | } |
| 7206 | |
Omar Sandoval | 4da8b76 | 2017-06-06 16:45:28 -0700 | [diff] [blame] | 7207 | pin = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7208 | cache = btrfs_lookup_block_group(fs_info, buf->start); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7209 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7210 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7211 | pin_down_extent(fs_info, cache, buf->start, |
| 7212 | buf->len, 1); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7213 | btrfs_put_block_group(cache); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7214 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7215 | } |
| 7216 | |
| 7217 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 7218 | |
| 7219 | btrfs_add_free_space(cache, buf->start, buf->len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 7220 | btrfs_free_reserved_bytes(cache, buf->len, 0); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7221 | btrfs_put_block_group(cache); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7222 | trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7223 | } |
| 7224 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7225 | if (pin) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7226 | add_pinned_bytes(fs_info, buf->len, btrfs_header_level(buf), |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7227 | root->root_key.objectid); |
| 7228 | |
Omar Sandoval | 0a16c7d | 2017-06-06 16:45:29 -0700 | [diff] [blame] | 7229 | if (last_ref) { |
| 7230 | /* |
| 7231 | * Deleting the buffer, clear the corrupt flag since it doesn't |
| 7232 | * matter anymore. |
| 7233 | */ |
| 7234 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
| 7235 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7236 | } |
| 7237 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7238 | /* Can return -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7239 | int btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 7240 | struct btrfs_fs_info *fs_info, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7241 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7242 | u64 owner, u64 offset) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7243 | { |
| 7244 | int ret; |
| 7245 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 7246 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7247 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7248 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7249 | add_pinned_bytes(fs_info, num_bytes, owner, root_objectid); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7250 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7251 | /* |
| 7252 | * tree log blocks never actually go into the extent allocation |
| 7253 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7254 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7255 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 7256 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7257 | /* unlocks the pinned mutex */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7258 | btrfs_pin_extent(fs_info, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7259 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7260 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7261 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 7262 | num_bytes, parent, |
| 7263 | root_objectid, (int)owner, |
| 7264 | BTRFS_DROP_DELAYED_REF, NULL, |
| 7265 | NULL, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7266 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7267 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 7268 | num_bytes, parent, |
| 7269 | root_objectid, owner, offset, |
| 7270 | 0, BTRFS_DROP_DELAYED_REF, |
| 7271 | NULL, NULL); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7272 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7273 | return ret; |
| 7274 | } |
| 7275 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7276 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7277 | * when we wait for progress in the block group caching, its because |
| 7278 | * our allocation attempt failed at least once. So, we must sleep |
| 7279 | * and let some progress happen before we try again. |
| 7280 | * |
| 7281 | * This function will sleep at least once waiting for new free space to |
| 7282 | * show up, and then it will check the block group free space numbers |
| 7283 | * for our min num_bytes. Another option is to have it go ahead |
| 7284 | * and look in the rbtree for a free extent of a given size, but this |
| 7285 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7286 | * |
| 7287 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 7288 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7289 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7290 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7291 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 7292 | u64 num_bytes) |
| 7293 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7294 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7295 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7296 | caching_ctl = get_caching_control(cache); |
| 7297 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7298 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7299 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7300 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 7301 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7302 | |
| 7303 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7304 | } |
| 7305 | |
| 7306 | static noinline int |
| 7307 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 7308 | { |
| 7309 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7310 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7311 | |
| 7312 | caching_ctl = get_caching_control(cache); |
| 7313 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7314 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7315 | |
| 7316 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7317 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 7318 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7319 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7320 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7321 | } |
| 7322 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7323 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7324 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7325 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7326 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7327 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7328 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7329 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7330 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7331 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7332 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7333 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7334 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7335 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7336 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7337 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7338 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7339 | } |
| 7340 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7341 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7342 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7343 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7344 | } |
| 7345 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7346 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 7347 | [BTRFS_RAID_RAID10] = "raid10", |
| 7348 | [BTRFS_RAID_RAID1] = "raid1", |
| 7349 | [BTRFS_RAID_DUP] = "dup", |
| 7350 | [BTRFS_RAID_RAID0] = "raid0", |
| 7351 | [BTRFS_RAID_SINGLE] = "single", |
| 7352 | [BTRFS_RAID_RAID5] = "raid5", |
| 7353 | [BTRFS_RAID_RAID6] = "raid6", |
| 7354 | }; |
| 7355 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 7356 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7357 | { |
| 7358 | if (type >= BTRFS_NR_RAID_TYPES) |
| 7359 | return NULL; |
| 7360 | |
| 7361 | return btrfs_raid_type_names[type]; |
| 7362 | } |
| 7363 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7364 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7365 | LOOP_CACHING_NOWAIT = 0, |
| 7366 | LOOP_CACHING_WAIT = 1, |
| 7367 | LOOP_ALLOC_CHUNK = 2, |
| 7368 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7369 | }; |
| 7370 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7371 | static inline void |
| 7372 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 7373 | int delalloc) |
| 7374 | { |
| 7375 | if (delalloc) |
| 7376 | down_read(&cache->data_rwsem); |
| 7377 | } |
| 7378 | |
| 7379 | static inline void |
| 7380 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 7381 | int delalloc) |
| 7382 | { |
| 7383 | btrfs_get_block_group(cache); |
| 7384 | if (delalloc) |
| 7385 | down_read(&cache->data_rwsem); |
| 7386 | } |
| 7387 | |
| 7388 | static struct btrfs_block_group_cache * |
| 7389 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 7390 | struct btrfs_free_cluster *cluster, |
| 7391 | int delalloc) |
| 7392 | { |
Sudip Mukherjee | 89771cc | 2016-02-16 13:32:47 +0530 | [diff] [blame] | 7393 | struct btrfs_block_group_cache *used_bg = NULL; |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7394 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7395 | spin_lock(&cluster->refill_lock); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7396 | while (1) { |
| 7397 | used_bg = cluster->block_group; |
| 7398 | if (!used_bg) |
| 7399 | return NULL; |
| 7400 | |
| 7401 | if (used_bg == block_group) |
| 7402 | return used_bg; |
| 7403 | |
| 7404 | btrfs_get_block_group(used_bg); |
| 7405 | |
| 7406 | if (!delalloc) |
| 7407 | return used_bg; |
| 7408 | |
| 7409 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 7410 | return used_bg; |
| 7411 | |
| 7412 | spin_unlock(&cluster->refill_lock); |
| 7413 | |
Liu Bo | e321f8a | 2016-11-30 16:11:04 -0800 | [diff] [blame] | 7414 | /* We should only have one-level nested. */ |
| 7415 | down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7416 | |
| 7417 | spin_lock(&cluster->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7418 | if (used_bg == cluster->block_group) |
| 7419 | return used_bg; |
| 7420 | |
| 7421 | up_read(&used_bg->data_rwsem); |
| 7422 | btrfs_put_block_group(used_bg); |
| 7423 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7424 | } |
| 7425 | |
| 7426 | static inline void |
| 7427 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 7428 | int delalloc) |
| 7429 | { |
| 7430 | if (delalloc) |
| 7431 | up_read(&cache->data_rwsem); |
| 7432 | btrfs_put_block_group(cache); |
| 7433 | } |
| 7434 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7435 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7436 | * walks the btree of allocated extents and find a hole of a given size. |
| 7437 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7438 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 7439 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7440 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7441 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7442 | * |
| 7443 | * If there is no suitable free space, we will record the max size of |
| 7444 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7445 | */ |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7446 | static noinline int find_free_extent(struct btrfs_fs_info *fs_info, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7447 | u64 ram_bytes, u64 num_bytes, u64 empty_size, |
| 7448 | u64 hint_byte, struct btrfs_key *ins, |
| 7449 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7450 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7451 | int ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7452 | struct btrfs_root *root = fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7453 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7454 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 7455 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7456 | u64 max_extent_size = 0; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7457 | u64 empty_cluster = 0; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7458 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7459 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7460 | int index = __get_raid_index(flags); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7461 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7462 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7463 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7464 | bool have_caching_bg = false; |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7465 | bool orig_have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7466 | bool full_search = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7467 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7468 | WARN_ON(num_bytes < fs_info->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 7469 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7470 | ins->objectid = 0; |
| 7471 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 7472 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7473 | trace_find_free_extent(fs_info, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7474 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7475 | space_info = __find_space_info(fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7476 | if (!space_info) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7477 | btrfs_err(fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7478 | return -ENOSPC; |
| 7479 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7480 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7481 | /* |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7482 | * If our free space is heavily fragmented we may not be able to make |
| 7483 | * big contiguous allocations, so instead of doing the expensive search |
| 7484 | * for free space, simply return ENOSPC with our max_extent_size so we |
| 7485 | * can go ahead and search for a more manageable chunk. |
| 7486 | * |
| 7487 | * If our max_extent_size is large enough for our allocation simply |
| 7488 | * disable clustering since we will likely not be able to find enough |
| 7489 | * space to create a cluster and induce latency trying. |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7490 | */ |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7491 | if (unlikely(space_info->max_extent_size)) { |
| 7492 | spin_lock(&space_info->lock); |
| 7493 | if (space_info->max_extent_size && |
| 7494 | num_bytes > space_info->max_extent_size) { |
| 7495 | ins->offset = space_info->max_extent_size; |
| 7496 | spin_unlock(&space_info->lock); |
| 7497 | return -ENOSPC; |
| 7498 | } else if (space_info->max_extent_size) { |
| 7499 | use_cluster = false; |
| 7500 | } |
| 7501 | spin_unlock(&space_info->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7502 | } |
| 7503 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7504 | last_ptr = fetch_cluster_info(fs_info, space_info, &empty_cluster); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7505 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7506 | spin_lock(&last_ptr->lock); |
| 7507 | if (last_ptr->block_group) |
| 7508 | hint_byte = last_ptr->window_start; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7509 | if (last_ptr->fragmented) { |
| 7510 | /* |
| 7511 | * We still set window_start so we can keep track of the |
| 7512 | * last place we found an allocation to try and save |
| 7513 | * some time. |
| 7514 | */ |
| 7515 | hint_byte = last_ptr->window_start; |
| 7516 | use_cluster = false; |
| 7517 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7518 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7519 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7520 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7521 | search_start = max(search_start, first_logical_byte(fs_info, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7522 | search_start = max(search_start, hint_byte); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7523 | if (search_start == hint_byte) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7524 | block_group = btrfs_lookup_block_group(fs_info, search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7525 | /* |
| 7526 | * we don't want to use the block group if it doesn't match our |
| 7527 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7528 | * |
| 7529 | * However if we are re-searching with an ideal block group |
| 7530 | * 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] | 7531 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7532 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7533 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7534 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7535 | if (list_empty(&block_group->list) || |
| 7536 | block_group->ro) { |
| 7537 | /* |
| 7538 | * someone is removing this block group, |
| 7539 | * we can't jump into the have_block_group |
| 7540 | * target because our list pointers are not |
| 7541 | * valid |
| 7542 | */ |
| 7543 | btrfs_put_block_group(block_group); |
| 7544 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7545 | } else { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7546 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7547 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7548 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7549 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7550 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7551 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7552 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7553 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7554 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7555 | have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7556 | if (index == 0 || index == __get_raid_index(flags)) |
| 7557 | full_search = true; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7558 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7559 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 7560 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7561 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7562 | int cached; |
Chris Mason | 8a1413a | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 7563 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7564 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7565 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7566 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7567 | /* |
| 7568 | * this can happen if we end up cycling through all the |
| 7569 | * raid types, but we want to make sure we only allocate |
| 7570 | * for the proper type. |
| 7571 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7572 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7573 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 7574 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7575 | BTRFS_BLOCK_GROUP_RAID5 | |
| 7576 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7577 | BTRFS_BLOCK_GROUP_RAID10; |
| 7578 | |
| 7579 | /* |
| 7580 | * if they asked for extra copies and this block group |
| 7581 | * doesn't provide them, bail. This does allow us to |
| 7582 | * fill raid0 from raid1. |
| 7583 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7584 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7585 | goto loop; |
| 7586 | } |
| 7587 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7588 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 7589 | cached = block_group_cache_done(block_group); |
| 7590 | if (unlikely(!cached)) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7591 | have_caching_bg = true; |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 7592 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 7593 | BUG_ON(ret < 0); |
| 7594 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7595 | } |
| 7596 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7597 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 7598 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7599 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7600 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7601 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7602 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7603 | * Ok we want to try and use the cluster allocator, so |
| 7604 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7605 | */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7606 | if (last_ptr && use_cluster) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7607 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7608 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7609 | /* |
| 7610 | * the refill lock keeps out other |
| 7611 | * people trying to start a new cluster |
| 7612 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7613 | used_block_group = btrfs_lock_cluster(block_group, |
| 7614 | last_ptr, |
| 7615 | delalloc); |
| 7616 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7617 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7618 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7619 | if (used_block_group != block_group && |
| 7620 | (used_block_group->ro || |
| 7621 | !block_group_bits(used_block_group, flags))) |
| 7622 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7623 | |
| 7624 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7625 | last_ptr, |
| 7626 | num_bytes, |
| 7627 | used_block_group->key.objectid, |
| 7628 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7629 | if (offset) { |
| 7630 | /* we have a block, we're done */ |
| 7631 | spin_unlock(&last_ptr->refill_lock); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7632 | trace_btrfs_reserve_extent_cluster(fs_info, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 7633 | used_block_group, |
| 7634 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7635 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7636 | btrfs_release_block_group(block_group, |
| 7637 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7638 | block_group = used_block_group; |
| 7639 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7640 | goto checks; |
| 7641 | } |
| 7642 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7643 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7644 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7645 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 7646 | * set up a new clusters, so lets just skip it |
| 7647 | * and let the allocator find whatever block |
| 7648 | * it can find. If we reach this point, we |
| 7649 | * will have tried the cluster allocator |
| 7650 | * plenty of times and not have found |
| 7651 | * anything, so we are likely way too |
| 7652 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7653 | * anything. |
| 7654 | * |
| 7655 | * However, if the cluster is taken from the |
| 7656 | * current block group, release the cluster |
| 7657 | * first, so that we stand a better chance of |
| 7658 | * succeeding in the unclustered |
| 7659 | * allocation. */ |
| 7660 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7661 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7662 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7663 | btrfs_release_block_group(used_block_group, |
| 7664 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7665 | goto unclustered_alloc; |
| 7666 | } |
| 7667 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7668 | /* |
| 7669 | * this cluster didn't work out, free it and |
| 7670 | * start over |
| 7671 | */ |
| 7672 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 7673 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7674 | if (used_block_group != block_group) |
| 7675 | btrfs_release_block_group(used_block_group, |
| 7676 | delalloc); |
| 7677 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7678 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 7679 | spin_unlock(&last_ptr->refill_lock); |
| 7680 | goto unclustered_alloc; |
| 7681 | } |
| 7682 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7683 | aligned_cluster = max_t(unsigned long, |
| 7684 | empty_cluster + empty_size, |
| 7685 | block_group->full_stripe_len); |
| 7686 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7687 | /* allocate a cluster in this block group */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7688 | ret = btrfs_find_space_cluster(fs_info, block_group, |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7689 | last_ptr, search_start, |
| 7690 | num_bytes, |
| 7691 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7692 | if (ret == 0) { |
| 7693 | /* |
| 7694 | * now pull our allocation out of this |
| 7695 | * cluster |
| 7696 | */ |
| 7697 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7698 | last_ptr, |
| 7699 | num_bytes, |
| 7700 | search_start, |
| 7701 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7702 | if (offset) { |
| 7703 | /* we found one, proceed */ |
| 7704 | spin_unlock(&last_ptr->refill_lock); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7705 | trace_btrfs_reserve_extent_cluster(fs_info, |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7706 | block_group, search_start, |
| 7707 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7708 | goto checks; |
| 7709 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7710 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 7711 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7712 | spin_unlock(&last_ptr->refill_lock); |
| 7713 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7714 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7715 | wait_block_group_cache_progress(block_group, |
| 7716 | num_bytes + empty_cluster + empty_size); |
| 7717 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7718 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7719 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7720 | /* |
| 7721 | * at this point we either didn't find a cluster |
| 7722 | * or we weren't able to allocate a block from our |
| 7723 | * cluster. Free the cluster we've been trying |
| 7724 | * to use, and go to the next block group |
| 7725 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7726 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7727 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7728 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7729 | } |
| 7730 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7731 | unclustered_alloc: |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7732 | /* |
| 7733 | * We are doing an unclustered alloc, set the fragmented flag so |
| 7734 | * we don't bother trying to setup a cluster again until we get |
| 7735 | * more space. |
| 7736 | */ |
| 7737 | if (unlikely(last_ptr)) { |
| 7738 | spin_lock(&last_ptr->lock); |
| 7739 | last_ptr->fragmented = 1; |
| 7740 | spin_unlock(&last_ptr->lock); |
| 7741 | } |
Liu Bo | 0c9b36e | 2017-02-13 15:42:30 -0800 | [diff] [blame] | 7742 | if (cached) { |
| 7743 | struct btrfs_free_space_ctl *ctl = |
| 7744 | block_group->free_space_ctl; |
| 7745 | |
| 7746 | spin_lock(&ctl->tree_lock); |
| 7747 | if (ctl->free_space < |
| 7748 | num_bytes + empty_cluster + empty_size) { |
| 7749 | if (ctl->free_space > max_extent_size) |
| 7750 | max_extent_size = ctl->free_space; |
| 7751 | spin_unlock(&ctl->tree_lock); |
| 7752 | goto loop; |
| 7753 | } |
| 7754 | spin_unlock(&ctl->tree_lock); |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7755 | } |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7756 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7757 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7758 | num_bytes, empty_size, |
| 7759 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7760 | /* |
| 7761 | * If we didn't find a chunk, and we haven't failed on this |
| 7762 | * block group before, and this block group is in the middle of |
| 7763 | * caching and we are ok with waiting, then go ahead and wait |
| 7764 | * for progress to be made, and set failed_alloc to true. |
| 7765 | * |
| 7766 | * If failed_alloc is true then we've already waited on this |
| 7767 | * block group once and should move on to the next block group. |
| 7768 | */ |
| 7769 | if (!offset && !failed_alloc && !cached && |
| 7770 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7771 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7772 | num_bytes + empty_size); |
| 7773 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7774 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7775 | } else if (!offset) { |
| 7776 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7777 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7778 | checks: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7779 | search_start = ALIGN(offset, fs_info->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 7780 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7781 | /* move on to the next group */ |
| 7782 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7783 | block_group->key.objectid + block_group->key.offset) { |
| 7784 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7785 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7786 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7787 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7788 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7789 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7790 | search_start - offset); |
| 7791 | BUG_ON(offset > search_start); |
| 7792 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7793 | ret = btrfs_add_reserved_bytes(block_group, ram_bytes, |
| 7794 | num_bytes, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7795 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7796 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7797 | goto loop; |
| 7798 | } |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7799 | btrfs_inc_block_group_reservations(block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7800 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7801 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7802 | ins->objectid = search_start; |
| 7803 | ins->offset = num_bytes; |
| 7804 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 7805 | trace_btrfs_reserve_extent(fs_info, block_group, |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7806 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7807 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7808 | break; |
| 7809 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7810 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7811 | failed_alloc = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7812 | BUG_ON(index != get_block_group_index(block_group)); |
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 | } |
| 7815 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 7816 | |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7817 | if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg |
| 7818 | && !orig_have_caching_bg) |
| 7819 | orig_have_caching_bg = true; |
| 7820 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7821 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 7822 | goto search; |
| 7823 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7824 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 7825 | goto search; |
| 7826 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7827 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7828 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 7829 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7830 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 7831 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 7832 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 7833 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7834 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7835 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7836 | index = 0; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7837 | if (loop == LOOP_CACHING_NOWAIT) { |
| 7838 | /* |
| 7839 | * We want to skip the LOOP_CACHING_WAIT step if we |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 7840 | * don't have any uncached bgs and we've already done a |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7841 | * full search through. |
| 7842 | */ |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7843 | if (orig_have_caching_bg || !full_search) |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7844 | loop = LOOP_CACHING_WAIT; |
| 7845 | else |
| 7846 | loop = LOOP_ALLOC_CHUNK; |
| 7847 | } else { |
| 7848 | loop++; |
| 7849 | } |
| 7850 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7851 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7852 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7853 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7854 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7855 | trans = current->journal_info; |
| 7856 | if (trans) |
| 7857 | exist = 1; |
| 7858 | else |
| 7859 | trans = btrfs_join_transaction(root); |
| 7860 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7861 | if (IS_ERR(trans)) { |
| 7862 | ret = PTR_ERR(trans); |
| 7863 | goto out; |
| 7864 | } |
| 7865 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 7866 | ret = do_chunk_alloc(trans, fs_info, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7867 | CHUNK_ALLOC_FORCE); |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7868 | |
| 7869 | /* |
| 7870 | * If we can't allocate a new chunk we've already looped |
| 7871 | * through at least once, move on to the NO_EMPTY_SIZE |
| 7872 | * case. |
| 7873 | */ |
| 7874 | if (ret == -ENOSPC) |
| 7875 | loop = LOOP_NO_EMPTY_SIZE; |
| 7876 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7877 | /* |
| 7878 | * Do not bail out on ENOSPC since we |
| 7879 | * can do more things. |
| 7880 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7881 | if (ret < 0 && ret != -ENOSPC) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7882 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7883 | else |
| 7884 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7885 | if (!exist) |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 7886 | btrfs_end_transaction(trans); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7887 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7888 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7889 | } |
| 7890 | |
| 7891 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7892 | /* |
| 7893 | * Don't loop again if we already have no empty_size and |
| 7894 | * no empty_cluster. |
| 7895 | */ |
| 7896 | if (empty_size == 0 && |
| 7897 | empty_cluster == 0) { |
| 7898 | ret = -ENOSPC; |
| 7899 | goto out; |
| 7900 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7901 | empty_size = 0; |
| 7902 | empty_cluster = 0; |
| 7903 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7904 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7905 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7906 | } else if (!ins->objectid) { |
| 7907 | ret = -ENOSPC; |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7908 | } else if (ins->objectid) { |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7909 | if (!use_cluster && last_ptr) { |
| 7910 | spin_lock(&last_ptr->lock); |
| 7911 | last_ptr->window_start = ins->objectid; |
| 7912 | spin_unlock(&last_ptr->lock); |
| 7913 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7914 | ret = 0; |
| 7915 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7916 | out: |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7917 | if (ret == -ENOSPC) { |
| 7918 | spin_lock(&space_info->lock); |
| 7919 | space_info->max_extent_size = max_extent_size; |
| 7920 | spin_unlock(&space_info->lock); |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7921 | ins->offset = max_extent_size; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7922 | } |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 7923 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7924 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7925 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7926 | static void dump_space_info(struct btrfs_fs_info *fs_info, |
| 7927 | struct btrfs_space_info *info, u64 bytes, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7928 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7929 | { |
| 7930 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7931 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7932 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7933 | spin_lock(&info->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7934 | btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull", |
| 7935 | info->flags, |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 7936 | info->total_bytes - btrfs_space_info_used(info, true), |
| 7937 | info->full ? "" : "not "); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7938 | btrfs_info(fs_info, |
| 7939 | "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu", |
| 7940 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 7941 | info->bytes_reserved, info->bytes_may_use, |
| 7942 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7943 | spin_unlock(&info->lock); |
| 7944 | |
| 7945 | if (!dump_block_groups) |
| 7946 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7947 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7948 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7949 | again: |
| 7950 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7951 | spin_lock(&cache->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7952 | btrfs_info(fs_info, |
| 7953 | "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s", |
| 7954 | cache->key.objectid, cache->key.offset, |
| 7955 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 7956 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7957 | btrfs_dump_free_space(cache, bytes); |
| 7958 | spin_unlock(&cache->lock); |
| 7959 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7960 | if (++index < BTRFS_NR_RAID_TYPES) |
| 7961 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7962 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7963 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 7964 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7965 | int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7966 | u64 num_bytes, u64 min_alloc_size, |
| 7967 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7968 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7969 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7970 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 36af4e0 | 2015-09-25 16:13:11 -0400 | [diff] [blame] | 7971 | bool final_tried = num_bytes == min_alloc_size; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7972 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7973 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7974 | |
Jeff Mahoney | 1b86826 | 2017-05-17 11:38:35 -0400 | [diff] [blame] | 7975 | flags = get_alloc_profile_by_root(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 7976 | again: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7977 | WARN_ON(num_bytes < fs_info->sectorsize); |
Jeff Mahoney | 87bde3cd | 2017-02-15 16:28:27 -0500 | [diff] [blame] | 7978 | ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7979 | hint_byte, ins, flags, delalloc); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7980 | if (!ret && !is_data) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7981 | btrfs_dec_block_group_reservations(fs_info, ins->objectid); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7982 | } else if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7983 | if (!final_tried && ins->offset) { |
| 7984 | num_bytes = min(num_bytes >> 1, ins->offset); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 7985 | num_bytes = round_down(num_bytes, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7986 | fs_info->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7987 | num_bytes = max(num_bytes, min_alloc_size); |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7988 | ram_bytes = num_bytes; |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7989 | if (num_bytes == min_alloc_size) |
| 7990 | final_tried = true; |
| 7991 | goto again; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7992 | } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7993 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7994 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7995 | sinfo = __find_space_info(fs_info, flags); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 7996 | btrfs_err(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7997 | "allocation failed flags %llu, wanted %llu", |
| 7998 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 7999 | if (sinfo) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8000 | dump_space_info(fs_info, sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 8001 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 8002 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8003 | |
| 8004 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8005 | } |
| 8006 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8007 | static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8008 | u64 start, u64 len, |
| 8009 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8010 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8011 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8012 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8013 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8014 | cache = btrfs_lookup_block_group(fs_info, start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8015 | if (!cache) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8016 | btrfs_err(fs_info, "Unable to find block group for %llu", |
| 8017 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8018 | return -ENOSPC; |
| 8019 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8020 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8021 | if (pin) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8022 | pin_down_extent(fs_info, cache, start, len, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8023 | else { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8024 | if (btrfs_test_opt(fs_info, DISCARD)) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8025 | ret = btrfs_discard_extent(fs_info, start, len, NULL); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8026 | btrfs_add_free_space(cache, start, len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 8027 | btrfs_free_reserved_bytes(cache, len, delalloc); |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8028 | trace_btrfs_reserved_extent_free(fs_info, start, len); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8029 | } |
Dongsheng Yang | 3119321 | 2014-12-12 16:44:35 +0800 | [diff] [blame] | 8030 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8031 | btrfs_put_block_group(cache); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8032 | return ret; |
| 8033 | } |
| 8034 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8035 | int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8036 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8037 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8038 | return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8039 | } |
| 8040 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8041 | 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] | 8042 | u64 start, u64 len) |
| 8043 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8044 | return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8045 | } |
| 8046 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8047 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8048 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8049 | u64 parent, u64 root_objectid, |
| 8050 | u64 flags, u64 owner, u64 offset, |
| 8051 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8052 | { |
| 8053 | int ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8054 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8055 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8056 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8057 | struct extent_buffer *leaf; |
| 8058 | int type; |
| 8059 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 8060 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8061 | if (parent > 0) |
| 8062 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 8063 | else |
| 8064 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 8065 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8066 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8067 | |
| 8068 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8069 | if (!path) |
| 8070 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8071 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 8072 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8073 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8074 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8075 | if (ret) { |
| 8076 | btrfs_free_path(path); |
| 8077 | return ret; |
| 8078 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8079 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8080 | leaf = path->nodes[0]; |
| 8081 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8082 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8083 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 8084 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8085 | btrfs_set_extent_flags(leaf, extent_item, |
| 8086 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8087 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8088 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 8089 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 8090 | if (parent > 0) { |
| 8091 | struct btrfs_shared_data_ref *ref; |
| 8092 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 8093 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8094 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 8095 | } else { |
| 8096 | struct btrfs_extent_data_ref *ref; |
| 8097 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 8098 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 8099 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 8100 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 8101 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 8102 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8103 | |
| 8104 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8105 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 8106 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8107 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8108 | ins->offset); |
| 8109 | if (ret) |
| 8110 | return ret; |
| 8111 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 8112 | ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8113 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8114 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8115 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 8116 | BUG(); |
| 8117 | } |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8118 | trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8119 | return ret; |
| 8120 | } |
| 8121 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8122 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8123 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8124 | u64 parent, u64 root_objectid, |
| 8125 | u64 flags, struct btrfs_disk_key *key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8126 | int level, struct btrfs_key *ins) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8127 | { |
| 8128 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8129 | struct btrfs_extent_item *extent_item; |
| 8130 | struct btrfs_tree_block_info *block_info; |
| 8131 | struct btrfs_extent_inline_ref *iref; |
| 8132 | struct btrfs_path *path; |
| 8133 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8134 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 8135 | u64 num_bytes = ins->offset; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8136 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8137 | |
| 8138 | if (!skinny_metadata) |
| 8139 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8140 | |
| 8141 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8142 | if (!path) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8143 | btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8144 | fs_info->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8145 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8146 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8147 | |
| 8148 | path->leave_spinning = 1; |
| 8149 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8150 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8151 | if (ret) { |
Chris Mason | dd82525 | 2015-04-01 08:36:05 -0700 | [diff] [blame] | 8152 | btrfs_free_path(path); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8153 | btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8154 | fs_info->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8155 | return ret; |
| 8156 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8157 | |
| 8158 | leaf = path->nodes[0]; |
| 8159 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 8160 | struct btrfs_extent_item); |
| 8161 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 8162 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8163 | btrfs_set_extent_flags(leaf, extent_item, |
| 8164 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8165 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8166 | if (skinny_metadata) { |
| 8167 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8168 | num_bytes = fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8169 | } else { |
| 8170 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 8171 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 8172 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 8173 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 8174 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8175 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8176 | if (parent > 0) { |
| 8177 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 8178 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8179 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 8180 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8181 | } else { |
| 8182 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8183 | BTRFS_TREE_BLOCK_REF_KEY); |
| 8184 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 8185 | } |
| 8186 | |
| 8187 | btrfs_mark_buffer_dirty(leaf); |
| 8188 | btrfs_free_path(path); |
| 8189 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8190 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8191 | num_bytes); |
| 8192 | if (ret) |
| 8193 | return ret; |
| 8194 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 8195 | ret = update_block_group(trans, fs_info, ins->objectid, |
| 8196 | fs_info->nodesize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8197 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8198 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8199 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8200 | BUG(); |
| 8201 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 8202 | |
Jeff Mahoney | 71ff643 | 2016-09-06 16:00:42 -0400 | [diff] [blame] | 8203 | trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8204 | fs_info->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8205 | return ret; |
| 8206 | } |
| 8207 | |
| 8208 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8209 | u64 root_objectid, u64 owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 8210 | u64 offset, u64 ram_bytes, |
| 8211 | struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8212 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8213 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8214 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 8215 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8216 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 8217 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8218 | ret = btrfs_add_delayed_data_ref(fs_info, trans, ins->objectid, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 8219 | ins->offset, 0, root_objectid, owner, |
| 8220 | offset, ram_bytes, |
| 8221 | BTRFS_ADD_DELAYED_EXTENT, NULL, NULL); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8222 | return ret; |
| 8223 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8224 | |
| 8225 | /* |
| 8226 | * this is used by the tree logging recovery code. It records that |
| 8227 | * an extent has been allocated and makes sure to clear the free |
| 8228 | * space cache bits as well |
| 8229 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8230 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8231 | struct btrfs_fs_info *fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8232 | u64 root_objectid, u64 owner, u64 offset, |
| 8233 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8234 | { |
| 8235 | int ret; |
| 8236 | struct btrfs_block_group_cache *block_group; |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8237 | struct btrfs_space_info *space_info; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8238 | |
| 8239 | /* |
| 8240 | * 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] | 8241 | * need to do the exclude dance if this fs isn't mixed. |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8242 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8243 | if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8244 | ret = __exclude_logged_extent(fs_info, ins->objectid, |
| 8245 | ins->offset); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8246 | if (ret) |
| 8247 | return ret; |
| 8248 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8249 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8250 | block_group = btrfs_lookup_block_group(fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8251 | if (!block_group) |
| 8252 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8253 | |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8254 | space_info = block_group->space_info; |
| 8255 | spin_lock(&space_info->lock); |
| 8256 | spin_lock(&block_group->lock); |
| 8257 | space_info->bytes_reserved += ins->offset; |
| 8258 | block_group->reserved += ins->offset; |
| 8259 | spin_unlock(&block_group->lock); |
| 8260 | spin_unlock(&space_info->lock); |
| 8261 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8262 | ret = alloc_reserved_file_extent(trans, fs_info, 0, root_objectid, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8263 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 8264 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8265 | return ret; |
| 8266 | } |
| 8267 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 8268 | static struct extent_buffer * |
| 8269 | 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] | 8270 | u64 bytenr, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8271 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8272 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8273 | struct extent_buffer *buf; |
| 8274 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8275 | buf = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8276 | if (IS_ERR(buf)) |
| 8277 | return buf; |
| 8278 | |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8279 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 8280 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8281 | btrfs_tree_lock(buf); |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 8282 | clean_tree_block(fs_info, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 8283 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8284 | |
| 8285 | btrfs_set_lock_blocking(buf); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 8286 | set_extent_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8287 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8288 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8289 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8290 | /* |
| 8291 | * we allow two log transactions at a time, use different |
| 8292 | * EXENT bit to differentiate dirty pages. |
| 8293 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8294 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8295 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 8296 | buf->start + buf->len - 1, GFP_NOFS); |
| 8297 | else |
| 8298 | set_extent_new(&root->dirty_log_pages, buf->start, |
David Sterba | 3744dbe | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 8299 | buf->start + buf->len - 1); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8300 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8301 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8302 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 8303 | buf->start + buf->len - 1, GFP_NOFS); |
| 8304 | } |
Jeff Mahoney | 64c1292 | 2016-06-08 00:36:38 -0400 | [diff] [blame] | 8305 | trans->dirty = true; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8306 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8307 | return buf; |
| 8308 | } |
| 8309 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8310 | static struct btrfs_block_rsv * |
| 8311 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 8312 | struct btrfs_root *root, u32 blocksize) |
| 8313 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8314 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8315 | struct btrfs_block_rsv *block_rsv; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8316 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8317 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8318 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8319 | |
| 8320 | block_rsv = get_block_rsv(trans, root); |
| 8321 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8322 | if (unlikely(block_rsv->size == 0)) |
| 8323 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8324 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8325 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 8326 | if (!ret) |
| 8327 | return block_rsv; |
| 8328 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8329 | if (block_rsv->failfast) |
| 8330 | return ERR_PTR(ret); |
| 8331 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8332 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 8333 | global_updated = true; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8334 | update_global_block_rsv(fs_info); |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8335 | goto again; |
| 8336 | } |
| 8337 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8338 | if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8339 | static DEFINE_RATELIMIT_STATE(_rs, |
| 8340 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 8341 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 8342 | if (__ratelimit(&_rs)) |
| 8343 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8344 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8345 | } |
| 8346 | try_reserve: |
| 8347 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 8348 | BTRFS_RESERVE_NO_FLUSH); |
| 8349 | if (!ret) |
| 8350 | return block_rsv; |
| 8351 | /* |
| 8352 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8353 | * the global reserve if its space type is the same as the global |
| 8354 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8355 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8356 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 8357 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8358 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 8359 | if (!ret) |
| 8360 | return global_rsv; |
| 8361 | } |
| 8362 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8363 | } |
| 8364 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8365 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 8366 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8367 | { |
| 8368 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8369 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8370 | } |
| 8371 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8372 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8373 | * 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] | 8374 | * returns the tree buffer or an ERR_PTR on error. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8375 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 8376 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 8377 | struct btrfs_root *root, |
| 8378 | u64 parent, u64 root_objectid, |
| 8379 | const struct btrfs_disk_key *key, |
| 8380 | int level, u64 hint, |
| 8381 | u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8382 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8383 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 8384 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8385 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8386 | struct extent_buffer *buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8387 | struct btrfs_delayed_extent_op *extent_op; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8388 | u64 flags = 0; |
| 8389 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8390 | u32 blocksize = fs_info->nodesize; |
| 8391 | bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8392 | |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8393 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8394 | if (btrfs_is_testing(fs_info)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8395 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8396 | level); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8397 | if (!IS_ERR(buf)) |
| 8398 | root->alloc_bytenr += blocksize; |
| 8399 | return buf; |
| 8400 | } |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8401 | #endif |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 8402 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8403 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 8404 | if (IS_ERR(block_rsv)) |
| 8405 | return ERR_CAST(block_rsv); |
| 8406 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 8407 | ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8408 | empty_size, hint, &ins, 0, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8409 | if (ret) |
| 8410 | goto out_unuse; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 8411 | |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8412 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, level); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8413 | if (IS_ERR(buf)) { |
| 8414 | ret = PTR_ERR(buf); |
| 8415 | goto out_free_reserved; |
| 8416 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8417 | |
| 8418 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 8419 | if (parent == 0) |
| 8420 | parent = ins.objectid; |
| 8421 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8422 | } else |
| 8423 | BUG_ON(parent > 0); |
| 8424 | |
| 8425 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 8426 | extent_op = btrfs_alloc_delayed_extent_op(); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8427 | if (!extent_op) { |
| 8428 | ret = -ENOMEM; |
| 8429 | goto out_free_buf; |
| 8430 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8431 | if (key) |
| 8432 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 8433 | else |
| 8434 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 8435 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 8436 | extent_op->update_key = skinny_metadata ? false : true; |
| 8437 | extent_op->update_flags = true; |
| 8438 | extent_op->is_data = false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8439 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8440 | |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 8441 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, ins.objectid, |
| 8442 | ins.offset, parent, |
| 8443 | root_objectid, level, |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8444 | BTRFS_ADD_DELAYED_EXTENT, |
Omar Sandoval | 7be0791 | 2017-06-06 16:45:30 -0700 | [diff] [blame^] | 8445 | extent_op, NULL, NULL); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8446 | if (ret) |
| 8447 | goto out_free_delayed; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8448 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8449 | return buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8450 | |
| 8451 | out_free_delayed: |
| 8452 | btrfs_free_delayed_extent_op(extent_op); |
| 8453 | out_free_buf: |
| 8454 | free_extent_buffer(buf); |
| 8455 | out_free_reserved: |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8456 | btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8457 | out_unuse: |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8458 | unuse_block_rsv(fs_info, block_rsv, blocksize); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8459 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8460 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 8461 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8462 | struct walk_control { |
| 8463 | u64 refs[BTRFS_MAX_LEVEL]; |
| 8464 | u64 flags[BTRFS_MAX_LEVEL]; |
| 8465 | struct btrfs_key update_progress; |
| 8466 | int stage; |
| 8467 | int level; |
| 8468 | int shared_level; |
| 8469 | int update_ref; |
| 8470 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8471 | int reada_slot; |
| 8472 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8473 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8474 | }; |
| 8475 | |
| 8476 | #define DROP_REFERENCE 1 |
| 8477 | #define UPDATE_BACKREF 2 |
| 8478 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8479 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 8480 | struct btrfs_root *root, |
| 8481 | struct walk_control *wc, |
| 8482 | struct btrfs_path *path) |
| 8483 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8484 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8485 | u64 bytenr; |
| 8486 | u64 generation; |
| 8487 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8488 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8489 | u32 nritems; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8490 | struct btrfs_key key; |
| 8491 | struct extent_buffer *eb; |
| 8492 | int ret; |
| 8493 | int slot; |
| 8494 | int nread = 0; |
| 8495 | |
| 8496 | if (path->slots[wc->level] < wc->reada_slot) { |
| 8497 | wc->reada_count = wc->reada_count * 2 / 3; |
| 8498 | wc->reada_count = max(wc->reada_count, 2); |
| 8499 | } else { |
| 8500 | wc->reada_count = wc->reada_count * 3 / 2; |
| 8501 | wc->reada_count = min_t(int, wc->reada_count, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8502 | BTRFS_NODEPTRS_PER_BLOCK(fs_info)); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8503 | } |
| 8504 | |
| 8505 | eb = path->nodes[wc->level]; |
| 8506 | nritems = btrfs_header_nritems(eb); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8507 | |
| 8508 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 8509 | if (nread >= wc->reada_count) |
| 8510 | break; |
| 8511 | |
| 8512 | cond_resched(); |
| 8513 | bytenr = btrfs_node_blockptr(eb, slot); |
| 8514 | generation = btrfs_node_ptr_generation(eb, slot); |
| 8515 | |
| 8516 | if (slot == path->slots[wc->level]) |
| 8517 | goto reada; |
| 8518 | |
| 8519 | if (wc->stage == UPDATE_BACKREF && |
| 8520 | generation <= root->root_key.offset) |
| 8521 | continue; |
| 8522 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8523 | /* 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] | 8524 | ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8525 | wc->level - 1, 1, &refs, |
| 8526 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8527 | /* We don't care about errors in readahead. */ |
| 8528 | if (ret < 0) |
| 8529 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8530 | BUG_ON(refs == 0); |
| 8531 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8532 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8533 | if (refs == 1) |
| 8534 | goto reada; |
| 8535 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8536 | if (wc->level == 1 && |
| 8537 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8538 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8539 | if (!wc->update_ref || |
| 8540 | generation <= root->root_key.offset) |
| 8541 | continue; |
| 8542 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 8543 | ret = btrfs_comp_cpu_keys(&key, |
| 8544 | &wc->update_progress); |
| 8545 | if (ret < 0) |
| 8546 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8547 | } else { |
| 8548 | if (wc->level == 1 && |
| 8549 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8550 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8551 | } |
| 8552 | reada: |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8553 | readahead_tree_block(fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8554 | nread++; |
| 8555 | } |
| 8556 | wc->reada_slot = slot; |
| 8557 | } |
| 8558 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8559 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8560 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8561 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8562 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 8563 | * back refs for pointers in the block. |
| 8564 | * |
| 8565 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8566 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8567 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 8568 | struct btrfs_root *root, |
| 8569 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8570 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8571 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8572 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8573 | int level = wc->level; |
| 8574 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8575 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8576 | int ret; |
| 8577 | |
| 8578 | if (wc->stage == UPDATE_BACKREF && |
| 8579 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 8580 | return 1; |
| 8581 | |
| 8582 | /* |
| 8583 | * when reference count of tree block is 1, it won't increase |
| 8584 | * again. once full backref flag is set, we never clear it. |
| 8585 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8586 | if (lookup_info && |
| 8587 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 8588 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8589 | BUG_ON(!path->locks[level]); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8590 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8591 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8592 | &wc->refs[level], |
| 8593 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8594 | BUG_ON(ret == -ENOMEM); |
| 8595 | if (ret) |
| 8596 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8597 | BUG_ON(wc->refs[level] == 0); |
| 8598 | } |
| 8599 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8600 | if (wc->stage == DROP_REFERENCE) { |
| 8601 | if (wc->refs[level] > 1) |
| 8602 | return 1; |
| 8603 | |
| 8604 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8605 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8606 | path->locks[level] = 0; |
| 8607 | } |
| 8608 | return 0; |
| 8609 | } |
| 8610 | |
| 8611 | /* wc->stage == UPDATE_BACKREF */ |
| 8612 | if (!(wc->flags[level] & flag)) { |
| 8613 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8614 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8615 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8616 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8617 | BUG_ON(ret); /* -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8618 | ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8619 | eb->len, flag, |
| 8620 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8621 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8622 | wc->flags[level] |= flag; |
| 8623 | } |
| 8624 | |
| 8625 | /* |
| 8626 | * the block is shared by multiple trees, so it's not good to |
| 8627 | * keep the tree lock |
| 8628 | */ |
| 8629 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8630 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8631 | path->locks[level] = 0; |
| 8632 | } |
| 8633 | return 0; |
| 8634 | } |
| 8635 | |
| 8636 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8637 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8638 | * |
| 8639 | * when wc->stage == DROP_REFERENCE, this function checks |
| 8640 | * reference count of the block pointed to. if the block |
| 8641 | * is shared and we need update back refs for the subtree |
| 8642 | * rooted at the block, this function changes wc->stage to |
| 8643 | * UPDATE_BACKREF. if the block is shared and there is no |
| 8644 | * need to update back, this function drops the reference |
| 8645 | * to the block. |
| 8646 | * |
| 8647 | * NOTE: return value 1 means we should stop walking down. |
| 8648 | */ |
| 8649 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 8650 | struct btrfs_root *root, |
| 8651 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8652 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8653 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8654 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8655 | u64 bytenr; |
| 8656 | u64 generation; |
| 8657 | u64 parent; |
| 8658 | u32 blocksize; |
| 8659 | struct btrfs_key key; |
| 8660 | struct extent_buffer *next; |
| 8661 | int level = wc->level; |
| 8662 | int reada = 0; |
| 8663 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8664 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8665 | |
| 8666 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 8667 | path->slots[level]); |
| 8668 | /* |
| 8669 | * if the lower level block was created before the snapshot |
| 8670 | * was created, we know there is no need to update back refs |
| 8671 | * for the subtree |
| 8672 | */ |
| 8673 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8674 | generation <= root->root_key.offset) { |
| 8675 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8676 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8677 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8678 | |
| 8679 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8680 | blocksize = fs_info->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8681 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8682 | next = find_extent_buffer(fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8683 | if (!next) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8684 | next = btrfs_find_create_tree_block(fs_info, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8685 | if (IS_ERR(next)) |
| 8686 | return PTR_ERR(next); |
| 8687 | |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 8688 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 8689 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8690 | reada = 1; |
| 8691 | } |
| 8692 | btrfs_tree_lock(next); |
| 8693 | btrfs_set_lock_blocking(next); |
| 8694 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8695 | ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8696 | &wc->refs[level - 1], |
| 8697 | &wc->flags[level - 1]); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8698 | if (ret < 0) |
| 8699 | goto out_unlock; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8700 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8701 | if (unlikely(wc->refs[level - 1] == 0)) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8702 | btrfs_err(fs_info, "Missing references."); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8703 | ret = -EIO; |
| 8704 | goto out_unlock; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8705 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8706 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8707 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8708 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8709 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8710 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8711 | if (level == 1 && |
| 8712 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8713 | goto skip; |
| 8714 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8715 | if (!wc->update_ref || |
| 8716 | generation <= root->root_key.offset) |
| 8717 | goto skip; |
| 8718 | |
| 8719 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 8720 | path->slots[level]); |
| 8721 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 8722 | if (ret < 0) |
| 8723 | goto skip; |
| 8724 | |
| 8725 | wc->stage = UPDATE_BACKREF; |
| 8726 | wc->shared_level = level - 1; |
| 8727 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8728 | } else { |
| 8729 | if (level == 1 && |
| 8730 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8731 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8732 | } |
| 8733 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 8734 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8735 | btrfs_tree_unlock(next); |
| 8736 | free_extent_buffer(next); |
| 8737 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8738 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8739 | } |
| 8740 | |
| 8741 | if (!next) { |
| 8742 | if (reada && level == 1) |
| 8743 | reada_walk_down(trans, root, wc, path); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8744 | next = read_tree_block(fs_info, bytenr, generation); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8745 | if (IS_ERR(next)) { |
| 8746 | return PTR_ERR(next); |
| 8747 | } else if (!extent_buffer_uptodate(next)) { |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8748 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 8749 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8750 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8751 | btrfs_tree_lock(next); |
| 8752 | btrfs_set_lock_blocking(next); |
| 8753 | } |
| 8754 | |
| 8755 | level--; |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8756 | ASSERT(level == btrfs_header_level(next)); |
| 8757 | if (level != btrfs_header_level(next)) { |
| 8758 | btrfs_err(root->fs_info, "mismatched level"); |
| 8759 | ret = -EIO; |
| 8760 | goto out_unlock; |
| 8761 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8762 | path->nodes[level] = next; |
| 8763 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8764 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8765 | wc->level = level; |
| 8766 | if (wc->level == 1) |
| 8767 | wc->reada_slot = 0; |
| 8768 | return 0; |
| 8769 | skip: |
| 8770 | wc->refs[level - 1] = 0; |
| 8771 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8772 | if (wc->stage == DROP_REFERENCE) { |
| 8773 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 8774 | parent = path->nodes[level]->start; |
| 8775 | } else { |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8776 | ASSERT(root->root_key.objectid == |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8777 | btrfs_header_owner(path->nodes[level])); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8778 | if (root->root_key.objectid != |
| 8779 | btrfs_header_owner(path->nodes[level])) { |
| 8780 | btrfs_err(root->fs_info, |
| 8781 | "mismatched block owner"); |
| 8782 | ret = -EIO; |
| 8783 | goto out_unlock; |
| 8784 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8785 | parent = 0; |
| 8786 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8787 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8788 | if (need_account) { |
Qu Wenruo | 33d1f05 | 2016-10-18 09:31:28 +0800 | [diff] [blame] | 8789 | ret = btrfs_qgroup_trace_subtree(trans, root, next, |
| 8790 | generation, level - 1); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8791 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8792 | btrfs_err_rl(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8793 | "Error %d accounting shared subtree. Quota is out of sync, rescan required.", |
| 8794 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8795 | } |
| 8796 | } |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8797 | ret = btrfs_free_extent(trans, fs_info, bytenr, blocksize, |
| 8798 | parent, root->root_key.objectid, |
| 8799 | level - 1, 0); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8800 | if (ret) |
| 8801 | goto out_unlock; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8802 | } |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8803 | |
| 8804 | *lookup_info = 1; |
| 8805 | ret = 1; |
| 8806 | |
| 8807 | out_unlock: |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8808 | btrfs_tree_unlock(next); |
| 8809 | free_extent_buffer(next); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8810 | |
| 8811 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8812 | } |
| 8813 | |
| 8814 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8815 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8816 | * |
| 8817 | * when wc->stage == DROP_REFERENCE, this function drops |
| 8818 | * reference count on the block. |
| 8819 | * |
| 8820 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 8821 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 8822 | * to UPDATE_BACKREF previously while processing the block. |
| 8823 | * |
| 8824 | * NOTE: return value 1 means we should stop walking up. |
| 8825 | */ |
| 8826 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 8827 | struct btrfs_root *root, |
| 8828 | struct btrfs_path *path, |
| 8829 | struct walk_control *wc) |
| 8830 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8831 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8832 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8833 | int level = wc->level; |
| 8834 | struct extent_buffer *eb = path->nodes[level]; |
| 8835 | u64 parent = 0; |
| 8836 | |
| 8837 | if (wc->stage == UPDATE_BACKREF) { |
| 8838 | BUG_ON(wc->shared_level < level); |
| 8839 | if (level < wc->shared_level) |
| 8840 | goto out; |
| 8841 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8842 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 8843 | if (ret > 0) |
| 8844 | wc->update_ref = 0; |
| 8845 | |
| 8846 | wc->stage = DROP_REFERENCE; |
| 8847 | wc->shared_level = -1; |
| 8848 | path->slots[level] = 0; |
| 8849 | |
| 8850 | /* |
| 8851 | * check reference count again if the block isn't locked. |
| 8852 | * we should start walking down the tree again if reference |
| 8853 | * count is one. |
| 8854 | */ |
| 8855 | if (!path->locks[level]) { |
| 8856 | BUG_ON(level == 0); |
| 8857 | btrfs_tree_lock(eb); |
| 8858 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8859 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8860 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8861 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8862 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8863 | &wc->refs[level], |
| 8864 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8865 | if (ret < 0) { |
| 8866 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8867 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8868 | return ret; |
| 8869 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8870 | BUG_ON(wc->refs[level] == 0); |
| 8871 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 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; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8874 | return 1; |
| 8875 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8876 | } |
| 8877 | } |
| 8878 | |
| 8879 | /* wc->stage == DROP_REFERENCE */ |
| 8880 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 8881 | |
| 8882 | if (wc->refs[level] == 1) { |
| 8883 | if (level == 0) { |
| 8884 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8885 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8886 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8887 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8888 | BUG_ON(ret); /* -ENOMEM */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 8889 | ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, eb); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8890 | if (ret) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 8891 | btrfs_err_rl(fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8892 | "error %d accounting leaf items. Quota is out of sync, rescan required.", |
| 8893 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8894 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8895 | } |
| 8896 | /* make block locked assertion in clean_tree_block happy */ |
| 8897 | if (!path->locks[level] && |
| 8898 | btrfs_header_generation(eb) == trans->transid) { |
| 8899 | btrfs_tree_lock(eb); |
| 8900 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8901 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8902 | } |
David Sterba | 7c302b4 | 2017-02-10 18:47:57 +0100 | [diff] [blame] | 8903 | clean_tree_block(fs_info, eb); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8904 | } |
| 8905 | |
| 8906 | if (eb == root->node) { |
| 8907 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8908 | parent = eb->start; |
| 8909 | else |
| 8910 | BUG_ON(root->root_key.objectid != |
| 8911 | btrfs_header_owner(eb)); |
| 8912 | } else { |
| 8913 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8914 | parent = path->nodes[level + 1]->start; |
| 8915 | else |
| 8916 | BUG_ON(root->root_key.objectid != |
| 8917 | btrfs_header_owner(path->nodes[level + 1])); |
| 8918 | } |
| 8919 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8920 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8921 | out: |
| 8922 | wc->refs[level] = 0; |
| 8923 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8924 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8925 | } |
| 8926 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8927 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 8928 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8929 | struct btrfs_path *path, |
| 8930 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8931 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8932 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8933 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8934 | int ret; |
| 8935 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8936 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8937 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8938 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8939 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8940 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8941 | if (level == 0) |
| 8942 | break; |
| 8943 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 8944 | if (path->slots[level] >= |
| 8945 | btrfs_header_nritems(path->nodes[level])) |
| 8946 | break; |
| 8947 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8948 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8949 | if (ret > 0) { |
| 8950 | path->slots[level]++; |
| 8951 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8952 | } else if (ret < 0) |
| 8953 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8954 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8955 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8956 | return 0; |
| 8957 | } |
| 8958 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8959 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 8960 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8961 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8962 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8963 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8964 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8965 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8966 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8967 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 8968 | while (level < max_level && path->nodes[level]) { |
| 8969 | wc->level = level; |
| 8970 | if (path->slots[level] + 1 < |
| 8971 | btrfs_header_nritems(path->nodes[level])) { |
| 8972 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8973 | return 0; |
| 8974 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8975 | ret = walk_up_proc(trans, root, path, wc); |
| 8976 | if (ret > 0) |
| 8977 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 8978 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8979 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8980 | btrfs_tree_unlock_rw(path->nodes[level], |
| 8981 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8982 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8983 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8984 | free_extent_buffer(path->nodes[level]); |
| 8985 | path->nodes[level] = NULL; |
| 8986 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8987 | } |
| 8988 | } |
| 8989 | return 1; |
| 8990 | } |
| 8991 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8992 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8993 | * drop a subvolume tree. |
| 8994 | * |
| 8995 | * this function traverses the tree freeing any blocks that only |
| 8996 | * referenced by the tree. |
| 8997 | * |
| 8998 | * when a shared tree block is found. this function decreases its |
| 8999 | * reference count by one. if update_ref is true, this function |
| 9000 | * also make sure backrefs for the shared block and all lower level |
| 9001 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9002 | * |
| 9003 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9004 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9005 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9006 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 9007 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9008 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9009 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9010 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9011 | struct btrfs_trans_handle *trans; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9012 | struct btrfs_root *tree_root = fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9013 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9014 | struct walk_control *wc; |
| 9015 | struct btrfs_key key; |
| 9016 | int err = 0; |
| 9017 | int ret; |
| 9018 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9019 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9020 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9021 | btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9022 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9023 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9024 | if (!path) { |
| 9025 | err = -ENOMEM; |
| 9026 | goto out; |
| 9027 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9028 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9029 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9030 | if (!wc) { |
| 9031 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9032 | err = -ENOMEM; |
| 9033 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9034 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9035 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9036 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9037 | if (IS_ERR(trans)) { |
| 9038 | err = PTR_ERR(trans); |
| 9039 | goto out_free; |
| 9040 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 9041 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9042 | if (block_rsv) |
| 9043 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9044 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9045 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9046 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9047 | path->nodes[level] = btrfs_lock_root_node(root); |
| 9048 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9049 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9050 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9051 | memset(&wc->update_progress, 0, |
| 9052 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9053 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9054 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9055 | memcpy(&wc->update_progress, &key, |
| 9056 | sizeof(wc->update_progress)); |
| 9057 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9058 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9059 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9060 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9061 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 9062 | path->lowest_level = 0; |
| 9063 | if (ret < 0) { |
| 9064 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9065 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9066 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9067 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9068 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9069 | /* |
| 9070 | * unlock our path, this is safe because only this |
| 9071 | * function is allowed to delete this snapshot |
| 9072 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9073 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9074 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9075 | level = btrfs_header_level(root->node); |
| 9076 | while (1) { |
| 9077 | btrfs_tree_lock(path->nodes[level]); |
| 9078 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9079 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9080 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9081 | ret = btrfs_lookup_extent_info(trans, fs_info, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9082 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 9083 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9084 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9085 | if (ret < 0) { |
| 9086 | err = ret; |
| 9087 | goto out_end_trans; |
| 9088 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9089 | BUG_ON(wc->refs[level] == 0); |
| 9090 | |
| 9091 | if (level == root_item->drop_level) |
| 9092 | break; |
| 9093 | |
| 9094 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9095 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9096 | WARN_ON(wc->refs[level] != 1); |
| 9097 | level--; |
| 9098 | } |
| 9099 | } |
| 9100 | |
| 9101 | wc->level = level; |
| 9102 | wc->shared_level = -1; |
| 9103 | wc->stage = DROP_REFERENCE; |
| 9104 | wc->update_ref = update_ref; |
| 9105 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9106 | wc->for_reloc = for_reloc; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9107 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9108 | |
| 9109 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9110 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9111 | ret = walk_down_tree(trans, root, path, wc); |
| 9112 | if (ret < 0) { |
| 9113 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 9114 | break; |
| 9115 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9116 | |
| 9117 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 9118 | if (ret < 0) { |
| 9119 | err = ret; |
| 9120 | break; |
| 9121 | } |
| 9122 | |
| 9123 | if (ret > 0) { |
| 9124 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 9125 | break; |
| 9126 | } |
| 9127 | |
| 9128 | if (wc->stage == DROP_REFERENCE) { |
| 9129 | level = wc->level; |
| 9130 | btrfs_node_key(path->nodes[level], |
| 9131 | &root_item->drop_progress, |
| 9132 | path->slots[level]); |
| 9133 | root_item->drop_level = level; |
| 9134 | } |
| 9135 | |
| 9136 | BUG_ON(wc->level == 0); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9137 | if (btrfs_should_end_transaction(trans) || |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9138 | (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9139 | ret = btrfs_update_root(trans, tree_root, |
| 9140 | &root->root_key, |
| 9141 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9142 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9143 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9144 | err = ret; |
| 9145 | goto out_end_trans; |
| 9146 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9147 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9148 | btrfs_end_transaction_throttle(trans); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9149 | if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9150 | btrfs_debug(fs_info, |
| 9151 | "drop snapshot early exit"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9152 | err = -EAGAIN; |
| 9153 | goto out_free; |
| 9154 | } |
| 9155 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9156 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9157 | if (IS_ERR(trans)) { |
| 9158 | err = PTR_ERR(trans); |
| 9159 | goto out_free; |
| 9160 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9161 | if (block_rsv) |
| 9162 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 9163 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9164 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9165 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9166 | if (err) |
| 9167 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9168 | |
| 9169 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9170 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9171 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9172 | goto out_end_trans; |
| 9173 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9174 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9175 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 9176 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 9177 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9178 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9179 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9180 | err = ret; |
| 9181 | goto out_end_trans; |
| 9182 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 9183 | /* if we fail to delete the orphan item this time |
| 9184 | * around, it'll get picked up the next time. |
| 9185 | * |
| 9186 | * The most common failure here is just -ENOENT. |
| 9187 | */ |
| 9188 | btrfs_del_orphan_item(trans, tree_root, |
| 9189 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9190 | } |
| 9191 | } |
| 9192 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 9193 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Josef Bacik | 2b9dbef | 2015-09-15 10:07:04 -0400 | [diff] [blame] | 9194 | btrfs_add_dropped_root(trans, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9195 | } else { |
| 9196 | free_extent_buffer(root->node); |
| 9197 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 9198 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9199 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9200 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9201 | out_end_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9202 | btrfs_end_transaction_throttle(trans); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9203 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9204 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9205 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9206 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9207 | /* |
| 9208 | * So if we need to stop dropping the snapshot for whatever reason we |
| 9209 | * need to make sure to add it back to the dead root list so that we |
| 9210 | * keep trying to do the work later. This also cleans up roots if we |
| 9211 | * don't have it in the radix (like when we recover after a power fail |
| 9212 | * or unmount) so we don't leak memory. |
| 9213 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 9214 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9215 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 9216 | if (err && err != -EAGAIN) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9217 | btrfs_handle_fs_error(fs_info, err, NULL); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9218 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9219 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9220 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9221 | /* |
| 9222 | * drop subtree rooted at tree block 'node'. |
| 9223 | * |
| 9224 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9225 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9226 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9227 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 9228 | struct btrfs_root *root, |
| 9229 | struct extent_buffer *node, |
| 9230 | struct extent_buffer *parent) |
| 9231 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9232 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9233 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9234 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9235 | int level; |
| 9236 | int parent_level; |
| 9237 | int ret = 0; |
| 9238 | int wret; |
| 9239 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9240 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 9241 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9242 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9243 | if (!path) |
| 9244 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9245 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9246 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9247 | if (!wc) { |
| 9248 | btrfs_free_path(path); |
| 9249 | return -ENOMEM; |
| 9250 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9251 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9252 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9253 | parent_level = btrfs_header_level(parent); |
| 9254 | extent_buffer_get(parent); |
| 9255 | path->nodes[parent_level] = parent; |
| 9256 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 9257 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9258 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9259 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9260 | path->nodes[level] = node; |
| 9261 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9262 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9263 | |
| 9264 | wc->refs[parent_level] = 1; |
| 9265 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 9266 | wc->level = level; |
| 9267 | wc->shared_level = -1; |
| 9268 | wc->stage = DROP_REFERENCE; |
| 9269 | wc->update_ref = 0; |
| 9270 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9271 | wc->for_reloc = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9272 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9273 | |
| 9274 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9275 | wret = walk_down_tree(trans, root, path, wc); |
| 9276 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9277 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9278 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9279 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9280 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9281 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9282 | if (wret < 0) |
| 9283 | ret = wret; |
| 9284 | if (wret != 0) |
| 9285 | break; |
| 9286 | } |
| 9287 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9288 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9289 | btrfs_free_path(path); |
| 9290 | return ret; |
| 9291 | } |
| 9292 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9293 | 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] | 9294 | { |
| 9295 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9296 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9297 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9298 | /* |
| 9299 | * if restripe for this chunk_type is on pick target profile and |
| 9300 | * return, otherwise do the usual balance |
| 9301 | */ |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9302 | stripped = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9303 | if (stripped) |
| 9304 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 9305 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame] | 9306 | num_devices = fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 9307 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9308 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9309 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9310 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 9311 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9312 | if (num_devices == 1) { |
| 9313 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9314 | stripped = flags & ~stripped; |
| 9315 | |
| 9316 | /* turn raid0 into single device chunks */ |
| 9317 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 9318 | return stripped; |
| 9319 | |
| 9320 | /* turn mirroring into duplication */ |
| 9321 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9322 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9323 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9324 | } else { |
| 9325 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9326 | if (flags & stripped) |
| 9327 | return flags; |
| 9328 | |
| 9329 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9330 | stripped = flags & ~stripped; |
| 9331 | |
| 9332 | /* switch duplicated blocks with raid1 */ |
| 9333 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 9334 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 9335 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9336 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9337 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9338 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9339 | return flags; |
| 9340 | } |
| 9341 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9342 | 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] | 9343 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9344 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9345 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9346 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9347 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9348 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9349 | /* |
| 9350 | * We need some metadata space and system metadata space for |
| 9351 | * allocating chunks in some corner cases until we force to set |
| 9352 | * it to be readonly. |
| 9353 | */ |
| 9354 | if ((sinfo->flags & |
| 9355 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 9356 | !force) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 9357 | min_allocable_bytes = SZ_1M; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9358 | else |
| 9359 | min_allocable_bytes = 0; |
| 9360 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9361 | spin_lock(&sinfo->lock); |
| 9362 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9363 | |
| 9364 | if (cache->ro) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9365 | cache->ro++; |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9366 | ret = 0; |
| 9367 | goto out; |
| 9368 | } |
| 9369 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9370 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 9371 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9372 | |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 9373 | if (btrfs_space_info_used(sinfo, true) + num_bytes + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 9374 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9375 | sinfo->bytes_readonly += num_bytes; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9376 | cache->ro++; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9377 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9378 | ret = 0; |
| 9379 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9380 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9381 | spin_unlock(&cache->lock); |
| 9382 | spin_unlock(&sinfo->lock); |
| 9383 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9384 | } |
| 9385 | |
Jeff Mahoney | 5e00f19 | 2017-02-15 16:28:29 -0500 | [diff] [blame] | 9386 | int btrfs_inc_block_group_ro(struct btrfs_fs_info *fs_info, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9387 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9388 | |
| 9389 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9390 | struct btrfs_trans_handle *trans; |
| 9391 | u64 alloc_flags; |
| 9392 | int ret; |
| 9393 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9394 | again: |
Jeff Mahoney | 5e00f19 | 2017-02-15 16:28:29 -0500 | [diff] [blame] | 9395 | trans = btrfs_join_transaction(fs_info->extent_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9396 | if (IS_ERR(trans)) |
| 9397 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9398 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9399 | /* |
| 9400 | * we're not allowed to set block groups readonly after the dirty |
| 9401 | * block groups cache has started writing. If it already started, |
| 9402 | * back off and let this transaction commit |
| 9403 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9404 | mutex_lock(&fs_info->ro_block_group_mutex); |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 9405 | if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9406 | u64 transid = trans->transid; |
| 9407 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9408 | mutex_unlock(&fs_info->ro_block_group_mutex); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9409 | btrfs_end_transaction(trans); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9410 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9411 | ret = btrfs_wait_for_commit(fs_info, transid); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9412 | if (ret) |
| 9413 | return ret; |
| 9414 | goto again; |
| 9415 | } |
| 9416 | |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9417 | /* |
| 9418 | * if we are changing raid levels, try to allocate a corresponding |
| 9419 | * block group with the new raid level. |
| 9420 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9421 | alloc_flags = update_block_group_flags(fs_info, cache->flags); |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9422 | if (alloc_flags != cache->flags) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9423 | ret = do_chunk_alloc(trans, fs_info, alloc_flags, |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9424 | CHUNK_ALLOC_FORCE); |
| 9425 | /* |
| 9426 | * ENOSPC is allowed here, we may have enough space |
| 9427 | * already allocated at the new raid level to |
| 9428 | * carry on |
| 9429 | */ |
| 9430 | if (ret == -ENOSPC) |
| 9431 | ret = 0; |
| 9432 | if (ret < 0) |
| 9433 | goto out; |
| 9434 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9435 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9436 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9437 | if (!ret) |
| 9438 | goto out; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9439 | alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags); |
| 9440 | ret = do_chunk_alloc(trans, fs_info, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 9441 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9442 | if (ret < 0) |
| 9443 | goto out; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9444 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9445 | out: |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9446 | if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9447 | alloc_flags = update_block_group_flags(fs_info, cache->flags); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 9448 | mutex_lock(&fs_info->chunk_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9449 | check_system_chunk(trans, fs_info, alloc_flags); |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 9450 | mutex_unlock(&fs_info->chunk_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9451 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9452 | mutex_unlock(&fs_info->ro_block_group_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9453 | |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9454 | btrfs_end_transaction(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9455 | return ret; |
| 9456 | } |
| 9457 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9458 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9459 | struct btrfs_fs_info *fs_info, u64 type) |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9460 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9461 | u64 alloc_flags = get_alloc_profile(fs_info, type); |
| 9462 | |
| 9463 | return do_chunk_alloc(trans, fs_info, alloc_flags, CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9464 | } |
| 9465 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9466 | /* |
| 9467 | * 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] | 9468 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9469 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9470 | 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] | 9471 | { |
| 9472 | struct btrfs_block_group_cache *block_group; |
| 9473 | u64 free_bytes = 0; |
| 9474 | int factor; |
| 9475 | |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 9476 | /* It's df, we don't care if it's racy */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9477 | if (list_empty(&sinfo->ro_bgs)) |
| 9478 | return 0; |
| 9479 | |
| 9480 | spin_lock(&sinfo->lock); |
| 9481 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9482 | spin_lock(&block_group->lock); |
| 9483 | |
| 9484 | if (!block_group->ro) { |
| 9485 | spin_unlock(&block_group->lock); |
| 9486 | continue; |
| 9487 | } |
| 9488 | |
| 9489 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9490 | BTRFS_BLOCK_GROUP_RAID10 | |
| 9491 | BTRFS_BLOCK_GROUP_DUP)) |
| 9492 | factor = 2; |
| 9493 | else |
| 9494 | factor = 1; |
| 9495 | |
| 9496 | free_bytes += (block_group->key.offset - |
| 9497 | btrfs_block_group_used(&block_group->item)) * |
| 9498 | factor; |
| 9499 | |
| 9500 | spin_unlock(&block_group->lock); |
| 9501 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9502 | spin_unlock(&sinfo->lock); |
| 9503 | |
| 9504 | return free_bytes; |
| 9505 | } |
| 9506 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9507 | void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9508 | { |
| 9509 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9510 | u64 num_bytes; |
| 9511 | |
| 9512 | BUG_ON(!cache->ro); |
| 9513 | |
| 9514 | spin_lock(&sinfo->lock); |
| 9515 | spin_lock(&cache->lock); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9516 | if (!--cache->ro) { |
| 9517 | num_bytes = cache->key.offset - cache->reserved - |
| 9518 | cache->pinned - cache->bytes_super - |
| 9519 | btrfs_block_group_used(&cache->item); |
| 9520 | sinfo->bytes_readonly -= num_bytes; |
| 9521 | list_del_init(&cache->ro_list); |
| 9522 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9523 | spin_unlock(&cache->lock); |
| 9524 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9525 | } |
| 9526 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9527 | /* |
| 9528 | * checks to see if its even possible to relocate this block group. |
| 9529 | * |
| 9530 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 9531 | * ok to go ahead and try. |
| 9532 | */ |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9533 | int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9534 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9535 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9536 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9537 | struct btrfs_space_info *space_info; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9538 | struct btrfs_fs_devices *fs_devices = fs_info->fs_devices; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9539 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9540 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9541 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9542 | u64 dev_min = 1; |
| 9543 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9544 | u64 target; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9545 | int debug; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9546 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9547 | int full = 0; |
| 9548 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9549 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9550 | debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG); |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9551 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9552 | block_group = btrfs_lookup_block_group(fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9553 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9554 | /* odd, couldn't find the block group, leave it alone */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9555 | if (!block_group) { |
| 9556 | if (debug) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9557 | btrfs_warn(fs_info, |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9558 | "can't find block group for bytenr %llu", |
| 9559 | bytenr); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9560 | return -1; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9561 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9562 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9563 | min_free = btrfs_block_group_used(&block_group->item); |
| 9564 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9565 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9566 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9567 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9568 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9569 | space_info = block_group->space_info; |
| 9570 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9571 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9572 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9573 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9574 | /* |
| 9575 | * 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] | 9576 | * relocate it unless we're able to allocate a new chunk below. |
| 9577 | * |
| 9578 | * Otherwise, we need to make sure we have room in the space to handle |
| 9579 | * 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] | 9580 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 9581 | if ((space_info->total_bytes != block_group->key.offset) && |
Liu Bo | 4136135 | 2017-02-13 15:42:21 -0800 | [diff] [blame] | 9582 | (btrfs_space_info_used(space_info, false) + min_free < |
| 9583 | space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9584 | spin_unlock(&space_info->lock); |
| 9585 | goto out; |
| 9586 | } |
| 9587 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9588 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9589 | /* |
| 9590 | * ok we don't have enough space, but maybe we have free space on our |
| 9591 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9592 | * alloc devices and guess if we have enough space. if this block |
| 9593 | * group is going to be restriped, run checks against the target |
| 9594 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9595 | */ |
| 9596 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 9597 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9598 | /* |
| 9599 | * index: |
| 9600 | * 0: raid10 |
| 9601 | * 1: raid1 |
| 9602 | * 2: dup |
| 9603 | * 3: raid0 |
| 9604 | * 4: single |
| 9605 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9606 | target = get_restripe_target(fs_info, block_group->flags); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9607 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 9608 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9609 | } else { |
| 9610 | /* |
| 9611 | * this is just a balance, so if we were marked as full |
| 9612 | * we know there is no space for a new chunk |
| 9613 | */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9614 | if (full) { |
| 9615 | if (debug) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9616 | btrfs_warn(fs_info, |
| 9617 | "no space to alloc new chunk for block group %llu", |
| 9618 | block_group->key.objectid); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9619 | goto out; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9620 | } |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9621 | |
| 9622 | index = get_block_group_index(block_group); |
| 9623 | } |
| 9624 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9625 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9626 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9627 | /* Divide by 2 */ |
| 9628 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9629 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9630 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9631 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9632 | /* Multiply by 2 */ |
| 9633 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9634 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9635 | dev_min = fs_devices->rw_devices; |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 9636 | min_free = div64_u64(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9637 | } |
| 9638 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9639 | /* We need to do this so that we can look at pending chunks */ |
| 9640 | trans = btrfs_join_transaction(root); |
| 9641 | if (IS_ERR(trans)) { |
| 9642 | ret = PTR_ERR(trans); |
| 9643 | goto out; |
| 9644 | } |
| 9645 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9646 | mutex_lock(&fs_info->chunk_mutex); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9647 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9648 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 9649 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9650 | /* |
| 9651 | * check to make sure we can actually find a chunk with enough |
| 9652 | * space to fit our block group in. |
| 9653 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 9654 | if (device->total_bytes > device->bytes_used + min_free && |
| 9655 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9656 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9657 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9658 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9659 | dev_nr++; |
| 9660 | |
| 9661 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9662 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9663 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9664 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9665 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9666 | } |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9667 | if (debug && ret == -1) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9668 | btrfs_warn(fs_info, |
| 9669 | "no space to allocate a new chunk for block group %llu", |
| 9670 | block_group->key.objectid); |
| 9671 | mutex_unlock(&fs_info->chunk_mutex); |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 9672 | btrfs_end_transaction(trans); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9673 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9674 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9675 | return ret; |
| 9676 | } |
| 9677 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9678 | static int find_first_block_group(struct btrfs_fs_info *fs_info, |
| 9679 | struct btrfs_path *path, |
| 9680 | struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9681 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9682 | struct btrfs_root *root = fs_info->extent_root; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9683 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9684 | struct btrfs_key found_key; |
| 9685 | struct extent_buffer *leaf; |
| 9686 | int slot; |
| 9687 | |
| 9688 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 9689 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9690 | goto out; |
| 9691 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9692 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9693 | slot = path->slots[0]; |
| 9694 | leaf = path->nodes[0]; |
| 9695 | if (slot >= btrfs_header_nritems(leaf)) { |
| 9696 | ret = btrfs_next_leaf(root, path); |
| 9697 | if (ret == 0) |
| 9698 | continue; |
| 9699 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9700 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9701 | break; |
| 9702 | } |
| 9703 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 9704 | |
| 9705 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9706 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9707 | struct extent_map_tree *em_tree; |
| 9708 | struct extent_map *em; |
| 9709 | |
| 9710 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 9711 | read_lock(&em_tree->lock); |
| 9712 | em = lookup_extent_mapping(em_tree, found_key.objectid, |
| 9713 | found_key.offset); |
| 9714 | read_unlock(&em_tree->lock); |
| 9715 | if (!em) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9716 | btrfs_err(fs_info, |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9717 | "logical %llu len %llu found bg but no related chunk", |
| 9718 | found_key.objectid, found_key.offset); |
| 9719 | ret = -ENOENT; |
| 9720 | } else { |
| 9721 | ret = 0; |
| 9722 | } |
Josef Bacik | 187ee58 | 2016-08-18 15:30:06 -0400 | [diff] [blame] | 9723 | free_extent_map(em); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9724 | goto out; |
| 9725 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9726 | path->slots[0]++; |
| 9727 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9728 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9729 | return ret; |
| 9730 | } |
| 9731 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9732 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 9733 | { |
| 9734 | struct btrfs_block_group_cache *block_group; |
| 9735 | u64 last = 0; |
| 9736 | |
| 9737 | while (1) { |
| 9738 | struct inode *inode; |
| 9739 | |
| 9740 | block_group = btrfs_lookup_first_block_group(info, last); |
| 9741 | while (block_group) { |
| 9742 | spin_lock(&block_group->lock); |
| 9743 | if (block_group->iref) |
| 9744 | break; |
| 9745 | spin_unlock(&block_group->lock); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9746 | block_group = next_block_group(info, block_group); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9747 | } |
| 9748 | if (!block_group) { |
| 9749 | if (last == 0) |
| 9750 | break; |
| 9751 | last = 0; |
| 9752 | continue; |
| 9753 | } |
| 9754 | |
| 9755 | inode = block_group->inode; |
| 9756 | block_group->iref = 0; |
| 9757 | block_group->inode = NULL; |
| 9758 | spin_unlock(&block_group->lock); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9759 | ASSERT(block_group->io_ctl.inode == NULL); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9760 | iput(inode); |
| 9761 | last = block_group->key.objectid + block_group->key.offset; |
| 9762 | btrfs_put_block_group(block_group); |
| 9763 | } |
| 9764 | } |
| 9765 | |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 9766 | /* |
| 9767 | * Must be called only after stopping all workers, since we could have block |
| 9768 | * group caching kthreads running, and therefore they could race with us if we |
| 9769 | * freed the block groups before stopping them. |
| 9770 | */ |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9771 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 9772 | { |
| 9773 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9774 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9775 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9776 | struct rb_node *n; |
| 9777 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9778 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9779 | while (!list_empty(&info->caching_block_groups)) { |
| 9780 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 9781 | struct btrfs_caching_control, list); |
| 9782 | list_del(&caching_ctl->list); |
| 9783 | put_caching_control(caching_ctl); |
| 9784 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9785 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9786 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9787 | spin_lock(&info->unused_bgs_lock); |
| 9788 | while (!list_empty(&info->unused_bgs)) { |
| 9789 | block_group = list_first_entry(&info->unused_bgs, |
| 9790 | struct btrfs_block_group_cache, |
| 9791 | bg_list); |
| 9792 | list_del_init(&block_group->bg_list); |
| 9793 | btrfs_put_block_group(block_group); |
| 9794 | } |
| 9795 | spin_unlock(&info->unused_bgs_lock); |
| 9796 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9797 | spin_lock(&info->block_group_cache_lock); |
| 9798 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 9799 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 9800 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9801 | rb_erase(&block_group->cache_node, |
| 9802 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9803 | RB_CLEAR_NODE(&block_group->cache_node); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9804 | spin_unlock(&info->block_group_cache_lock); |
| 9805 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9806 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9807 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9808 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 9809 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9810 | /* |
| 9811 | * We haven't cached this block group, which means we could |
| 9812 | * possibly have excluded extents on this block group. |
| 9813 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 9814 | if (block_group->cached == BTRFS_CACHE_NO || |
| 9815 | block_group->cached == BTRFS_CACHE_ERROR) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9816 | free_excluded_extents(info, block_group); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9817 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9818 | btrfs_remove_free_space_cache(block_group); |
Filipe Manana | 5cdd7db | 2017-02-01 22:39:50 +0000 | [diff] [blame] | 9819 | ASSERT(block_group->cached != BTRFS_CACHE_STARTED); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9820 | ASSERT(list_empty(&block_group->dirty_list)); |
| 9821 | ASSERT(list_empty(&block_group->io_list)); |
| 9822 | ASSERT(list_empty(&block_group->bg_list)); |
| 9823 | ASSERT(atomic_read(&block_group->count) == 1); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 9824 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9825 | |
| 9826 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9827 | } |
| 9828 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9829 | |
| 9830 | /* now that all the block groups are freed, go through and |
| 9831 | * free all the space_info structs. This is only called during |
| 9832 | * the final stages of unmount, and so we know nobody is |
| 9833 | * using them. We call synchronize_rcu() once before we start, |
| 9834 | * just to be on the safe side. |
| 9835 | */ |
| 9836 | synchronize_rcu(); |
| 9837 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 9838 | release_global_block_rsv(info); |
| 9839 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 9840 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9841 | int i; |
| 9842 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9843 | space_info = list_entry(info->space_info.next, |
| 9844 | struct btrfs_space_info, |
| 9845 | list); |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 9846 | |
| 9847 | /* |
| 9848 | * Do not hide this behind enospc_debug, this is actually |
| 9849 | * important and indicates a real bug if this happens. |
| 9850 | */ |
| 9851 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9852 | space_info->bytes_reserved > 0 || |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 9853 | space_info->bytes_may_use > 0)) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9854 | dump_space_info(info, space_info, 0, 0); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9855 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9856 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 9857 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9858 | kobj = space_info->block_group_kobjs[i]; |
| 9859 | space_info->block_group_kobjs[i] = NULL; |
| 9860 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9861 | kobject_del(kobj); |
| 9862 | kobject_put(kobj); |
| 9863 | } |
| 9864 | } |
| 9865 | kobject_del(&space_info->kobj); |
| 9866 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9867 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9868 | return 0; |
| 9869 | } |
| 9870 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9871 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 9872 | struct btrfs_block_group_cache *cache) |
| 9873 | { |
| 9874 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9875 | bool first = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9876 | |
| 9877 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9878 | if (list_empty(&space_info->block_groups[index])) |
| 9879 | first = true; |
| 9880 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 9881 | up_write(&space_info->groups_sem); |
| 9882 | |
| 9883 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9884 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9885 | int ret; |
| 9886 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9887 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 9888 | if (!rkobj) |
| 9889 | goto out_err; |
| 9890 | rkobj->raid_type = index; |
| 9891 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 9892 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 9893 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9894 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9895 | kobject_put(&rkobj->kobj); |
| 9896 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9897 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9898 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9899 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9900 | |
| 9901 | return; |
| 9902 | out_err: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9903 | btrfs_warn(cache->fs_info, |
| 9904 | "failed to add kobject for block cache, ignoring"); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9905 | } |
| 9906 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9907 | static struct btrfs_block_group_cache * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9908 | btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info, |
| 9909 | u64 start, u64 size) |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9910 | { |
| 9911 | struct btrfs_block_group_cache *cache; |
| 9912 | |
| 9913 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 9914 | if (!cache) |
| 9915 | return NULL; |
| 9916 | |
| 9917 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 9918 | GFP_NOFS); |
| 9919 | if (!cache->free_space_ctl) { |
| 9920 | kfree(cache); |
| 9921 | return NULL; |
| 9922 | } |
| 9923 | |
| 9924 | cache->key.objectid = start; |
| 9925 | cache->key.offset = size; |
| 9926 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 9927 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9928 | cache->sectorsize = fs_info->sectorsize; |
| 9929 | cache->fs_info = fs_info; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9930 | cache->full_stripe_len = btrfs_full_stripe_len(fs_info, |
| 9931 | &fs_info->mapping_tree, |
| 9932 | start); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 9933 | set_free_space_tree_thresholds(cache); |
| 9934 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9935 | atomic_set(&cache->count, 1); |
| 9936 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 9937 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9938 | INIT_LIST_HEAD(&cache->list); |
| 9939 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9940 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9941 | INIT_LIST_HEAD(&cache->ro_list); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9942 | INIT_LIST_HEAD(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 9943 | INIT_LIST_HEAD(&cache->io_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9944 | btrfs_init_free_space_ctl(cache); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9945 | atomic_set(&cache->trimming, 0); |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 9946 | mutex_init(&cache->free_space_lock); |
Qu Wenruo | 0966a7b | 2017-04-14 08:35:54 +0800 | [diff] [blame] | 9947 | btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9948 | |
| 9949 | return cache; |
| 9950 | } |
| 9951 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 9952 | int btrfs_read_block_groups(struct btrfs_fs_info *info) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9953 | { |
| 9954 | struct btrfs_path *path; |
| 9955 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9956 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9957 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9958 | struct btrfs_key key; |
| 9959 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9960 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9961 | int need_clear = 0; |
| 9962 | u64 cache_gen; |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 9963 | u64 feature; |
| 9964 | int mixed; |
| 9965 | |
| 9966 | feature = btrfs_super_incompat_flags(info->super_copy); |
| 9967 | mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9968 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9969 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9970 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 9971 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9972 | path = btrfs_alloc_path(); |
| 9973 | if (!path) |
| 9974 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 9975 | path->reada = READA_FORWARD; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9976 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9977 | cache_gen = btrfs_super_cache_generation(info->super_copy); |
| 9978 | if (btrfs_test_opt(info, SPACE_CACHE) && |
| 9979 | btrfs_super_generation(info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9980 | need_clear = 1; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 9981 | if (btrfs_test_opt(info, CLEAR_CACHE)) |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 9982 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9983 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9984 | while (1) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9985 | ret = find_first_block_group(info, path, &key); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9986 | if (ret > 0) |
| 9987 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9988 | if (ret != 0) |
| 9989 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9990 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9991 | leaf = path->nodes[0]; |
| 9992 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9993 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 9994 | cache = btrfs_create_block_group_cache(info, found_key.objectid, |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9995 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9996 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9997 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9998 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9999 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10000 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10001 | if (need_clear) { |
| 10002 | /* |
| 10003 | * When we mount with old space cache, we need to |
| 10004 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 10005 | * |
| 10006 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 10007 | * truncate the old free space cache inode and |
| 10008 | * setup a new one. |
| 10009 | * b) Setting 'dirty flag' makes sure that we flush |
| 10010 | * the new space cache info onto disk. |
| 10011 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10012 | if (btrfs_test_opt(info, SPACE_CACHE)) |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10013 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10014 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10015 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10016 | read_extent_buffer(leaf, &cache->item, |
| 10017 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 10018 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10019 | cache->flags = btrfs_block_group_flags(&cache->item); |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 10020 | if (!mixed && |
| 10021 | ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) && |
| 10022 | (cache->flags & BTRFS_BLOCK_GROUP_DATA))) { |
| 10023 | btrfs_err(info, |
| 10024 | "bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups", |
| 10025 | cache->key.objectid); |
| 10026 | ret = -EINVAL; |
| 10027 | goto error; |
| 10028 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10029 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10030 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10031 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10032 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10033 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10034 | * We need to exclude the super stripes now so that the space |
| 10035 | * info has super bytes accounted for, otherwise we'll think |
| 10036 | * we have more space than we actually do. |
| 10037 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10038 | ret = exclude_super_stripes(info, cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10039 | if (ret) { |
| 10040 | /* |
| 10041 | * We may have excluded something, so call this just in |
| 10042 | * case. |
| 10043 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10044 | free_excluded_extents(info, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10045 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10046 | goto error; |
| 10047 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10048 | |
| 10049 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10050 | * check for two cases, either we are full, and therefore |
| 10051 | * don't need to bother with the caching work since we won't |
| 10052 | * find any space, or we are empty, and we can just add all |
| 10053 | * the space in and be done with it. This saves us _alot_ of |
| 10054 | * time, particularly in the full case. |
| 10055 | */ |
| 10056 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10057 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10058 | cache->cached = BTRFS_CACHE_FINISHED; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10059 | free_excluded_extents(info, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10060 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10061 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10062 | cache->cached = BTRFS_CACHE_FINISHED; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10063 | add_new_free_space(cache, info, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10064 | found_key.objectid, |
| 10065 | found_key.objectid + |
| 10066 | found_key.offset); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10067 | free_excluded_extents(info, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10068 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 10069 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10070 | ret = btrfs_add_block_group_cache(info, cache); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10071 | if (ret) { |
| 10072 | btrfs_remove_free_space_cache(cache); |
| 10073 | btrfs_put_block_group(cache); |
| 10074 | goto error; |
| 10075 | } |
| 10076 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10077 | trace_btrfs_add_block_group(info, cache, 0); |
Nikolay Borisov | d2006e6d | 2017-05-22 09:35:50 +0300 | [diff] [blame] | 10078 | update_space_info(info, cache->flags, found_key.offset, |
| 10079 | btrfs_block_group_used(&cache->item), |
| 10080 | cache->bytes_super, &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10081 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10082 | cache->space_info = space_info; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10083 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10084 | __link_block_group(space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10085 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10086 | set_avail_alloc_bits(info, cache->flags); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10087 | if (btrfs_chunk_readonly(info, cache->key.objectid)) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10088 | inc_block_group_ro(cache, 1); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10089 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
| 10090 | spin_lock(&info->unused_bgs_lock); |
| 10091 | /* Should always be true but just in case. */ |
| 10092 | if (list_empty(&cache->bg_list)) { |
| 10093 | btrfs_get_block_group(cache); |
| 10094 | list_add_tail(&cache->bg_list, |
| 10095 | &info->unused_bgs); |
| 10096 | } |
| 10097 | spin_unlock(&info->unused_bgs_lock); |
| 10098 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10099 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10100 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10101 | list_for_each_entry_rcu(space_info, &info->space_info, list) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10102 | if (!(get_alloc_profile(info, space_info->flags) & |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10103 | (BTRFS_BLOCK_GROUP_RAID10 | |
| 10104 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 10105 | BTRFS_BLOCK_GROUP_RAID5 | |
| 10106 | BTRFS_BLOCK_GROUP_RAID6 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10107 | BTRFS_BLOCK_GROUP_DUP))) |
| 10108 | continue; |
| 10109 | /* |
| 10110 | * avoid allocating from un-mirrored block group if there are |
| 10111 | * mirrored block groups. |
| 10112 | */ |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10113 | list_for_each_entry(cache, |
| 10114 | &space_info->block_groups[BTRFS_RAID_RAID0], |
| 10115 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10116 | inc_block_group_ro(cache, 1); |
chandan | 1095cc0 | 2013-07-16 12:28:56 +0530 | [diff] [blame] | 10117 | list_for_each_entry(cache, |
| 10118 | &space_info->block_groups[BTRFS_RAID_SINGLE], |
| 10119 | list) |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10120 | inc_block_group_ro(cache, 1); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10121 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 10122 | |
| 10123 | init_global_block_rsv(info); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10124 | ret = 0; |
| 10125 | error: |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10126 | btrfs_free_path(path); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10127 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10128 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10129 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10130 | void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10131 | struct btrfs_fs_info *fs_info) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10132 | { |
| 10133 | struct btrfs_block_group_cache *block_group, *tmp; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10134 | struct btrfs_root *extent_root = fs_info->extent_root; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10135 | struct btrfs_block_group_item item; |
| 10136 | struct btrfs_key key; |
| 10137 | int ret = 0; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10138 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10139 | |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10140 | trans->can_flush_pending_bgs = false; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10141 | 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] | 10142 | if (ret) |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10143 | goto next; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10144 | |
| 10145 | spin_lock(&block_group->lock); |
| 10146 | memcpy(&item, &block_group->item, sizeof(item)); |
| 10147 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10148 | spin_unlock(&block_group->lock); |
| 10149 | |
| 10150 | ret = btrfs_insert_item(trans, extent_root, &key, &item, |
| 10151 | sizeof(item)); |
| 10152 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10153 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10154 | ret = btrfs_finish_chunk_alloc(trans, fs_info, key.objectid, |
| 10155 | key.offset); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 10156 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10157 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10158 | add_block_group_free_space(trans, fs_info, block_group); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10159 | /* already aborted the transaction if it failed. */ |
Filipe Manana | c92f6be | 2014-11-26 15:28:55 +0000 | [diff] [blame] | 10160 | next: |
| 10161 | list_del_init(&block_group->bg_list); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10162 | } |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 10163 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 10164 | } |
| 10165 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10166 | int btrfs_make_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10167 | struct btrfs_fs_info *fs_info, u64 bytes_used, |
Chris Mason | e17cade | 2008-04-15 15:41:47 -0400 | [diff] [blame] | 10168 | u64 type, u64 chunk_objectid, u64 chunk_offset, |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10169 | u64 size) |
| 10170 | { |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10171 | struct btrfs_block_group_cache *cache; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10172 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10173 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10174 | btrfs_set_log_full_commit(fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 10175 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10176 | cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 10177 | if (!cache) |
| 10178 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10179 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10180 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10181 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10182 | btrfs_set_block_group_flags(&cache->item, type); |
| 10183 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10184 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10185 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10186 | cache->cached = BTRFS_CACHE_FINISHED; |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10187 | cache->needs_free_space = 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10188 | ret = exclude_super_stripes(fs_info, cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10189 | if (ret) { |
| 10190 | /* |
| 10191 | * We may have excluded something, so call this just in |
| 10192 | * case. |
| 10193 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10194 | free_excluded_extents(fs_info, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10195 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10196 | return ret; |
| 10197 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10198 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10199 | add_new_free_space(cache, fs_info, chunk_offset, chunk_offset + size); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10200 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10201 | free_excluded_extents(fs_info, cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10202 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10203 | #ifdef CONFIG_BTRFS_DEBUG |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10204 | if (btrfs_should_fragment_free_space(cache)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10205 | u64 new_bytes_used = size - bytes_used; |
| 10206 | |
| 10207 | bytes_used += new_bytes_used >> 1; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10208 | fragment_free_space(cache); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10209 | } |
| 10210 | #endif |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10211 | /* |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 10212 | * Ensure the corresponding space_info object is created and |
| 10213 | * assigned to our block group. We want our bg to be added to the rbtree |
| 10214 | * with its ->space_info set. |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10215 | */ |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 10216 | cache->space_info = __find_space_info(fs_info, cache->flags); |
| 10217 | if (!cache->space_info) { |
| 10218 | ret = create_space_info(fs_info, cache->flags, |
| 10219 | &cache->space_info); |
| 10220 | if (ret) { |
| 10221 | btrfs_remove_free_space_cache(cache); |
| 10222 | btrfs_put_block_group(cache); |
| 10223 | return ret; |
| 10224 | } |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10225 | } |
| 10226 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10227 | ret = btrfs_add_block_group_cache(fs_info, cache); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10228 | if (ret) { |
| 10229 | btrfs_remove_free_space_cache(cache); |
| 10230 | btrfs_put_block_group(cache); |
| 10231 | return ret; |
| 10232 | } |
| 10233 | |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10234 | /* |
| 10235 | * Now that our block group has its ->space_info set and is inserted in |
| 10236 | * the rbtree, update the space info's counters. |
| 10237 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10238 | trace_btrfs_add_block_group(fs_info, cache, 1); |
Nikolay Borisov | d2006e6d | 2017-05-22 09:35:50 +0300 | [diff] [blame] | 10239 | update_space_info(fs_info, cache->flags, size, bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10240 | cache->bytes_super, &cache->space_info); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10241 | update_global_block_rsv(fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10242 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10243 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10244 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10245 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10246 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10247 | set_avail_alloc_bits(fs_info, type); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10248 | return 0; |
| 10249 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10250 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10251 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 10252 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 10253 | u64 extra_flags = chunk_to_extended(flags) & |
| 10254 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10255 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10256 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10257 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 10258 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 10259 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 10260 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 10261 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 10262 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10263 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10264 | } |
| 10265 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10266 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10267 | struct btrfs_fs_info *fs_info, u64 group_start, |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10268 | struct extent_map *em) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10269 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10270 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10271 | struct btrfs_path *path; |
| 10272 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10273 | struct btrfs_free_cluster *cluster; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10274 | struct btrfs_root *tree_root = fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10275 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10276 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10277 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10278 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10279 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10280 | int factor; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10281 | struct btrfs_caching_control *caching_ctl = NULL; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10282 | bool remove_em; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10283 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10284 | block_group = btrfs_lookup_block_group(fs_info, group_start); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10285 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10286 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10287 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10288 | /* |
| 10289 | * Free the reserved super bytes from this block group before |
| 10290 | * remove it. |
| 10291 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10292 | free_excluded_extents(fs_info, block_group); |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10293 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10294 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10295 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10296 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 10297 | BTRFS_BLOCK_GROUP_RAID1 | |
| 10298 | BTRFS_BLOCK_GROUP_RAID10)) |
| 10299 | factor = 2; |
| 10300 | else |
| 10301 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10302 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10303 | /* make sure this block group isn't part of an allocation cluster */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10304 | cluster = &fs_info->data_alloc_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10305 | spin_lock(&cluster->refill_lock); |
| 10306 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10307 | spin_unlock(&cluster->refill_lock); |
| 10308 | |
| 10309 | /* |
| 10310 | * make sure this block group isn't part of a metadata |
| 10311 | * allocation cluster |
| 10312 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10313 | cluster = &fs_info->meta_alloc_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10314 | spin_lock(&cluster->refill_lock); |
| 10315 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10316 | spin_unlock(&cluster->refill_lock); |
| 10317 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10318 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 10319 | if (!path) { |
| 10320 | ret = -ENOMEM; |
| 10321 | goto out; |
| 10322 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10323 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10324 | /* |
| 10325 | * get the inode first so any iput calls done for the io_list |
| 10326 | * aren't the final iput (no unlinks allowed now) |
| 10327 | */ |
Jeff Mahoney | 77ab86b | 2017-02-15 16:28:30 -0500 | [diff] [blame] | 10328 | inode = lookup_free_space_inode(fs_info, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10329 | |
| 10330 | mutex_lock(&trans->transaction->cache_write_mutex); |
| 10331 | /* |
| 10332 | * make sure our free spache cache IO is done before remove the |
| 10333 | * free space inode |
| 10334 | */ |
| 10335 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10336 | if (!list_empty(&block_group->io_list)) { |
| 10337 | list_del_init(&block_group->io_list); |
| 10338 | |
| 10339 | WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode); |
| 10340 | |
| 10341 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Jeff Mahoney | afdb571 | 2016-09-09 12:09:35 -0400 | [diff] [blame] | 10342 | btrfs_wait_cache_io(trans, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10343 | btrfs_put_block_group(block_group); |
| 10344 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10345 | } |
| 10346 | |
| 10347 | if (!list_empty(&block_group->dirty_list)) { |
| 10348 | list_del_init(&block_group->dirty_list); |
| 10349 | btrfs_put_block_group(block_group); |
| 10350 | } |
| 10351 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 10352 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 10353 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10354 | if (!IS_ERR(inode)) { |
Nikolay Borisov | 73f2e54 | 2017-02-20 13:50:59 +0200 | [diff] [blame] | 10355 | ret = btrfs_orphan_add(trans, BTRFS_I(inode)); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 10356 | if (ret) { |
| 10357 | btrfs_add_delayed_iput(inode); |
| 10358 | goto out; |
| 10359 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10360 | clear_nlink(inode); |
| 10361 | /* One for the block groups ref */ |
| 10362 | spin_lock(&block_group->lock); |
| 10363 | if (block_group->iref) { |
| 10364 | block_group->iref = 0; |
| 10365 | block_group->inode = NULL; |
| 10366 | spin_unlock(&block_group->lock); |
| 10367 | iput(inode); |
| 10368 | } else { |
| 10369 | spin_unlock(&block_group->lock); |
| 10370 | } |
| 10371 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 10372 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10373 | } |
| 10374 | |
| 10375 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 10376 | key.offset = block_group->key.objectid; |
| 10377 | key.type = 0; |
| 10378 | |
| 10379 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 10380 | if (ret < 0) |
| 10381 | goto out; |
| 10382 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10383 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10384 | if (ret == 0) { |
| 10385 | ret = btrfs_del_item(trans, tree_root, path); |
| 10386 | if (ret) |
| 10387 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10388 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10389 | } |
| 10390 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10391 | spin_lock(&fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10392 | rb_erase(&block_group->cache_node, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10393 | &fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 10394 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 10395 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10396 | if (fs_info->first_logical_byte == block_group->key.objectid) |
| 10397 | fs_info->first_logical_byte = (u64)-1; |
| 10398 | spin_unlock(&fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10399 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10400 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10401 | /* |
| 10402 | * we must use list_del_init so people can check to see if they |
| 10403 | * are still on the list after taking the semaphore |
| 10404 | */ |
| 10405 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10406 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10407 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 10408 | block_group->space_info->block_group_kobjs[index] = NULL; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10409 | clear_avail_alloc_bits(fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10410 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10411 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10412 | if (kobj) { |
| 10413 | kobject_del(kobj); |
| 10414 | kobject_put(kobj); |
| 10415 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10416 | |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10417 | if (block_group->has_caching_ctl) |
| 10418 | caching_ctl = get_caching_control(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10419 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10420 | wait_block_group_cache_done(block_group); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10421 | if (block_group->has_caching_ctl) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10422 | down_write(&fs_info->commit_root_sem); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10423 | if (!caching_ctl) { |
| 10424 | struct btrfs_caching_control *ctl; |
| 10425 | |
| 10426 | list_for_each_entry(ctl, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10427 | &fs_info->caching_block_groups, list) |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10428 | if (ctl->block_group == block_group) { |
| 10429 | caching_ctl = ctl; |
Elena Reshetova | 1e4f471 | 2017-03-03 10:55:14 +0200 | [diff] [blame] | 10430 | refcount_inc(&caching_ctl->count); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10431 | break; |
| 10432 | } |
| 10433 | } |
| 10434 | if (caching_ctl) |
| 10435 | list_del_init(&caching_ctl->list); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10436 | up_write(&fs_info->commit_root_sem); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10437 | if (caching_ctl) { |
| 10438 | /* Once for the caching bgs list and once for us. */ |
| 10439 | put_caching_control(caching_ctl); |
| 10440 | put_caching_control(caching_ctl); |
| 10441 | } |
| 10442 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10443 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10444 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10445 | if (!list_empty(&block_group->dirty_list)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10446 | WARN_ON(1); |
| 10447 | } |
| 10448 | if (!list_empty(&block_group->io_list)) { |
| 10449 | WARN_ON(1); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10450 | } |
| 10451 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10452 | btrfs_remove_free_space_cache(block_group); |
| 10453 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10454 | spin_lock(&block_group->space_info->lock); |
Filipe Manana | 75c68e9 | 2015-01-16 13:24:40 +0000 | [diff] [blame] | 10455 | list_del_init(&block_group->ro_list); |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10456 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10457 | if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10458 | WARN_ON(block_group->space_info->total_bytes |
| 10459 | < block_group->key.offset); |
| 10460 | WARN_ON(block_group->space_info->bytes_readonly |
| 10461 | < block_group->key.offset); |
| 10462 | WARN_ON(block_group->space_info->disk_total |
| 10463 | < block_group->key.offset * factor); |
| 10464 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10465 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 10466 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10467 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10468 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10469 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 10470 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10471 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10472 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 10473 | mutex_lock(&fs_info->chunk_mutex); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 10474 | if (!list_empty(&em->list)) { |
| 10475 | /* We're in the transaction->pending_chunks list. */ |
| 10476 | free_extent_map(em); |
| 10477 | } |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10478 | spin_lock(&block_group->lock); |
| 10479 | block_group->removed = 1; |
| 10480 | /* |
| 10481 | * At this point trimming can't start on this block group, because we |
| 10482 | * removed the block group from the tree fs_info->block_group_cache_tree |
| 10483 | * so no one can't find it anymore and even if someone already got this |
| 10484 | * block group before we removed it from the rbtree, they have already |
| 10485 | * incremented block_group->trimming - if they didn't, they won't find |
| 10486 | * any free space entries because we already removed them all when we |
| 10487 | * called btrfs_remove_free_space_cache(). |
| 10488 | * |
| 10489 | * And we must not remove the extent map from the fs_info->mapping_tree |
| 10490 | * to prevent the same logical address range and physical device space |
| 10491 | * ranges from being reused for a new block group. This is because our |
| 10492 | * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is |
| 10493 | * completely transactionless, so while it is trimming a range the |
| 10494 | * currently running transaction might finish and a new one start, |
| 10495 | * allowing for new block groups to be created that can reuse the same |
| 10496 | * physical device locations unless we take this special care. |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10497 | * |
| 10498 | * There may also be an implicit trim operation if the file system |
| 10499 | * is mounted with -odiscard. The same protections must remain |
| 10500 | * in place until the extents have been discarded completely when |
| 10501 | * the transaction commit has completed. |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10502 | */ |
| 10503 | remove_em = (atomic_read(&block_group->trimming) == 0); |
| 10504 | /* |
| 10505 | * Make sure a trimmer task always sees the em in the pinned_chunks list |
| 10506 | * if it sees block_group->removed == 1 (needs to lock block_group->lock |
| 10507 | * before checking block_group->removed). |
| 10508 | */ |
| 10509 | if (!remove_em) { |
| 10510 | /* |
| 10511 | * Our em might be in trans->transaction->pending_chunks which |
| 10512 | * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks), |
| 10513 | * and so is the fs_info->pinned_chunks list. |
| 10514 | * |
| 10515 | * So at this point we must be holding the chunk_mutex to avoid |
| 10516 | * any races with chunk allocation (more specifically at |
| 10517 | * volumes.c:contains_pending_extent()), to ensure it always |
| 10518 | * sees the em, either in the pending_chunks list or in the |
| 10519 | * pinned_chunks list. |
| 10520 | */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10521 | list_move_tail(&em->list, &fs_info->pinned_chunks); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10522 | } |
| 10523 | spin_unlock(&block_group->lock); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10524 | |
| 10525 | if (remove_em) { |
| 10526 | struct extent_map_tree *em_tree; |
| 10527 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10528 | em_tree = &fs_info->mapping_tree.map_tree; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10529 | write_lock(&em_tree->lock); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10530 | /* |
| 10531 | * The em might be in the pending_chunks list, so make sure the |
| 10532 | * chunk mutex is locked, since remove_extent_mapping() will |
| 10533 | * delete us from that list. |
| 10534 | */ |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10535 | remove_extent_mapping(em_tree, em); |
| 10536 | write_unlock(&em_tree->lock); |
| 10537 | /* once for the tree */ |
| 10538 | free_extent_map(em); |
| 10539 | } |
| 10540 | |
David Sterba | 3444136 | 2016-10-04 19:34:27 +0200 | [diff] [blame] | 10541 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10542 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10543 | ret = remove_block_group_free_space(trans, fs_info, block_group); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10544 | if (ret) |
| 10545 | goto out; |
| 10546 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 10547 | btrfs_put_block_group(block_group); |
| 10548 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10549 | |
| 10550 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 10551 | if (ret > 0) |
| 10552 | ret = -EIO; |
| 10553 | if (ret < 0) |
| 10554 | goto out; |
| 10555 | |
| 10556 | ret = btrfs_del_item(trans, root, path); |
| 10557 | out: |
| 10558 | btrfs_free_path(path); |
| 10559 | return ret; |
| 10560 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10561 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10562 | struct btrfs_trans_handle * |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10563 | btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info, |
| 10564 | const u64 chunk_offset) |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10565 | { |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10566 | struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree; |
| 10567 | struct extent_map *em; |
| 10568 | struct map_lookup *map; |
| 10569 | unsigned int num_items; |
| 10570 | |
| 10571 | read_lock(&em_tree->lock); |
| 10572 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 10573 | read_unlock(&em_tree->lock); |
| 10574 | ASSERT(em && em->start == chunk_offset); |
| 10575 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10576 | /* |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10577 | * We need to reserve 3 + N units from the metadata space info in order |
| 10578 | * to remove a block group (done at btrfs_remove_chunk() and at |
| 10579 | * btrfs_remove_block_group()), which are used for: |
| 10580 | * |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10581 | * 1 unit for adding the free space inode's orphan (located in the tree |
| 10582 | * of tree roots). |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10583 | * 1 unit for deleting the block group item (located in the extent |
| 10584 | * tree). |
| 10585 | * 1 unit for deleting the free space item (located in tree of tree |
| 10586 | * roots). |
| 10587 | * N units for deleting N device extent items corresponding to each |
| 10588 | * stripe (located in the device tree). |
| 10589 | * |
| 10590 | * In order to remove a block group we also need to reserve units in the |
| 10591 | * system space info in order to update the chunk tree (update one or |
| 10592 | * more device items and remove one chunk item), but this is done at |
| 10593 | * btrfs_remove_chunk() through a call to check_system_chunk(). |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10594 | */ |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 10595 | map = em->map_lookup; |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10596 | num_items = 3 + map->num_stripes; |
| 10597 | free_extent_map(em); |
| 10598 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10599 | return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root, |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10600 | num_items, 1); |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10601 | } |
| 10602 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10603 | /* |
| 10604 | * Process the unused_bgs list and remove any that don't have any allocated |
| 10605 | * space inside of them. |
| 10606 | */ |
| 10607 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 10608 | { |
| 10609 | struct btrfs_block_group_cache *block_group; |
| 10610 | struct btrfs_space_info *space_info; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10611 | struct btrfs_trans_handle *trans; |
| 10612 | int ret = 0; |
| 10613 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 10614 | if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags)) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10615 | return; |
| 10616 | |
| 10617 | spin_lock(&fs_info->unused_bgs_lock); |
| 10618 | while (!list_empty(&fs_info->unused_bgs)) { |
| 10619 | u64 start, end; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10620 | int trimming; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10621 | |
| 10622 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 10623 | struct btrfs_block_group_cache, |
| 10624 | bg_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10625 | list_del_init(&block_group->bg_list); |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10626 | |
| 10627 | space_info = block_group->space_info; |
| 10628 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10629 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 10630 | btrfs_put_block_group(block_group); |
| 10631 | continue; |
| 10632 | } |
| 10633 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10634 | |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10635 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10636 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10637 | /* Don't want to race with allocators so take the groups_sem */ |
| 10638 | down_write(&space_info->groups_sem); |
| 10639 | spin_lock(&block_group->lock); |
| 10640 | if (block_group->reserved || |
| 10641 | btrfs_block_group_used(&block_group->item) || |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 10642 | block_group->ro || |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10643 | list_is_singular(&block_group->list)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10644 | /* |
| 10645 | * We want to bail if we made new allocations or have |
| 10646 | * outstanding allocations in this block group. We do |
| 10647 | * the ro check in case balance is currently acting on |
| 10648 | * this block group. |
| 10649 | */ |
| 10650 | spin_unlock(&block_group->lock); |
| 10651 | up_write(&space_info->groups_sem); |
| 10652 | goto next; |
| 10653 | } |
| 10654 | spin_unlock(&block_group->lock); |
| 10655 | |
| 10656 | /* 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] | 10657 | ret = inc_block_group_ro(block_group, 0); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10658 | up_write(&space_info->groups_sem); |
| 10659 | if (ret < 0) { |
| 10660 | ret = 0; |
| 10661 | goto next; |
| 10662 | } |
| 10663 | |
| 10664 | /* |
| 10665 | * Want to do this before we do anything else so we can recover |
| 10666 | * properly if we fail to join the transaction. |
| 10667 | */ |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10668 | trans = btrfs_start_trans_remove_block_group(fs_info, |
| 10669 | block_group->key.objectid); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10670 | if (IS_ERR(trans)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10671 | btrfs_dec_block_group_ro(block_group); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10672 | ret = PTR_ERR(trans); |
| 10673 | goto next; |
| 10674 | } |
| 10675 | |
| 10676 | /* |
| 10677 | * We could have pending pinned extents for this block group, |
| 10678 | * just delete them, we don't care about them anymore. |
| 10679 | */ |
| 10680 | start = block_group->key.objectid; |
| 10681 | end = start + block_group->key.offset - 1; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10682 | /* |
| 10683 | * Hold the unused_bg_unpin_mutex lock to avoid racing with |
| 10684 | * btrfs_finish_extent_commit(). If we are at transaction N, |
| 10685 | * another task might be running finish_extent_commit() for the |
| 10686 | * previous transaction N - 1, and have seen a range belonging |
| 10687 | * to the block group in freed_extents[] before we were able to |
| 10688 | * clear the whole block group range from freed_extents[]. This |
| 10689 | * means that task can lookup for the block group after we |
| 10690 | * unpinned it from freed_extents[] and removed it, leading to |
| 10691 | * a BUG_ON() at btrfs_unpin_extent_range(). |
| 10692 | */ |
| 10693 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10694 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10695 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10696 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10697 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10698 | btrfs_dec_block_group_ro(block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10699 | goto end_trans; |
| 10700 | } |
| 10701 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10702 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10703 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10704 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10705 | btrfs_dec_block_group_ro(block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10706 | goto end_trans; |
| 10707 | } |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10708 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10709 | |
| 10710 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10711 | spin_lock(&space_info->lock); |
| 10712 | spin_lock(&block_group->lock); |
| 10713 | |
| 10714 | space_info->bytes_pinned -= block_group->pinned; |
| 10715 | space_info->bytes_readonly += block_group->pinned; |
| 10716 | percpu_counter_add(&space_info->total_bytes_pinned, |
| 10717 | -block_group->pinned); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10718 | block_group->pinned = 0; |
| 10719 | |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10720 | spin_unlock(&block_group->lock); |
| 10721 | spin_unlock(&space_info->lock); |
| 10722 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10723 | /* DISCARD can flip during remount */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10724 | trimming = btrfs_test_opt(fs_info, DISCARD); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10725 | |
| 10726 | /* Implicit trim during transaction commit. */ |
| 10727 | if (trimming) |
| 10728 | btrfs_get_block_group_trimming(block_group); |
| 10729 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10730 | /* |
| 10731 | * Btrfs_remove_chunk will abort the transaction if things go |
| 10732 | * horribly wrong. |
| 10733 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 10734 | ret = btrfs_remove_chunk(trans, fs_info, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10735 | block_group->key.objectid); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10736 | |
| 10737 | if (ret) { |
| 10738 | if (trimming) |
| 10739 | btrfs_put_block_group_trimming(block_group); |
| 10740 | goto end_trans; |
| 10741 | } |
| 10742 | |
| 10743 | /* |
| 10744 | * If we're not mounted with -odiscard, we can just forget |
| 10745 | * about this block group. Otherwise we'll need to wait |
| 10746 | * until transaction commit to do the actual discard. |
| 10747 | */ |
| 10748 | if (trimming) { |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10749 | spin_lock(&fs_info->unused_bgs_lock); |
| 10750 | /* |
| 10751 | * A concurrent scrub might have added us to the list |
| 10752 | * fs_info->unused_bgs, so use a list_move operation |
| 10753 | * to add the block group to the deleted_bgs list. |
| 10754 | */ |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10755 | list_move(&block_group->bg_list, |
| 10756 | &trans->transaction->deleted_bgs); |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10757 | spin_unlock(&fs_info->unused_bgs_lock); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10758 | btrfs_get_block_group(block_group); |
| 10759 | } |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10760 | end_trans: |
Jeff Mahoney | 3a45bb2 | 2016-09-09 21:39:03 -0400 | [diff] [blame] | 10761 | btrfs_end_transaction(trans); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10762 | next: |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10763 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10764 | btrfs_put_block_group(block_group); |
| 10765 | spin_lock(&fs_info->unused_bgs_lock); |
| 10766 | } |
| 10767 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10768 | } |
| 10769 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10770 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 10771 | { |
| 10772 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10773 | struct btrfs_super_block *disk_super; |
| 10774 | u64 features; |
| 10775 | u64 flags; |
| 10776 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10777 | int ret; |
| 10778 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10779 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10780 | if (!btrfs_super_root(disk_super)) |
Dan Carpenter | 0dc924c5 | 2016-01-13 15:21:17 +0300 | [diff] [blame] | 10781 | return -EINVAL; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10782 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10783 | features = btrfs_super_incompat_flags(disk_super); |
| 10784 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 10785 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10786 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10787 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 10788 | ret = create_space_info(fs_info, flags, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10789 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10790 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10791 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10792 | if (mixed) { |
| 10793 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 10794 | ret = create_space_info(fs_info, flags, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10795 | } else { |
| 10796 | flags = BTRFS_BLOCK_GROUP_METADATA; |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 10797 | ret = create_space_info(fs_info, flags, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10798 | if (ret) |
| 10799 | goto out; |
| 10800 | |
| 10801 | flags = BTRFS_BLOCK_GROUP_DATA; |
Nikolay Borisov | 2be12ef | 2017-05-22 09:35:49 +0300 | [diff] [blame] | 10802 | ret = create_space_info(fs_info, flags, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10803 | } |
| 10804 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10805 | return ret; |
| 10806 | } |
| 10807 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10808 | int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info, |
| 10809 | u64 start, u64 end) |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10810 | { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10811 | return unpin_extent_range(fs_info, start, end, false); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10812 | } |
| 10813 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10814 | /* |
| 10815 | * It used to be that old block groups would be left around forever. |
| 10816 | * Iterating over them would be enough to trim unused space. Since we |
| 10817 | * now automatically remove them, we also need to iterate over unallocated |
| 10818 | * space. |
| 10819 | * |
| 10820 | * We don't want a transaction for this since the discard may take a |
| 10821 | * substantial amount of time. We don't require that a transaction be |
| 10822 | * running, but we do need to take a running transaction into account |
| 10823 | * to ensure that we're not discarding chunks that were released in |
| 10824 | * the current transaction. |
| 10825 | * |
| 10826 | * Holding the chunks lock will prevent other threads from allocating |
| 10827 | * or releasing chunks, but it won't prevent a running transaction |
| 10828 | * from committing and releasing the memory that the pending chunks |
| 10829 | * list head uses. For that, we need to take a reference to the |
| 10830 | * transaction. |
| 10831 | */ |
| 10832 | static int btrfs_trim_free_extents(struct btrfs_device *device, |
| 10833 | u64 minlen, u64 *trimmed) |
| 10834 | { |
| 10835 | u64 start = 0, len = 0; |
| 10836 | int ret; |
| 10837 | |
| 10838 | *trimmed = 0; |
| 10839 | |
| 10840 | /* Not writeable = nothing to do. */ |
| 10841 | if (!device->writeable) |
| 10842 | return 0; |
| 10843 | |
| 10844 | /* No free space = nothing to do. */ |
| 10845 | if (device->total_bytes <= device->bytes_used) |
| 10846 | return 0; |
| 10847 | |
| 10848 | ret = 0; |
| 10849 | |
| 10850 | while (1) { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 10851 | struct btrfs_fs_info *fs_info = device->fs_info; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10852 | struct btrfs_transaction *trans; |
| 10853 | u64 bytes; |
| 10854 | |
| 10855 | ret = mutex_lock_interruptible(&fs_info->chunk_mutex); |
| 10856 | if (ret) |
| 10857 | return ret; |
| 10858 | |
| 10859 | down_read(&fs_info->commit_root_sem); |
| 10860 | |
| 10861 | spin_lock(&fs_info->trans_lock); |
| 10862 | trans = fs_info->running_transaction; |
| 10863 | if (trans) |
Elena Reshetova | 9b64f57 | 2017-03-03 10:55:11 +0200 | [diff] [blame] | 10864 | refcount_inc(&trans->use_count); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10865 | spin_unlock(&fs_info->trans_lock); |
| 10866 | |
| 10867 | ret = find_free_dev_extent_start(trans, device, minlen, start, |
| 10868 | &start, &len); |
| 10869 | if (trans) |
| 10870 | btrfs_put_transaction(trans); |
| 10871 | |
| 10872 | if (ret) { |
| 10873 | up_read(&fs_info->commit_root_sem); |
| 10874 | mutex_unlock(&fs_info->chunk_mutex); |
| 10875 | if (ret == -ENOSPC) |
| 10876 | ret = 0; |
| 10877 | break; |
| 10878 | } |
| 10879 | |
| 10880 | ret = btrfs_issue_discard(device->bdev, start, len, &bytes); |
| 10881 | up_read(&fs_info->commit_root_sem); |
| 10882 | mutex_unlock(&fs_info->chunk_mutex); |
| 10883 | |
| 10884 | if (ret) |
| 10885 | break; |
| 10886 | |
| 10887 | start += len; |
| 10888 | *trimmed += bytes; |
| 10889 | |
| 10890 | if (fatal_signal_pending(current)) { |
| 10891 | ret = -ERESTARTSYS; |
| 10892 | break; |
| 10893 | } |
| 10894 | |
| 10895 | cond_resched(); |
| 10896 | } |
| 10897 | |
| 10898 | return ret; |
| 10899 | } |
| 10900 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10901 | 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] | 10902 | { |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10903 | struct btrfs_block_group_cache *cache = NULL; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10904 | struct btrfs_device *device; |
| 10905 | struct list_head *devices; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10906 | u64 group_trimmed; |
| 10907 | u64 start; |
| 10908 | u64 end; |
| 10909 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10910 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10911 | int ret = 0; |
| 10912 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10913 | /* |
| 10914 | * try to trim all FS space, our block group may start from non-zero. |
| 10915 | */ |
| 10916 | if (range->len == total_bytes) |
| 10917 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 10918 | else |
| 10919 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10920 | |
| 10921 | while (cache) { |
| 10922 | if (cache->key.objectid >= (range->start + range->len)) { |
| 10923 | btrfs_put_block_group(cache); |
| 10924 | break; |
| 10925 | } |
| 10926 | |
| 10927 | start = max(range->start, cache->key.objectid); |
| 10928 | end = min(range->start + range->len, |
| 10929 | cache->key.objectid + cache->key.offset); |
| 10930 | |
| 10931 | if (end - start >= range->minlen) { |
| 10932 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 10933 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 10934 | if (ret) { |
| 10935 | btrfs_put_block_group(cache); |
| 10936 | break; |
| 10937 | } |
| 10938 | ret = wait_block_group_cache_done(cache); |
| 10939 | if (ret) { |
| 10940 | btrfs_put_block_group(cache); |
| 10941 | break; |
| 10942 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10943 | } |
| 10944 | ret = btrfs_trim_block_group(cache, |
| 10945 | &group_trimmed, |
| 10946 | start, |
| 10947 | end, |
| 10948 | range->minlen); |
| 10949 | |
| 10950 | trimmed += group_trimmed; |
| 10951 | if (ret) { |
| 10952 | btrfs_put_block_group(cache); |
| 10953 | break; |
| 10954 | } |
| 10955 | } |
| 10956 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 10957 | cache = next_block_group(fs_info, cache); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10958 | } |
| 10959 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10960 | mutex_lock(&fs_info->fs_devices->device_list_mutex); |
| 10961 | devices = &fs_info->fs_devices->alloc_list; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10962 | list_for_each_entry(device, devices, dev_alloc_list) { |
| 10963 | ret = btrfs_trim_free_extents(device, range->minlen, |
| 10964 | &group_trimmed); |
| 10965 | if (ret) |
| 10966 | break; |
| 10967 | |
| 10968 | trimmed += group_trimmed; |
| 10969 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 10970 | mutex_unlock(&fs_info->fs_devices->device_list_mutex); |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10971 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10972 | range->len = trimmed; |
| 10973 | return ret; |
| 10974 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10975 | |
| 10976 | /* |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10977 | * btrfs_{start,end}_write_no_snapshoting() are similar to |
| 10978 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 10979 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 10980 | * but flush the data into disk after the snapshot creation, or to prevent |
| 10981 | * operations while snapshoting is ongoing and that cause the snapshot to be |
| 10982 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10983 | */ |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10984 | void btrfs_end_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10985 | { |
| 10986 | percpu_counter_dec(&root->subv_writers->counter); |
| 10987 | /* |
David Sterba | a83342a | 2015-02-16 19:36:47 +0100 | [diff] [blame] | 10988 | * Make sure counter is updated before we wake up waiters. |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10989 | */ |
| 10990 | smp_mb(); |
| 10991 | if (waitqueue_active(&root->subv_writers->wait)) |
| 10992 | wake_up(&root->subv_writers->wait); |
| 10993 | } |
| 10994 | |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10995 | int btrfs_start_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10996 | { |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 10997 | if (atomic_read(&root->will_be_snapshoted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10998 | return 0; |
| 10999 | |
| 11000 | percpu_counter_inc(&root->subv_writers->counter); |
| 11001 | /* |
| 11002 | * Make sure counter is updated before we check for snapshot creation. |
| 11003 | */ |
| 11004 | smp_mb(); |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 11005 | if (atomic_read(&root->will_be_snapshoted)) { |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11006 | btrfs_end_write_no_snapshoting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11007 | return 0; |
| 11008 | } |
| 11009 | return 1; |
| 11010 | } |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11011 | |
| 11012 | static int wait_snapshoting_atomic_t(atomic_t *a) |
| 11013 | { |
| 11014 | schedule(); |
| 11015 | return 0; |
| 11016 | } |
| 11017 | |
| 11018 | void btrfs_wait_for_snapshot_creation(struct btrfs_root *root) |
| 11019 | { |
| 11020 | while (true) { |
| 11021 | int ret; |
| 11022 | |
| 11023 | ret = btrfs_start_write_no_snapshoting(root); |
| 11024 | if (ret) |
| 11025 | break; |
| 11026 | wait_on_atomic_t(&root->will_be_snapshoted, |
| 11027 | wait_snapshoting_atomic_t, |
| 11028 | TASK_UNINTERRUPTIBLE); |
| 11029 | } |
| 11030 | } |