Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Oracle. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public |
| 6 | * License v2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public |
| 14 | * License along with this program; if not, write to the |
| 15 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 16 | * Boston, MA 021110-1307, USA. |
| 17 | */ |
Zach Brown | ec6b910 | 2007-07-11 10:00:37 -0400 | [diff] [blame] | 18 | #include <linux/sched.h> |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 19 | #include <linux/pagemap.h> |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 20 | #include <linux/writeback.h> |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 21 | #include <linux/blkdev.h> |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 22 | #include <linux/sort.h> |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 23 | #include <linux/rcupdate.h> |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 24 | #include <linux/kthread.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
David Sterba | dff51cd | 2011-06-14 12:52:17 +0200 | [diff] [blame] | 26 | #include <linux/ratelimit.h> |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 27 | #include <linux/percpu_counter.h> |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 28 | #include "hash.h" |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 29 | #include "tree-log.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 30 | #include "disk-io.h" |
| 31 | #include "print-tree.h" |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 32 | #include "volumes.h" |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 33 | #include "raid56.h" |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 34 | #include "locking.h" |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 35 | #include "free-space-cache.h" |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 36 | #include "free-space-tree.h" |
Miao Xie | 3fed40c | 2012-09-13 04:51:36 -0600 | [diff] [blame] | 37 | #include "math.h" |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 38 | #include "sysfs.h" |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 39 | #include "qgroup.h" |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 40 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 41 | #undef SCRAMBLE_DELAYED_REFS |
| 42 | |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 43 | /* |
| 44 | * control flags for do_chunk_alloc's force field |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 45 | * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk |
| 46 | * if we really need one. |
| 47 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 48 | * CHUNK_ALLOC_LIMITED means to only try and allocate one |
| 49 | * if we have very few chunks already allocated. This is |
| 50 | * used as part of the clustering code to help make sure |
| 51 | * we have a good pool of storage to cluster in, without |
| 52 | * filling the FS with empty chunks |
| 53 | * |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 54 | * CHUNK_ALLOC_FORCE means it must try to allocate one |
| 55 | * |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 56 | */ |
| 57 | enum { |
| 58 | CHUNK_ALLOC_NO_FORCE = 0, |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 59 | CHUNK_ALLOC_LIMITED = 1, |
| 60 | CHUNK_ALLOC_FORCE = 2, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 61 | }; |
| 62 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 63 | static int update_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 64 | struct btrfs_fs_info *fs_info, u64 bytenr, |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 65 | u64 num_bytes, int alloc); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 66 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 67 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 68 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 69 | u64 root_objectid, u64 owner_objectid, |
| 70 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 71 | struct btrfs_delayed_extent_op *extra_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 72 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 73 | struct extent_buffer *leaf, |
| 74 | struct btrfs_extent_item *ei); |
| 75 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 76 | struct btrfs_root *root, |
| 77 | u64 parent, u64 root_objectid, |
| 78 | u64 flags, u64 owner, u64 offset, |
| 79 | struct btrfs_key *ins, int ref_mod); |
| 80 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 81 | struct btrfs_root *root, |
| 82 | u64 parent, u64 root_objectid, |
| 83 | u64 flags, struct btrfs_disk_key *key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 84 | int level, struct btrfs_key *ins); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 85 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 86 | struct btrfs_root *extent_root, u64 flags, |
| 87 | int force); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 88 | static int find_next_key(struct btrfs_path *path, int level, |
| 89 | struct btrfs_key *key); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 90 | static void dump_space_info(struct btrfs_fs_info *fs_info, |
| 91 | struct btrfs_space_info *info, u64 bytes, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 92 | int dump_block_groups); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 93 | static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 94 | u64 ram_bytes, u64 num_bytes, int delalloc); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 95 | static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 96 | u64 num_bytes, int delalloc); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 97 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 98 | u64 num_bytes); |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 99 | int btrfs_pin_extent(struct btrfs_root *root, |
| 100 | u64 bytenr, u64 num_bytes, int reserved); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 101 | static int __reserve_metadata_bytes(struct btrfs_root *root, |
| 102 | struct btrfs_space_info *space_info, |
| 103 | u64 orig_bytes, |
| 104 | enum btrfs_reserve_flush_enum flush); |
| 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); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 135 | kfree(cache->free_space_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 136 | kfree(cache); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 137 | } |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 140 | /* |
| 141 | * this adds the block group to the fs_info rb tree for the block group |
| 142 | * cache |
| 143 | */ |
Christoph Hellwig | b295086 | 2008-12-02 09:54:17 -0500 | [diff] [blame] | 144 | static int btrfs_add_block_group_cache(struct btrfs_fs_info *info, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 145 | struct btrfs_block_group_cache *block_group) |
| 146 | { |
| 147 | struct rb_node **p; |
| 148 | struct rb_node *parent = NULL; |
| 149 | struct btrfs_block_group_cache *cache; |
| 150 | |
| 151 | spin_lock(&info->block_group_cache_lock); |
| 152 | p = &info->block_group_cache_tree.rb_node; |
| 153 | |
| 154 | while (*p) { |
| 155 | parent = *p; |
| 156 | cache = rb_entry(parent, struct btrfs_block_group_cache, |
| 157 | cache_node); |
| 158 | if (block_group->key.objectid < cache->key.objectid) { |
| 159 | p = &(*p)->rb_left; |
| 160 | } else if (block_group->key.objectid > cache->key.objectid) { |
| 161 | p = &(*p)->rb_right; |
| 162 | } else { |
| 163 | spin_unlock(&info->block_group_cache_lock); |
| 164 | return -EEXIST; |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | rb_link_node(&block_group->cache_node, parent, p); |
| 169 | rb_insert_color(&block_group->cache_node, |
| 170 | &info->block_group_cache_tree); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 171 | |
| 172 | if (info->first_logical_byte > block_group->key.objectid) |
| 173 | info->first_logical_byte = block_group->key.objectid; |
| 174 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 175 | spin_unlock(&info->block_group_cache_lock); |
| 176 | |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | /* |
| 181 | * This will return the block group at or after bytenr if contains is 0, else |
| 182 | * it will return the block group that contains the bytenr |
| 183 | */ |
| 184 | static struct btrfs_block_group_cache * |
| 185 | block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr, |
| 186 | int contains) |
| 187 | { |
| 188 | struct btrfs_block_group_cache *cache, *ret = NULL; |
| 189 | struct rb_node *n; |
| 190 | u64 end, start; |
| 191 | |
| 192 | spin_lock(&info->block_group_cache_lock); |
| 193 | n = info->block_group_cache_tree.rb_node; |
| 194 | |
| 195 | while (n) { |
| 196 | cache = rb_entry(n, struct btrfs_block_group_cache, |
| 197 | cache_node); |
| 198 | end = cache->key.objectid + cache->key.offset - 1; |
| 199 | start = cache->key.objectid; |
| 200 | |
| 201 | if (bytenr < start) { |
| 202 | if (!contains && (!ret || start < ret->key.objectid)) |
| 203 | ret = cache; |
| 204 | n = n->rb_left; |
| 205 | } else if (bytenr > start) { |
| 206 | if (contains && bytenr <= end) { |
| 207 | ret = cache; |
| 208 | break; |
| 209 | } |
| 210 | n = n->rb_right; |
| 211 | } else { |
| 212 | ret = cache; |
| 213 | break; |
| 214 | } |
| 215 | } |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 216 | if (ret) { |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 217 | btrfs_get_block_group(ret); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 218 | if (bytenr == 0 && info->first_logical_byte > ret->key.objectid) |
| 219 | info->first_logical_byte = ret->key.objectid; |
| 220 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 221 | spin_unlock(&info->block_group_cache_lock); |
| 222 | |
| 223 | return ret; |
| 224 | } |
| 225 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 226 | static int add_excluded_extent(struct btrfs_root *root, |
| 227 | u64 start, u64 num_bytes) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 228 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 229 | u64 end = start + num_bytes - 1; |
| 230 | set_extent_bits(&root->fs_info->freed_extents[0], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 231 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 232 | set_extent_bits(&root->fs_info->freed_extents[1], |
David Sterba | ceeb0ae | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 233 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 234 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 235 | } |
| 236 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 237 | static void free_excluded_extents(struct btrfs_root *root, |
| 238 | struct btrfs_block_group_cache *cache) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 239 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 240 | u64 start, end; |
| 241 | |
| 242 | start = cache->key.objectid; |
| 243 | end = start + cache->key.offset - 1; |
| 244 | |
| 245 | clear_extent_bits(&root->fs_info->freed_extents[0], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 246 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 247 | clear_extent_bits(&root->fs_info->freed_extents[1], |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 248 | start, end, EXTENT_UPTODATE); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | static int exclude_super_stripes(struct btrfs_root *root, |
| 252 | struct btrfs_block_group_cache *cache) |
| 253 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 254 | u64 bytenr; |
| 255 | u64 *logical; |
| 256 | int stripe_len; |
| 257 | int i, nr, ret; |
| 258 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 259 | if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) { |
| 260 | stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid; |
| 261 | cache->bytes_super += stripe_len; |
| 262 | ret = add_excluded_extent(root, cache->key.objectid, |
| 263 | stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 264 | if (ret) |
| 265 | return ret; |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 268 | for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) { |
| 269 | bytenr = btrfs_sb_offset(i); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 270 | ret = btrfs_rmap_block(root->fs_info, cache->key.objectid, |
| 271 | bytenr, 0, &logical, &nr, &stripe_len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 272 | if (ret) |
| 273 | return ret; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 274 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 275 | while (nr--) { |
Josef Bacik | 51bf5f0 | 2013-04-23 12:55:21 -0400 | [diff] [blame] | 276 | u64 start, len; |
| 277 | |
| 278 | if (logical[nr] > cache->key.objectid + |
| 279 | cache->key.offset) |
| 280 | continue; |
| 281 | |
| 282 | if (logical[nr] + stripe_len <= cache->key.objectid) |
| 283 | continue; |
| 284 | |
| 285 | start = logical[nr]; |
| 286 | if (start < cache->key.objectid) { |
| 287 | start = cache->key.objectid; |
| 288 | len = (logical[nr] + stripe_len) - start; |
| 289 | } else { |
| 290 | len = min_t(u64, stripe_len, |
| 291 | cache->key.objectid + |
| 292 | cache->key.offset - start); |
| 293 | } |
| 294 | |
| 295 | cache->bytes_super += len; |
| 296 | ret = add_excluded_extent(root, start, len); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 297 | if (ret) { |
| 298 | kfree(logical); |
| 299 | return ret; |
| 300 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 301 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 302 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 303 | kfree(logical); |
| 304 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 305 | return 0; |
| 306 | } |
| 307 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 308 | static struct btrfs_caching_control * |
| 309 | get_caching_control(struct btrfs_block_group_cache *cache) |
| 310 | { |
| 311 | struct btrfs_caching_control *ctl; |
| 312 | |
| 313 | spin_lock(&cache->lock); |
Josef Bacik | dde5abe | 2010-09-16 16:17:03 -0400 | [diff] [blame] | 314 | if (!cache->caching_ctl) { |
| 315 | spin_unlock(&cache->lock); |
| 316 | return NULL; |
| 317 | } |
| 318 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 319 | ctl = cache->caching_ctl; |
| 320 | atomic_inc(&ctl->count); |
| 321 | spin_unlock(&cache->lock); |
| 322 | return ctl; |
| 323 | } |
| 324 | |
| 325 | static void put_caching_control(struct btrfs_caching_control *ctl) |
| 326 | { |
| 327 | if (atomic_dec_and_test(&ctl->count)) |
| 328 | kfree(ctl); |
| 329 | } |
| 330 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 331 | #ifdef CONFIG_BTRFS_DEBUG |
| 332 | static void fragment_free_space(struct btrfs_root *root, |
| 333 | struct btrfs_block_group_cache *block_group) |
| 334 | { |
| 335 | u64 start = block_group->key.objectid; |
| 336 | u64 len = block_group->key.offset; |
| 337 | u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ? |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 338 | root->fs_info->nodesize : root->fs_info->sectorsize; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 339 | u64 step = chunk << 1; |
| 340 | |
| 341 | while (len > chunk) { |
| 342 | btrfs_remove_free_space(block_group, start, chunk); |
| 343 | start += step; |
| 344 | if (len < step) |
| 345 | len = 0; |
| 346 | else |
| 347 | len -= step; |
| 348 | } |
| 349 | } |
| 350 | #endif |
| 351 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 352 | /* |
| 353 | * this is only called by cache_block_group, since we could have freed extents |
| 354 | * we need to check the pinned_extents for any extents that can't be used yet |
| 355 | * since their free space will be released as soon as the transaction commits. |
| 356 | */ |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 357 | u64 add_new_free_space(struct btrfs_block_group_cache *block_group, |
| 358 | struct btrfs_fs_info *info, u64 start, u64 end) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 359 | { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 360 | u64 extent_start, extent_end, size, total_added = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 361 | int ret; |
| 362 | |
| 363 | while (start < end) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 364 | ret = find_first_extent_bit(info->pinned_extents, start, |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 365 | &extent_start, &extent_end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 366 | EXTENT_DIRTY | EXTENT_UPTODATE, |
| 367 | NULL); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 368 | if (ret) |
| 369 | break; |
| 370 | |
Yan, Zheng | 06b2331 | 2009-11-26 09:31:11 +0000 | [diff] [blame] | 371 | if (extent_start <= start) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 372 | start = extent_end + 1; |
| 373 | } else if (extent_start > start && extent_start < end) { |
| 374 | size = extent_start - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 375 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 376 | ret = btrfs_add_free_space(block_group, start, |
| 377 | size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 378 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 379 | start = extent_end + 1; |
| 380 | } else { |
| 381 | break; |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | if (start < end) { |
| 386 | size = end - start; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 387 | total_added += size; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 388 | ret = btrfs_add_free_space(block_group, start, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 389 | BUG_ON(ret); /* -ENOMEM or logic error */ |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 390 | } |
| 391 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 392 | return total_added; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 393 | } |
| 394 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 395 | static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 396 | { |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 397 | struct btrfs_block_group_cache *block_group; |
| 398 | struct btrfs_fs_info *fs_info; |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 399 | struct btrfs_root *extent_root; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 400 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 401 | struct extent_buffer *leaf; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 402 | struct btrfs_key key; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 403 | u64 total_found = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 404 | u64 last = 0; |
| 405 | u32 nritems; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 406 | int ret; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 407 | bool wakeup = true; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 408 | |
Josef Bacik | bab39bf | 2011-06-30 14:42:28 -0400 | [diff] [blame] | 409 | block_group = caching_ctl->block_group; |
| 410 | fs_info = block_group->fs_info; |
| 411 | extent_root = fs_info->extent_root; |
| 412 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 413 | path = btrfs_alloc_path(); |
| 414 | if (!path) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 415 | return -ENOMEM; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 416 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 417 | last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 418 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 419 | #ifdef CONFIG_BTRFS_DEBUG |
| 420 | /* |
| 421 | * If we're fragmenting we don't want to make anybody think we can |
| 422 | * allocate from this block group until we've had a chance to fragment |
| 423 | * the free space. |
| 424 | */ |
| 425 | if (btrfs_should_fragment_free_space(extent_root, block_group)) |
| 426 | wakeup = false; |
| 427 | #endif |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 428 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 429 | * We don't want to deadlock with somebody trying to allocate a new |
| 430 | * extent for the extent root while also trying to search the extent |
| 431 | * root to add free space. So we skip locking and search the commit |
| 432 | * root, since its read-only |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 433 | */ |
| 434 | path->skip_locking = 1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 435 | path->search_commit_root = 1; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 436 | path->reada = READA_FORWARD; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 437 | |
Yan Zheng | e4404d6 | 2008-12-12 10:03:26 -0500 | [diff] [blame] | 438 | key.objectid = last; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 439 | key.offset = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 440 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 013f1b1 | 2009-07-31 14:57:55 -0400 | [diff] [blame] | 441 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 442 | next: |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 443 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 444 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 445 | goto out; |
Yan Zheng | a512bbf | 2008-12-08 16:46:26 -0500 | [diff] [blame] | 446 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 447 | leaf = path->nodes[0]; |
| 448 | nritems = btrfs_header_nritems(leaf); |
| 449 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 450 | while (1) { |
David Sterba | 7841cb2 | 2011-05-31 18:07:27 +0200 | [diff] [blame] | 451 | if (btrfs_fs_closing(fs_info) > 1) { |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 452 | last = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 453 | break; |
Yan Zheng | f25784b | 2009-07-28 08:41:57 -0400 | [diff] [blame] | 454 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 455 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 456 | if (path->slots[0] < nritems) { |
| 457 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 458 | } else { |
| 459 | ret = find_next_key(path, 0, &key); |
| 460 | if (ret) |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 461 | break; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 462 | |
Josef Bacik | c9ea7b2 | 2013-09-19 10:02:11 -0400 | [diff] [blame] | 463 | if (need_resched() || |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 464 | rwsem_is_contended(&fs_info->commit_root_sem)) { |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 465 | if (wakeup) |
| 466 | caching_ctl->progress = last; |
Chris Mason | ff5714c | 2011-05-28 07:00:39 -0400 | [diff] [blame] | 467 | btrfs_release_path(path); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 468 | up_read(&fs_info->commit_root_sem); |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 469 | mutex_unlock(&caching_ctl->mutex); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 470 | cond_resched(); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 471 | mutex_lock(&caching_ctl->mutex); |
| 472 | down_read(&fs_info->commit_root_sem); |
| 473 | goto next; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 474 | } |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 475 | |
| 476 | ret = btrfs_next_leaf(extent_root, path); |
| 477 | if (ret < 0) |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 478 | goto out; |
Josef Bacik | 0a3896d | 2013-04-19 14:37:26 -0400 | [diff] [blame] | 479 | if (ret) |
| 480 | break; |
Josef Bacik | 589d8ad | 2011-05-11 17:30:53 -0400 | [diff] [blame] | 481 | leaf = path->nodes[0]; |
| 482 | nritems = btrfs_header_nritems(leaf); |
| 483 | continue; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 484 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 485 | |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 486 | if (key.objectid < last) { |
| 487 | key.objectid = last; |
| 488 | key.offset = 0; |
| 489 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 490 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 491 | if (wakeup) |
| 492 | caching_ctl->progress = last; |
Liu Bo | 52ee28d | 2013-07-11 17:51:15 +0800 | [diff] [blame] | 493 | btrfs_release_path(path); |
| 494 | goto next; |
| 495 | } |
| 496 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 497 | if (key.objectid < block_group->key.objectid) { |
| 498 | path->slots[0]++; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 499 | continue; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 500 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 501 | |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 502 | if (key.objectid >= block_group->key.objectid + |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 503 | block_group->key.offset) |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 504 | break; |
Yan | 7d7d606 | 2007-09-14 16:15:28 -0400 | [diff] [blame] | 505 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 506 | if (key.type == BTRFS_EXTENT_ITEM_KEY || |
| 507 | key.type == BTRFS_METADATA_ITEM_KEY) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 508 | total_found += add_new_free_space(block_group, |
| 509 | fs_info, last, |
| 510 | key.objectid); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 511 | if (key.type == BTRFS_METADATA_ITEM_KEY) |
| 512 | last = key.objectid + |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 513 | fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 514 | else |
| 515 | last = key.objectid + key.offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 516 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 517 | if (total_found > CACHING_CTL_WAKE_UP) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 518 | total_found = 0; |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 519 | if (wakeup) |
| 520 | wake_up(&caching_ctl->wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 521 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 522 | } |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 523 | path->slots[0]++; |
| 524 | } |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 525 | ret = 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 526 | |
| 527 | total_found += add_new_free_space(block_group, fs_info, last, |
| 528 | block_group->key.objectid + |
| 529 | block_group->key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 530 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 531 | |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 532 | out: |
| 533 | btrfs_free_path(path); |
| 534 | return ret; |
| 535 | } |
| 536 | |
| 537 | static noinline void caching_thread(struct btrfs_work *work) |
| 538 | { |
| 539 | struct btrfs_block_group_cache *block_group; |
| 540 | struct btrfs_fs_info *fs_info; |
| 541 | struct btrfs_caching_control *caching_ctl; |
Chris Mason | b4570aa | 2015-12-30 07:37:26 -0800 | [diff] [blame] | 542 | struct btrfs_root *extent_root; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 543 | int ret; |
| 544 | |
| 545 | caching_ctl = container_of(work, struct btrfs_caching_control, work); |
| 546 | block_group = caching_ctl->block_group; |
| 547 | fs_info = block_group->fs_info; |
Chris Mason | b4570aa | 2015-12-30 07:37:26 -0800 | [diff] [blame] | 548 | extent_root = fs_info->extent_root; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 549 | |
| 550 | mutex_lock(&caching_ctl->mutex); |
| 551 | down_read(&fs_info->commit_root_sem); |
| 552 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 553 | if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) |
| 554 | ret = load_free_space_tree(caching_ctl); |
| 555 | else |
| 556 | ret = load_extent_tree_free(caching_ctl); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 557 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 558 | spin_lock(&block_group->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 559 | block_group->caching_ctl = NULL; |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 560 | block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 561 | spin_unlock(&block_group->lock); |
| 562 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 563 | #ifdef CONFIG_BTRFS_DEBUG |
| 564 | if (btrfs_should_fragment_free_space(extent_root, block_group)) { |
| 565 | u64 bytes_used; |
| 566 | |
| 567 | spin_lock(&block_group->space_info->lock); |
| 568 | spin_lock(&block_group->lock); |
| 569 | bytes_used = block_group->key.offset - |
| 570 | btrfs_block_group_used(&block_group->item); |
| 571 | block_group->space_info->bytes_used += bytes_used >> 1; |
| 572 | spin_unlock(&block_group->lock); |
| 573 | spin_unlock(&block_group->space_info->lock); |
| 574 | fragment_free_space(extent_root, block_group); |
| 575 | } |
| 576 | #endif |
| 577 | |
| 578 | caching_ctl->progress = (u64)-1; |
Chris Mason | f7d3d2f | 2015-12-18 11:11:10 -0800 | [diff] [blame] | 579 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 580 | up_read(&fs_info->commit_root_sem); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 581 | free_excluded_extents(fs_info->extent_root, block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 582 | mutex_unlock(&caching_ctl->mutex); |
Omar Sandoval | 73fa48b | 2015-09-29 20:50:33 -0700 | [diff] [blame] | 583 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 584 | wake_up(&caching_ctl->wait); |
| 585 | |
| 586 | put_caching_control(caching_ctl); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 587 | btrfs_put_block_group(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 588 | } |
| 589 | |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 590 | static int cache_block_group(struct btrfs_block_group_cache *cache, |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 591 | int load_cache_only) |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 592 | { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 593 | DEFINE_WAIT(wait); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 594 | struct btrfs_fs_info *fs_info = cache->fs_info; |
| 595 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 596 | int ret = 0; |
| 597 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 598 | caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 599 | if (!caching_ctl) |
| 600 | return -ENOMEM; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 601 | |
| 602 | INIT_LIST_HEAD(&caching_ctl->list); |
| 603 | mutex_init(&caching_ctl->mutex); |
| 604 | init_waitqueue_head(&caching_ctl->wait); |
| 605 | caching_ctl->block_group = cache; |
| 606 | caching_ctl->progress = cache->key.objectid; |
| 607 | atomic_set(&caching_ctl->count, 1); |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 608 | btrfs_init_work(&caching_ctl->work, btrfs_cache_helper, |
| 609 | caching_thread, NULL, NULL); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 610 | |
| 611 | spin_lock(&cache->lock); |
| 612 | /* |
| 613 | * This should be a rare occasion, but this could happen I think in the |
| 614 | * case where one thread starts to load the space cache info, and then |
| 615 | * some other thread starts a transaction commit which tries to do an |
| 616 | * allocation while the other thread is still loading the space cache |
| 617 | * info. The previous loop should have kept us from choosing this block |
| 618 | * group, but if we've moved to the state where we will wait on caching |
| 619 | * block groups we need to first check if we're doing a fast load here, |
| 620 | * so we can wait for it to finish, otherwise we could end up allocating |
| 621 | * from a block group who's cache gets evicted for one reason or |
| 622 | * another. |
| 623 | */ |
| 624 | while (cache->cached == BTRFS_CACHE_FAST) { |
| 625 | struct btrfs_caching_control *ctl; |
| 626 | |
| 627 | ctl = cache->caching_ctl; |
| 628 | atomic_inc(&ctl->count); |
| 629 | prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 630 | spin_unlock(&cache->lock); |
| 631 | |
| 632 | schedule(); |
| 633 | |
| 634 | finish_wait(&ctl->wait, &wait); |
| 635 | put_caching_control(ctl); |
| 636 | spin_lock(&cache->lock); |
| 637 | } |
| 638 | |
| 639 | if (cache->cached != BTRFS_CACHE_NO) { |
| 640 | spin_unlock(&cache->lock); |
| 641 | kfree(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 642 | return 0; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 643 | } |
| 644 | WARN_ON(cache->caching_ctl); |
| 645 | cache->caching_ctl = caching_ctl; |
| 646 | cache->cached = BTRFS_CACHE_FAST; |
| 647 | spin_unlock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 648 | |
Josef Bacik | d53ba47 | 2012-04-12 16:03:57 -0400 | [diff] [blame] | 649 | if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) { |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 650 | mutex_lock(&caching_ctl->mutex); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 651 | ret = load_free_space_cache(fs_info, cache); |
| 652 | |
| 653 | spin_lock(&cache->lock); |
| 654 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 655 | cache->caching_ctl = NULL; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 656 | cache->cached = BTRFS_CACHE_FINISHED; |
| 657 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 658 | caching_ctl->progress = (u64)-1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 659 | } else { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 660 | if (load_cache_only) { |
| 661 | cache->caching_ctl = NULL; |
| 662 | cache->cached = BTRFS_CACHE_NO; |
| 663 | } else { |
| 664 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 665 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 666 | } |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 667 | } |
| 668 | spin_unlock(&cache->lock); |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 669 | #ifdef CONFIG_BTRFS_DEBUG |
| 670 | if (ret == 1 && |
| 671 | btrfs_should_fragment_free_space(fs_info->extent_root, |
| 672 | cache)) { |
| 673 | u64 bytes_used; |
| 674 | |
| 675 | spin_lock(&cache->space_info->lock); |
| 676 | spin_lock(&cache->lock); |
| 677 | bytes_used = cache->key.offset - |
| 678 | btrfs_block_group_used(&cache->item); |
| 679 | cache->space_info->bytes_used += bytes_used >> 1; |
| 680 | spin_unlock(&cache->lock); |
| 681 | spin_unlock(&cache->space_info->lock); |
| 682 | fragment_free_space(fs_info->extent_root, cache); |
| 683 | } |
| 684 | #endif |
Josef Bacik | cb83b7b | 2014-11-26 11:52:54 -0500 | [diff] [blame] | 685 | mutex_unlock(&caching_ctl->mutex); |
| 686 | |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 687 | wake_up(&caching_ctl->wait); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 688 | if (ret == 1) { |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 689 | put_caching_control(caching_ctl); |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 690 | free_excluded_extents(fs_info->extent_root, cache); |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 691 | return 0; |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 692 | } |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 693 | } else { |
| 694 | /* |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 695 | * We're either using the free space tree or no caching at all. |
| 696 | * Set cached to the appropriate value and wakeup any waiters. |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 697 | */ |
| 698 | spin_lock(&cache->lock); |
| 699 | if (load_cache_only) { |
| 700 | cache->caching_ctl = NULL; |
| 701 | cache->cached = BTRFS_CACHE_NO; |
| 702 | } else { |
| 703 | cache->cached = BTRFS_CACHE_STARTED; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 704 | cache->has_caching_ctl = 1; |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 705 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 706 | spin_unlock(&cache->lock); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 707 | wake_up(&caching_ctl->wait); |
| 708 | } |
| 709 | |
| 710 | if (load_cache_only) { |
| 711 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 712 | return 0; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 713 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 714 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 715 | down_write(&fs_info->commit_root_sem); |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 716 | atomic_inc(&caching_ctl->count); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 717 | list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups); |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 718 | up_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 719 | |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 720 | btrfs_get_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 721 | |
Qu Wenruo | e66f0bb | 2014-02-28 10:46:12 +0800 | [diff] [blame] | 722 | btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 723 | |
Josef Bacik | ef8bbdf | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 724 | return ret; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 725 | } |
| 726 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 727 | /* |
| 728 | * return the block group that starts at or after bytenr |
| 729 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 730 | static struct btrfs_block_group_cache * |
| 731 | btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr) |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 732 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 733 | return block_group_cache_tree_search(info, bytenr, 0); |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 734 | } |
| 735 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 736 | /* |
Sankar P | 9f55684 | 2009-05-14 13:52:22 -0400 | [diff] [blame] | 737 | * return the block group that contains the given bytenr |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 738 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 739 | struct btrfs_block_group_cache *btrfs_lookup_block_group( |
| 740 | struct btrfs_fs_info *info, |
| 741 | u64 bytenr) |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 742 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 743 | return block_group_cache_tree_search(info, bytenr, 1); |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 744 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 745 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 746 | static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info, |
| 747 | u64 flags) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 748 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 749 | struct list_head *head = &info->space_info; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 750 | struct btrfs_space_info *found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 751 | |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 752 | flags &= BTRFS_BLOCK_GROUP_TYPE_MASK; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 753 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 754 | rcu_read_lock(); |
| 755 | list_for_each_entry_rcu(found, head, list) { |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 756 | if (found->flags & flags) { |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 757 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 758 | return found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 759 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 760 | } |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 761 | rcu_read_unlock(); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 762 | return NULL; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 763 | } |
| 764 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 765 | /* |
| 766 | * after adding space to the filesystem, we need to clear the full flags |
| 767 | * on all the space infos. |
| 768 | */ |
| 769 | void btrfs_clear_space_info_full(struct btrfs_fs_info *info) |
| 770 | { |
| 771 | struct list_head *head = &info->space_info; |
| 772 | struct btrfs_space_info *found; |
| 773 | |
| 774 | rcu_read_lock(); |
| 775 | list_for_each_entry_rcu(found, head, list) |
| 776 | found->full = 0; |
| 777 | rcu_read_unlock(); |
| 778 | } |
| 779 | |
Filipe Manana | 1a4ed8f | 2014-10-27 10:44:24 +0000 | [diff] [blame] | 780 | /* simple helper to search for an existing data extent at a given offset */ |
| 781 | int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 782 | { |
| 783 | int ret; |
| 784 | struct btrfs_key key; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 785 | struct btrfs_path *path; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 786 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 787 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 788 | if (!path) |
| 789 | return -ENOMEM; |
| 790 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 791 | key.objectid = start; |
| 792 | key.offset = len; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 793 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 794 | ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path, |
| 795 | 0, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 796 | btrfs_free_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 797 | return ret; |
| 798 | } |
| 799 | |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 800 | /* |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 801 | * helper function to lookup reference count and flags of a tree block. |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 802 | * |
| 803 | * the head node for delayed ref is used to store the sum of all the |
| 804 | * reference count modifications queued up in the rbtree. the head |
| 805 | * node may also store the extent flags to set. This way you can check |
| 806 | * to see what the reference count and extent flags would be if all of |
| 807 | * the delayed refs are not processed. |
| 808 | */ |
| 809 | int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans, |
| 810 | struct btrfs_root *root, u64 bytenr, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 811 | u64 offset, int metadata, u64 *refs, u64 *flags) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 812 | { |
| 813 | struct btrfs_delayed_ref_head *head; |
| 814 | struct btrfs_delayed_ref_root *delayed_refs; |
| 815 | struct btrfs_path *path; |
| 816 | struct btrfs_extent_item *ei; |
| 817 | struct extent_buffer *leaf; |
| 818 | struct btrfs_key key; |
| 819 | u32 item_size; |
| 820 | u64 num_refs; |
| 821 | u64 extent_flags; |
| 822 | int ret; |
| 823 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 824 | /* |
| 825 | * If we don't have skinny metadata, don't bother doing anything |
| 826 | * different |
| 827 | */ |
| 828 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) { |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 829 | offset = root->fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 830 | metadata = 0; |
| 831 | } |
| 832 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 833 | path = btrfs_alloc_path(); |
| 834 | if (!path) |
| 835 | return -ENOMEM; |
| 836 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 837 | if (!trans) { |
| 838 | path->skip_locking = 1; |
| 839 | path->search_commit_root = 1; |
| 840 | } |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 841 | |
| 842 | search_again: |
| 843 | key.objectid = bytenr; |
| 844 | key.offset = offset; |
| 845 | if (metadata) |
| 846 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 847 | else |
| 848 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 849 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 850 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, |
| 851 | &key, path, 0, 0); |
| 852 | if (ret < 0) |
| 853 | goto out_free; |
| 854 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 855 | if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) { |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 856 | if (path->slots[0]) { |
| 857 | path->slots[0]--; |
| 858 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 859 | path->slots[0]); |
| 860 | if (key.objectid == bytenr && |
| 861 | key.type == BTRFS_EXTENT_ITEM_KEY && |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 862 | key.offset == root->fs_info->nodesize) |
Filipe David Borba Manana | 74be951 | 2013-07-05 23:12:06 +0100 | [diff] [blame] | 863 | ret = 0; |
| 864 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 865 | } |
| 866 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 867 | if (ret == 0) { |
| 868 | leaf = path->nodes[0]; |
| 869 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 870 | if (item_size >= sizeof(*ei)) { |
| 871 | ei = btrfs_item_ptr(leaf, path->slots[0], |
| 872 | struct btrfs_extent_item); |
| 873 | num_refs = btrfs_extent_refs(leaf, ei); |
| 874 | extent_flags = btrfs_extent_flags(leaf, ei); |
| 875 | } else { |
| 876 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 877 | struct btrfs_extent_item_v0 *ei0; |
| 878 | BUG_ON(item_size != sizeof(*ei0)); |
| 879 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 880 | struct btrfs_extent_item_v0); |
| 881 | num_refs = btrfs_extent_refs_v0(leaf, ei0); |
| 882 | /* FIXME: this isn't correct for data */ |
| 883 | extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 884 | #else |
| 885 | BUG(); |
| 886 | #endif |
| 887 | } |
| 888 | BUG_ON(num_refs == 0); |
| 889 | } else { |
| 890 | num_refs = 0; |
| 891 | extent_flags = 0; |
| 892 | ret = 0; |
| 893 | } |
| 894 | |
| 895 | if (!trans) |
| 896 | goto out; |
| 897 | |
| 898 | delayed_refs = &trans->transaction->delayed_refs; |
| 899 | spin_lock(&delayed_refs->lock); |
| 900 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 901 | if (head) { |
| 902 | if (!mutex_trylock(&head->mutex)) { |
| 903 | atomic_inc(&head->node.refs); |
| 904 | spin_unlock(&delayed_refs->lock); |
| 905 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 906 | btrfs_release_path(path); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 907 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 908 | /* |
| 909 | * Mutex was contended, block until it's released and try |
| 910 | * again |
| 911 | */ |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 912 | mutex_lock(&head->mutex); |
| 913 | mutex_unlock(&head->mutex); |
| 914 | btrfs_put_delayed_ref(&head->node); |
Filipe David Borba Manana | 639eefc | 2013-12-08 00:26:29 +0000 | [diff] [blame] | 915 | goto search_again; |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 916 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 917 | spin_lock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 918 | if (head->extent_op && head->extent_op->update_flags) |
| 919 | extent_flags |= head->extent_op->flags_to_set; |
| 920 | else |
| 921 | BUG_ON(num_refs == 0); |
| 922 | |
| 923 | num_refs += head->node.ref_mod; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 924 | spin_unlock(&head->lock); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 925 | mutex_unlock(&head->mutex); |
| 926 | } |
| 927 | spin_unlock(&delayed_refs->lock); |
| 928 | out: |
| 929 | WARN_ON(num_refs == 0); |
| 930 | if (refs) |
| 931 | *refs = num_refs; |
| 932 | if (flags) |
| 933 | *flags = extent_flags; |
| 934 | out_free: |
| 935 | btrfs_free_path(path); |
| 936 | return ret; |
| 937 | } |
| 938 | |
| 939 | /* |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 940 | * Back reference rules. Back refs have three main goals: |
| 941 | * |
| 942 | * 1) differentiate between all holders of references to an extent so that |
| 943 | * when a reference is dropped we can make sure it was a valid reference |
| 944 | * before freeing the extent. |
| 945 | * |
| 946 | * 2) Provide enough information to quickly find the holders of an extent |
| 947 | * if we notice a given block is corrupted or bad. |
| 948 | * |
| 949 | * 3) Make it easy to migrate blocks for FS shrinking or storage pool |
| 950 | * maintenance. This is actually the same as #2, but with a slightly |
| 951 | * different use case. |
| 952 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 953 | * There are two kinds of back refs. The implicit back refs is optimized |
| 954 | * for pointers in non-shared tree blocks. For a given pointer in a block, |
| 955 | * back refs of this kind provide information about the block's owner tree |
| 956 | * and the pointer's key. These information allow us to find the block by |
| 957 | * b-tree searching. The full back refs is for pointers in tree blocks not |
| 958 | * referenced by their owner trees. The location of tree block is recorded |
| 959 | * in the back refs. Actually the full back refs is generic, and can be |
| 960 | * used in all cases the implicit back refs is used. The major shortcoming |
| 961 | * of the full back refs is its overhead. Every time a tree block gets |
| 962 | * COWed, we have to update back refs entry for all pointers in it. |
| 963 | * |
| 964 | * For a newly allocated tree block, we use implicit back refs for |
| 965 | * pointers in it. This means most tree related operations only involve |
| 966 | * implicit back refs. For a tree block created in old transaction, the |
| 967 | * only way to drop a reference to it is COW it. So we can detect the |
| 968 | * event that tree block loses its owner tree's reference and do the |
| 969 | * back refs conversion. |
| 970 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 971 | * 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] | 972 | * |
| 973 | * The reference count of the block is one and the tree is the block's |
| 974 | * owner tree. Nothing to do in this case. |
| 975 | * |
| 976 | * The reference count of the block is one and the tree is not the |
| 977 | * block's owner tree. In this case, full back refs is used for pointers |
| 978 | * in the block. Remove these full back refs, add implicit back refs for |
| 979 | * every pointers in the new block. |
| 980 | * |
| 981 | * The reference count of the block is greater than one and the tree is |
| 982 | * the block's owner tree. In this case, implicit back refs is used for |
| 983 | * pointers in the block. Add full back refs for every pointers in the |
| 984 | * block, increase lower level extents' reference counts. The original |
| 985 | * implicit back refs are entailed to the new block. |
| 986 | * |
| 987 | * The reference count of the block is greater than one and the tree is |
| 988 | * not the block's owner tree. Add implicit back refs for every pointer in |
| 989 | * the new block, increase lower level extents' reference count. |
| 990 | * |
| 991 | * Back Reference Key composing: |
| 992 | * |
| 993 | * The key objectid corresponds to the first byte in the extent, |
| 994 | * The key type is used to differentiate between types of back refs. |
| 995 | * There are different meanings of the key offset for different types |
| 996 | * of back refs. |
| 997 | * |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 998 | * File extents can be referenced by: |
| 999 | * |
| 1000 | * - multiple snapshots, subvolumes, or different generations in one subvol |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1001 | * - different files inside a single subvolume |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1002 | * - different offsets inside a file (bookend extents in file.c) |
| 1003 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1004 | * The extent ref structure for the implicit back refs has fields for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1005 | * |
| 1006 | * - Objectid of the subvolume root |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1007 | * - objectid of the file holding the reference |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1008 | * - original offset in the file |
| 1009 | * - how many bookend extents |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1010 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1011 | * The key offset for the implicit back refs is hash of the first |
| 1012 | * three fields. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1013 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1014 | * The extent ref structure for the full back refs has field for: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1015 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1016 | * - number of pointers in the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1017 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1018 | * The key offset for the implicit back refs is the first byte of |
| 1019 | * the tree leaf |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1020 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1021 | * When a file extent is allocated, The implicit back refs is used. |
| 1022 | * the fields are filled in: |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1023 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1024 | * (root_key.objectid, inode objectid, offset in file, 1) |
| 1025 | * |
| 1026 | * When a file extent is removed file truncation, we find the |
| 1027 | * corresponding implicit back refs and check the following fields: |
| 1028 | * |
| 1029 | * (btrfs_header_owner(leaf), inode objectid, offset in file) |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1030 | * |
| 1031 | * Btree extents can be referenced by: |
| 1032 | * |
| 1033 | * - Different subvolumes |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1034 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1035 | * Both the implicit back refs and the full back refs for tree blocks |
| 1036 | * only consist of key. The key offset for the implicit back refs is |
| 1037 | * objectid of block's owner tree. The key offset for the full back refs |
| 1038 | * is the first byte of parent block. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1039 | * |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1040 | * When implicit back refs is used, information about the lowest key and |
| 1041 | * level of the tree block are required. These information are stored in |
| 1042 | * tree block info structure. |
Chris Mason | d8d5f3e | 2007-12-11 12:42:00 -0500 | [diff] [blame] | 1043 | */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1044 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1045 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1046 | static int convert_extent_item_v0(struct btrfs_trans_handle *trans, |
| 1047 | struct btrfs_root *root, |
| 1048 | struct btrfs_path *path, |
| 1049 | u64 owner, u32 extra_size) |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1050 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1051 | struct btrfs_extent_item *item; |
| 1052 | struct btrfs_extent_item_v0 *ei0; |
| 1053 | struct btrfs_extent_ref_v0 *ref0; |
| 1054 | struct btrfs_tree_block_info *bi; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1055 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1056 | struct btrfs_key key; |
| 1057 | struct btrfs_key found_key; |
| 1058 | u32 new_size = sizeof(*item); |
| 1059 | u64 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1060 | int ret; |
| 1061 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1062 | leaf = path->nodes[0]; |
| 1063 | BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0)); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1064 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1065 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1066 | ei0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1067 | struct btrfs_extent_item_v0); |
| 1068 | refs = btrfs_extent_refs_v0(leaf, ei0); |
| 1069 | |
| 1070 | if (owner == (u64)-1) { |
| 1071 | while (1) { |
| 1072 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
| 1073 | ret = btrfs_next_leaf(root, path); |
| 1074 | if (ret < 0) |
| 1075 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1076 | BUG_ON(ret > 0); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1077 | leaf = path->nodes[0]; |
| 1078 | } |
| 1079 | btrfs_item_key_to_cpu(leaf, &found_key, |
| 1080 | path->slots[0]); |
| 1081 | BUG_ON(key.objectid != found_key.objectid); |
| 1082 | if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) { |
| 1083 | path->slots[0]++; |
| 1084 | continue; |
| 1085 | } |
| 1086 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1087 | struct btrfs_extent_ref_v0); |
| 1088 | owner = btrfs_ref_objectid_v0(leaf, ref0); |
| 1089 | break; |
| 1090 | } |
| 1091 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1092 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1093 | |
| 1094 | if (owner < BTRFS_FIRST_FREE_OBJECTID) |
| 1095 | new_size += sizeof(*bi); |
| 1096 | |
| 1097 | new_size -= sizeof(*ei0); |
| 1098 | ret = btrfs_search_slot(trans, root, &key, path, |
| 1099 | new_size + extra_size, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1100 | if (ret < 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1101 | return ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1102 | BUG_ON(ret); /* Corruption */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1103 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1104 | btrfs_extend_item(root, path, new_size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1105 | |
| 1106 | leaf = path->nodes[0]; |
| 1107 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1108 | btrfs_set_extent_refs(leaf, item, refs); |
| 1109 | /* FIXME: get real generation */ |
| 1110 | btrfs_set_extent_generation(leaf, item, 0); |
| 1111 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1112 | btrfs_set_extent_flags(leaf, item, |
| 1113 | BTRFS_EXTENT_FLAG_TREE_BLOCK | |
| 1114 | BTRFS_BLOCK_FLAG_FULL_BACKREF); |
| 1115 | bi = (struct btrfs_tree_block_info *)(item + 1); |
| 1116 | /* FIXME: get first key of the block */ |
David Sterba | b159fa2 | 2016-11-08 18:09:03 +0100 | [diff] [blame] | 1117 | memzero_extent_buffer(leaf, (unsigned long)bi, sizeof(*bi)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1118 | btrfs_set_tree_block_level(leaf, bi, (int)owner); |
| 1119 | } else { |
| 1120 | btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA); |
| 1121 | } |
| 1122 | btrfs_mark_buffer_dirty(leaf); |
| 1123 | return 0; |
| 1124 | } |
| 1125 | #endif |
| 1126 | |
| 1127 | static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset) |
| 1128 | { |
| 1129 | u32 high_crc = ~(u32)0; |
| 1130 | u32 low_crc = ~(u32)0; |
| 1131 | __le64 lenum; |
| 1132 | |
| 1133 | lenum = cpu_to_le64(root_objectid); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1134 | high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1135 | lenum = cpu_to_le64(owner); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1136 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1137 | lenum = cpu_to_le64(offset); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1138 | low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1139 | |
| 1140 | return ((u64)high_crc << 31) ^ (u64)low_crc; |
| 1141 | } |
| 1142 | |
| 1143 | static u64 hash_extent_data_ref_item(struct extent_buffer *leaf, |
| 1144 | struct btrfs_extent_data_ref *ref) |
| 1145 | { |
| 1146 | return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref), |
| 1147 | btrfs_extent_data_ref_objectid(leaf, ref), |
| 1148 | btrfs_extent_data_ref_offset(leaf, ref)); |
| 1149 | } |
| 1150 | |
| 1151 | static int match_extent_data_ref(struct extent_buffer *leaf, |
| 1152 | struct btrfs_extent_data_ref *ref, |
| 1153 | u64 root_objectid, u64 owner, u64 offset) |
| 1154 | { |
| 1155 | if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid || |
| 1156 | btrfs_extent_data_ref_objectid(leaf, ref) != owner || |
| 1157 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 1158 | return 0; |
| 1159 | return 1; |
| 1160 | } |
| 1161 | |
| 1162 | static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1163 | struct btrfs_root *root, |
| 1164 | struct btrfs_path *path, |
| 1165 | u64 bytenr, u64 parent, |
| 1166 | u64 root_objectid, |
| 1167 | u64 owner, u64 offset) |
| 1168 | { |
| 1169 | struct btrfs_key key; |
| 1170 | struct btrfs_extent_data_ref *ref; |
| 1171 | struct extent_buffer *leaf; |
| 1172 | u32 nritems; |
| 1173 | int ret; |
| 1174 | int recow; |
| 1175 | int err = -ENOENT; |
| 1176 | |
| 1177 | key.objectid = bytenr; |
| 1178 | if (parent) { |
| 1179 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1180 | key.offset = parent; |
| 1181 | } else { |
| 1182 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1183 | key.offset = hash_extent_data_ref(root_objectid, |
| 1184 | owner, offset); |
| 1185 | } |
| 1186 | again: |
| 1187 | recow = 0; |
| 1188 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1189 | if (ret < 0) { |
| 1190 | err = ret; |
| 1191 | goto fail; |
| 1192 | } |
| 1193 | |
| 1194 | if (parent) { |
| 1195 | if (!ret) |
| 1196 | return 0; |
| 1197 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1198 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1199 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1200 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1201 | if (ret < 0) { |
| 1202 | err = ret; |
| 1203 | goto fail; |
| 1204 | } |
| 1205 | if (!ret) |
| 1206 | return 0; |
| 1207 | #endif |
| 1208 | goto fail; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1209 | } |
| 1210 | |
| 1211 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1212 | nritems = btrfs_header_nritems(leaf); |
| 1213 | while (1) { |
| 1214 | if (path->slots[0] >= nritems) { |
| 1215 | ret = btrfs_next_leaf(root, path); |
| 1216 | if (ret < 0) |
| 1217 | err = ret; |
| 1218 | if (ret) |
| 1219 | goto fail; |
| 1220 | |
| 1221 | leaf = path->nodes[0]; |
| 1222 | nritems = btrfs_header_nritems(leaf); |
| 1223 | recow = 1; |
| 1224 | } |
| 1225 | |
| 1226 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1227 | if (key.objectid != bytenr || |
| 1228 | key.type != BTRFS_EXTENT_DATA_REF_KEY) |
| 1229 | goto fail; |
| 1230 | |
| 1231 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1232 | struct btrfs_extent_data_ref); |
| 1233 | |
| 1234 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1235 | owner, offset)) { |
| 1236 | if (recow) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1237 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1238 | goto again; |
| 1239 | } |
| 1240 | err = 0; |
| 1241 | break; |
| 1242 | } |
| 1243 | path->slots[0]++; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1244 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1245 | fail: |
| 1246 | return err; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1247 | } |
| 1248 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1249 | static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1250 | struct btrfs_root *root, |
| 1251 | struct btrfs_path *path, |
| 1252 | u64 bytenr, u64 parent, |
| 1253 | u64 root_objectid, u64 owner, |
| 1254 | u64 offset, int refs_to_add) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1255 | { |
| 1256 | struct btrfs_key key; |
| 1257 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1258 | u32 size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1259 | u32 num_refs; |
| 1260 | int ret; |
| 1261 | |
| 1262 | key.objectid = bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1263 | if (parent) { |
| 1264 | key.type = BTRFS_SHARED_DATA_REF_KEY; |
| 1265 | key.offset = parent; |
| 1266 | size = sizeof(struct btrfs_shared_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1267 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1268 | key.type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1269 | key.offset = hash_extent_data_ref(root_objectid, |
| 1270 | owner, offset); |
| 1271 | size = sizeof(struct btrfs_extent_data_ref); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1272 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1273 | |
| 1274 | ret = btrfs_insert_empty_item(trans, root, path, &key, size); |
| 1275 | if (ret && ret != -EEXIST) |
| 1276 | goto fail; |
| 1277 | |
| 1278 | leaf = path->nodes[0]; |
| 1279 | if (parent) { |
| 1280 | struct btrfs_shared_data_ref *ref; |
| 1281 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1282 | struct btrfs_shared_data_ref); |
| 1283 | if (ret == 0) { |
| 1284 | btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add); |
| 1285 | } else { |
| 1286 | num_refs = btrfs_shared_data_ref_count(leaf, ref); |
| 1287 | num_refs += refs_to_add; |
| 1288 | btrfs_set_shared_data_ref_count(leaf, ref, num_refs); |
| 1289 | } |
| 1290 | } else { |
| 1291 | struct btrfs_extent_data_ref *ref; |
| 1292 | while (ret == -EEXIST) { |
| 1293 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1294 | struct btrfs_extent_data_ref); |
| 1295 | if (match_extent_data_ref(leaf, ref, root_objectid, |
| 1296 | owner, offset)) |
| 1297 | break; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1298 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1299 | key.offset++; |
| 1300 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
| 1301 | size); |
| 1302 | if (ret && ret != -EEXIST) |
| 1303 | goto fail; |
| 1304 | |
| 1305 | leaf = path->nodes[0]; |
| 1306 | } |
| 1307 | ref = btrfs_item_ptr(leaf, path->slots[0], |
| 1308 | struct btrfs_extent_data_ref); |
| 1309 | if (ret == 0) { |
| 1310 | btrfs_set_extent_data_ref_root(leaf, ref, |
| 1311 | root_objectid); |
| 1312 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 1313 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 1314 | btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add); |
| 1315 | } else { |
| 1316 | num_refs = btrfs_extent_data_ref_count(leaf, ref); |
| 1317 | num_refs += refs_to_add; |
| 1318 | btrfs_set_extent_data_ref_count(leaf, ref, num_refs); |
| 1319 | } |
| 1320 | } |
| 1321 | btrfs_mark_buffer_dirty(leaf); |
| 1322 | ret = 0; |
| 1323 | fail: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1324 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1325 | return ret; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1326 | } |
| 1327 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1328 | static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans, |
| 1329 | struct btrfs_root *root, |
| 1330 | struct btrfs_path *path, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1331 | int refs_to_drop, int *last_ref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1332 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1333 | struct btrfs_key key; |
| 1334 | struct btrfs_extent_data_ref *ref1 = NULL; |
| 1335 | struct btrfs_shared_data_ref *ref2 = NULL; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1336 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1337 | u32 num_refs = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1338 | int ret = 0; |
| 1339 | |
| 1340 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1341 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1342 | |
| 1343 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1344 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1345 | struct btrfs_extent_data_ref); |
| 1346 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1347 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1348 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1349 | struct btrfs_shared_data_ref); |
| 1350 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1351 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1352 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1353 | struct btrfs_extent_ref_v0 *ref0; |
| 1354 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1355 | struct btrfs_extent_ref_v0); |
| 1356 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1357 | #endif |
| 1358 | } else { |
| 1359 | BUG(); |
| 1360 | } |
| 1361 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 1362 | BUG_ON(num_refs < refs_to_drop); |
| 1363 | num_refs -= refs_to_drop; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1364 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1365 | if (num_refs == 0) { |
| 1366 | ret = btrfs_del_item(trans, root, path); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1367 | *last_ref = 1; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1368 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1369 | if (key.type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1370 | btrfs_set_extent_data_ref_count(leaf, ref1, num_refs); |
| 1371 | else if (key.type == BTRFS_SHARED_DATA_REF_KEY) |
| 1372 | btrfs_set_shared_data_ref_count(leaf, ref2, num_refs); |
| 1373 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1374 | else { |
| 1375 | struct btrfs_extent_ref_v0 *ref0; |
| 1376 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1377 | struct btrfs_extent_ref_v0); |
| 1378 | btrfs_set_ref_count_v0(leaf, ref0, num_refs); |
| 1379 | } |
| 1380 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1381 | btrfs_mark_buffer_dirty(leaf); |
| 1382 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1383 | return ret; |
| 1384 | } |
| 1385 | |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 1386 | static noinline u32 extent_data_ref_count(struct btrfs_path *path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1387 | struct btrfs_extent_inline_ref *iref) |
| 1388 | { |
| 1389 | struct btrfs_key key; |
| 1390 | struct extent_buffer *leaf; |
| 1391 | struct btrfs_extent_data_ref *ref1; |
| 1392 | struct btrfs_shared_data_ref *ref2; |
| 1393 | u32 num_refs = 0; |
| 1394 | |
| 1395 | leaf = path->nodes[0]; |
| 1396 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 1397 | if (iref) { |
| 1398 | if (btrfs_extent_inline_ref_type(leaf, iref) == |
| 1399 | BTRFS_EXTENT_DATA_REF_KEY) { |
| 1400 | ref1 = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1401 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1402 | } else { |
| 1403 | ref2 = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1404 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1405 | } |
| 1406 | } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1407 | ref1 = btrfs_item_ptr(leaf, path->slots[0], |
| 1408 | struct btrfs_extent_data_ref); |
| 1409 | num_refs = btrfs_extent_data_ref_count(leaf, ref1); |
| 1410 | } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1411 | ref2 = btrfs_item_ptr(leaf, path->slots[0], |
| 1412 | struct btrfs_shared_data_ref); |
| 1413 | num_refs = btrfs_shared_data_ref_count(leaf, ref2); |
| 1414 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1415 | } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) { |
| 1416 | struct btrfs_extent_ref_v0 *ref0; |
| 1417 | ref0 = btrfs_item_ptr(leaf, path->slots[0], |
| 1418 | struct btrfs_extent_ref_v0); |
| 1419 | num_refs = btrfs_ref_count_v0(leaf, ref0); |
| 1420 | #endif |
| 1421 | } else { |
| 1422 | WARN_ON(1); |
| 1423 | } |
| 1424 | return num_refs; |
| 1425 | } |
| 1426 | |
| 1427 | static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1428 | struct btrfs_root *root, |
| 1429 | struct btrfs_path *path, |
| 1430 | u64 bytenr, u64 parent, |
| 1431 | u64 root_objectid) |
| 1432 | { |
| 1433 | struct btrfs_key key; |
| 1434 | int ret; |
| 1435 | |
| 1436 | key.objectid = bytenr; |
| 1437 | if (parent) { |
| 1438 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1439 | key.offset = parent; |
| 1440 | } else { |
| 1441 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1442 | key.offset = root_objectid; |
| 1443 | } |
| 1444 | |
| 1445 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1446 | if (ret > 0) |
| 1447 | ret = -ENOENT; |
| 1448 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1449 | if (ret == -ENOENT && parent) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1450 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1451 | key.type = BTRFS_EXTENT_REF_V0_KEY; |
| 1452 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 1453 | if (ret > 0) |
| 1454 | ret = -ENOENT; |
| 1455 | } |
| 1456 | #endif |
| 1457 | return ret; |
| 1458 | } |
| 1459 | |
| 1460 | static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans, |
| 1461 | struct btrfs_root *root, |
| 1462 | struct btrfs_path *path, |
| 1463 | u64 bytenr, u64 parent, |
| 1464 | u64 root_objectid) |
| 1465 | { |
| 1466 | struct btrfs_key key; |
| 1467 | int ret; |
| 1468 | |
| 1469 | key.objectid = bytenr; |
| 1470 | if (parent) { |
| 1471 | key.type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1472 | key.offset = parent; |
| 1473 | } else { |
| 1474 | key.type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1475 | key.offset = root_objectid; |
| 1476 | } |
| 1477 | |
| 1478 | ret = btrfs_insert_empty_item(trans, root, path, &key, 0); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1479 | btrfs_release_path(path); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 1480 | return ret; |
| 1481 | } |
| 1482 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1483 | static inline int extent_ref_type(u64 parent, u64 owner) |
| 1484 | { |
| 1485 | int type; |
| 1486 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1487 | if (parent > 0) |
| 1488 | type = BTRFS_SHARED_BLOCK_REF_KEY; |
| 1489 | else |
| 1490 | type = BTRFS_TREE_BLOCK_REF_KEY; |
| 1491 | } else { |
| 1492 | if (parent > 0) |
| 1493 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 1494 | else |
| 1495 | type = BTRFS_EXTENT_DATA_REF_KEY; |
| 1496 | } |
| 1497 | return type; |
| 1498 | } |
| 1499 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1500 | static int find_next_key(struct btrfs_path *path, int level, |
| 1501 | struct btrfs_key *key) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1502 | |
| 1503 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1504 | for (; level < BTRFS_MAX_LEVEL; level++) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1505 | if (!path->nodes[level]) |
| 1506 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1507 | if (path->slots[level] + 1 >= |
| 1508 | btrfs_header_nritems(path->nodes[level])) |
| 1509 | continue; |
| 1510 | if (level == 0) |
| 1511 | btrfs_item_key_to_cpu(path->nodes[level], key, |
| 1512 | path->slots[level] + 1); |
| 1513 | else |
| 1514 | btrfs_node_key_to_cpu(path->nodes[level], key, |
| 1515 | path->slots[level] + 1); |
| 1516 | return 0; |
| 1517 | } |
| 1518 | return 1; |
| 1519 | } |
| 1520 | |
| 1521 | /* |
| 1522 | * look for inline back ref. if back ref is found, *ref_ret is set |
| 1523 | * to the address of inline back ref, and 0 is returned. |
| 1524 | * |
| 1525 | * if back ref isn't found, *ref_ret is set to the address where it |
| 1526 | * should be inserted, and -ENOENT is returned. |
| 1527 | * |
| 1528 | * if insert is true and there are too many inline back refs, the path |
| 1529 | * points to the extent item, and -EAGAIN is returned. |
| 1530 | * |
| 1531 | * NOTE: inline back refs are ordered in the same way that back ref |
| 1532 | * items in the tree are ordered. |
| 1533 | */ |
| 1534 | static noinline_for_stack |
| 1535 | int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1536 | struct btrfs_root *root, |
| 1537 | struct btrfs_path *path, |
| 1538 | struct btrfs_extent_inline_ref **ref_ret, |
| 1539 | u64 bytenr, u64 num_bytes, |
| 1540 | u64 parent, u64 root_objectid, |
| 1541 | u64 owner, u64 offset, int insert) |
| 1542 | { |
| 1543 | struct btrfs_key key; |
| 1544 | struct extent_buffer *leaf; |
| 1545 | struct btrfs_extent_item *ei; |
| 1546 | struct btrfs_extent_inline_ref *iref; |
| 1547 | u64 flags; |
| 1548 | u64 item_size; |
| 1549 | unsigned long ptr; |
| 1550 | unsigned long end; |
| 1551 | int extra_size; |
| 1552 | int type; |
| 1553 | int want; |
| 1554 | int ret; |
| 1555 | int err = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1556 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 1557 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1558 | |
| 1559 | key.objectid = bytenr; |
| 1560 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1561 | key.offset = num_bytes; |
| 1562 | |
| 1563 | want = extent_ref_type(parent, owner); |
| 1564 | if (insert) { |
| 1565 | extra_size = btrfs_extent_inline_ref_size(want); |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1566 | path->keep_locks = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1567 | } else |
| 1568 | extra_size = -1; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1569 | |
| 1570 | /* |
| 1571 | * Owner is our parent level, so we can just add one to get the level |
| 1572 | * for the block we are interested in. |
| 1573 | */ |
| 1574 | if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1575 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 1576 | key.offset = owner; |
| 1577 | } |
| 1578 | |
| 1579 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1580 | ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1); |
| 1581 | if (ret < 0) { |
| 1582 | err = ret; |
| 1583 | goto out; |
| 1584 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1585 | |
| 1586 | /* |
| 1587 | * We may be a newly converted file system which still has the old fat |
| 1588 | * extent entries for metadata, so try and see if we have one of those. |
| 1589 | */ |
| 1590 | if (ret > 0 && skinny_metadata) { |
| 1591 | skinny_metadata = false; |
| 1592 | if (path->slots[0]) { |
| 1593 | path->slots[0]--; |
| 1594 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 1595 | path->slots[0]); |
| 1596 | if (key.objectid == bytenr && |
| 1597 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 1598 | key.offset == num_bytes) |
| 1599 | ret = 0; |
| 1600 | } |
| 1601 | if (ret) { |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 1602 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1603 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 1604 | key.offset = num_bytes; |
| 1605 | btrfs_release_path(path); |
| 1606 | goto again; |
| 1607 | } |
| 1608 | } |
| 1609 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1610 | if (ret && !insert) { |
| 1611 | err = -ENOENT; |
| 1612 | goto out; |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 1613 | } else if (WARN_ON(ret)) { |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1614 | err = -EIO; |
Josef Bacik | 492104c | 2013-03-08 15:41:02 -0500 | [diff] [blame] | 1615 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 1616 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1617 | |
| 1618 | leaf = path->nodes[0]; |
| 1619 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1620 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 1621 | if (item_size < sizeof(*ei)) { |
| 1622 | if (!insert) { |
| 1623 | err = -ENOENT; |
| 1624 | goto out; |
| 1625 | } |
| 1626 | ret = convert_extent_item_v0(trans, root, path, owner, |
| 1627 | extra_size); |
| 1628 | if (ret < 0) { |
| 1629 | err = ret; |
| 1630 | goto out; |
| 1631 | } |
| 1632 | leaf = path->nodes[0]; |
| 1633 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1634 | } |
| 1635 | #endif |
| 1636 | BUG_ON(item_size < sizeof(*ei)); |
| 1637 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1638 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1639 | flags = btrfs_extent_flags(leaf, ei); |
| 1640 | |
| 1641 | ptr = (unsigned long)(ei + 1); |
| 1642 | end = (unsigned long)ei + item_size; |
| 1643 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 1644 | if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1645 | ptr += sizeof(struct btrfs_tree_block_info); |
| 1646 | BUG_ON(ptr > end); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1647 | } |
| 1648 | |
| 1649 | err = -ENOENT; |
| 1650 | while (1) { |
| 1651 | if (ptr >= end) { |
| 1652 | WARN_ON(ptr > end); |
| 1653 | break; |
| 1654 | } |
| 1655 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1656 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1657 | if (want < type) |
| 1658 | break; |
| 1659 | if (want > type) { |
| 1660 | ptr += btrfs_extent_inline_ref_size(type); |
| 1661 | continue; |
| 1662 | } |
| 1663 | |
| 1664 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1665 | struct btrfs_extent_data_ref *dref; |
| 1666 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1667 | if (match_extent_data_ref(leaf, dref, root_objectid, |
| 1668 | owner, offset)) { |
| 1669 | err = 0; |
| 1670 | break; |
| 1671 | } |
| 1672 | if (hash_extent_data_ref_item(leaf, dref) < |
| 1673 | hash_extent_data_ref(root_objectid, owner, offset)) |
| 1674 | break; |
| 1675 | } else { |
| 1676 | u64 ref_offset; |
| 1677 | ref_offset = btrfs_extent_inline_ref_offset(leaf, iref); |
| 1678 | if (parent > 0) { |
| 1679 | if (parent == ref_offset) { |
| 1680 | err = 0; |
| 1681 | break; |
| 1682 | } |
| 1683 | if (ref_offset < parent) |
| 1684 | break; |
| 1685 | } else { |
| 1686 | if (root_objectid == ref_offset) { |
| 1687 | err = 0; |
| 1688 | break; |
| 1689 | } |
| 1690 | if (ref_offset < root_objectid) |
| 1691 | break; |
| 1692 | } |
| 1693 | } |
| 1694 | ptr += btrfs_extent_inline_ref_size(type); |
| 1695 | } |
| 1696 | if (err == -ENOENT && insert) { |
| 1697 | if (item_size + extra_size >= |
| 1698 | BTRFS_MAX_EXTENT_ITEM_SIZE(root)) { |
| 1699 | err = -EAGAIN; |
| 1700 | goto out; |
| 1701 | } |
| 1702 | /* |
| 1703 | * To add new inline back ref, we have to make sure |
| 1704 | * there is no corresponding back ref item. |
| 1705 | * For simplicity, we just do not add new inline back |
| 1706 | * ref if there is any kind of item for this block |
| 1707 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 1708 | if (find_next_key(path, 0, &key) == 0 && |
| 1709 | key.objectid == bytenr && |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1710 | key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1711 | err = -EAGAIN; |
| 1712 | goto out; |
| 1713 | } |
| 1714 | } |
| 1715 | *ref_ret = (struct btrfs_extent_inline_ref *)ptr; |
| 1716 | out: |
Yan Zheng | 85d4198 | 2009-06-11 08:51:10 -0400 | [diff] [blame] | 1717 | if (insert) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1718 | path->keep_locks = 0; |
| 1719 | btrfs_unlock_up_safe(path, 1); |
| 1720 | } |
| 1721 | return err; |
| 1722 | } |
| 1723 | |
| 1724 | /* |
| 1725 | * helper to add new inline back ref |
| 1726 | */ |
| 1727 | static noinline_for_stack |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1728 | void setup_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1729 | struct btrfs_path *path, |
| 1730 | struct btrfs_extent_inline_ref *iref, |
| 1731 | u64 parent, u64 root_objectid, |
| 1732 | u64 owner, u64 offset, int refs_to_add, |
| 1733 | struct btrfs_delayed_extent_op *extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1734 | { |
| 1735 | struct extent_buffer *leaf; |
| 1736 | struct btrfs_extent_item *ei; |
| 1737 | unsigned long ptr; |
| 1738 | unsigned long end; |
| 1739 | unsigned long item_offset; |
| 1740 | u64 refs; |
| 1741 | int size; |
| 1742 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1743 | |
| 1744 | leaf = path->nodes[0]; |
| 1745 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1746 | item_offset = (unsigned long)iref - (unsigned long)ei; |
| 1747 | |
| 1748 | type = extent_ref_type(parent, owner); |
| 1749 | size = btrfs_extent_inline_ref_size(type); |
| 1750 | |
Tsutomu Itoh | 4b90c68 | 2013-04-16 05:18:49 +0000 | [diff] [blame] | 1751 | btrfs_extend_item(root, path, size); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1752 | |
| 1753 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1754 | refs = btrfs_extent_refs(leaf, ei); |
| 1755 | refs += refs_to_add; |
| 1756 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1757 | if (extent_op) |
| 1758 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1759 | |
| 1760 | ptr = (unsigned long)ei + item_offset; |
| 1761 | end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]); |
| 1762 | if (ptr < end - size) |
| 1763 | memmove_extent_buffer(leaf, ptr + size, ptr, |
| 1764 | end - size - ptr); |
| 1765 | |
| 1766 | iref = (struct btrfs_extent_inline_ref *)ptr; |
| 1767 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 1768 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1769 | struct btrfs_extent_data_ref *dref; |
| 1770 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1771 | btrfs_set_extent_data_ref_root(leaf, dref, root_objectid); |
| 1772 | btrfs_set_extent_data_ref_objectid(leaf, dref, owner); |
| 1773 | btrfs_set_extent_data_ref_offset(leaf, dref, offset); |
| 1774 | btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add); |
| 1775 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1776 | struct btrfs_shared_data_ref *sref; |
| 1777 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1778 | btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add); |
| 1779 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1780 | } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) { |
| 1781 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 1782 | } else { |
| 1783 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 1784 | } |
| 1785 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1786 | } |
| 1787 | |
| 1788 | static int lookup_extent_backref(struct btrfs_trans_handle *trans, |
| 1789 | struct btrfs_root *root, |
| 1790 | struct btrfs_path *path, |
| 1791 | struct btrfs_extent_inline_ref **ref_ret, |
| 1792 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1793 | u64 root_objectid, u64 owner, u64 offset) |
| 1794 | { |
| 1795 | int ret; |
| 1796 | |
| 1797 | ret = lookup_inline_extent_backref(trans, root, path, ref_ret, |
| 1798 | bytenr, num_bytes, parent, |
| 1799 | root_objectid, owner, offset, 0); |
| 1800 | if (ret != -ENOENT) |
| 1801 | return ret; |
| 1802 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1803 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1804 | *ref_ret = NULL; |
| 1805 | |
| 1806 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1807 | ret = lookup_tree_block_ref(trans, root, path, bytenr, parent, |
| 1808 | root_objectid); |
| 1809 | } else { |
| 1810 | ret = lookup_extent_data_ref(trans, root, path, bytenr, parent, |
| 1811 | root_objectid, owner, offset); |
| 1812 | } |
| 1813 | return ret; |
| 1814 | } |
| 1815 | |
| 1816 | /* |
| 1817 | * helper to update/remove inline back ref |
| 1818 | */ |
| 1819 | static noinline_for_stack |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1820 | void update_inline_extent_backref(struct btrfs_root *root, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1821 | struct btrfs_path *path, |
| 1822 | struct btrfs_extent_inline_ref *iref, |
| 1823 | int refs_to_mod, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1824 | struct btrfs_delayed_extent_op *extent_op, |
| 1825 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1826 | { |
| 1827 | struct extent_buffer *leaf; |
| 1828 | struct btrfs_extent_item *ei; |
| 1829 | struct btrfs_extent_data_ref *dref = NULL; |
| 1830 | struct btrfs_shared_data_ref *sref = NULL; |
| 1831 | unsigned long ptr; |
| 1832 | unsigned long end; |
| 1833 | u32 item_size; |
| 1834 | int size; |
| 1835 | int type; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1836 | u64 refs; |
| 1837 | |
| 1838 | leaf = path->nodes[0]; |
| 1839 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 1840 | refs = btrfs_extent_refs(leaf, ei); |
| 1841 | WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); |
| 1842 | refs += refs_to_mod; |
| 1843 | btrfs_set_extent_refs(leaf, ei, refs); |
| 1844 | if (extent_op) |
| 1845 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 1846 | |
| 1847 | type = btrfs_extent_inline_ref_type(leaf, iref); |
| 1848 | |
| 1849 | if (type == BTRFS_EXTENT_DATA_REF_KEY) { |
| 1850 | dref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 1851 | refs = btrfs_extent_data_ref_count(leaf, dref); |
| 1852 | } else if (type == BTRFS_SHARED_DATA_REF_KEY) { |
| 1853 | sref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 1854 | refs = btrfs_shared_data_ref_count(leaf, sref); |
| 1855 | } else { |
| 1856 | refs = 1; |
| 1857 | BUG_ON(refs_to_mod != -1); |
| 1858 | } |
| 1859 | |
| 1860 | BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); |
| 1861 | refs += refs_to_mod; |
| 1862 | |
| 1863 | if (refs > 0) { |
| 1864 | if (type == BTRFS_EXTENT_DATA_REF_KEY) |
| 1865 | btrfs_set_extent_data_ref_count(leaf, dref, refs); |
| 1866 | else |
| 1867 | btrfs_set_shared_data_ref_count(leaf, sref, refs); |
| 1868 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1869 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1870 | size = btrfs_extent_inline_ref_size(type); |
| 1871 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 1872 | ptr = (unsigned long)iref; |
| 1873 | end = (unsigned long)ei + item_size; |
| 1874 | if (ptr + size < end) |
| 1875 | memmove_extent_buffer(leaf, ptr, ptr + size, |
| 1876 | end - ptr - size); |
| 1877 | item_size -= size; |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1878 | btrfs_truncate_item(root, path, item_size, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1879 | } |
| 1880 | btrfs_mark_buffer_dirty(leaf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1881 | } |
| 1882 | |
| 1883 | static noinline_for_stack |
| 1884 | int insert_inline_extent_backref(struct btrfs_trans_handle *trans, |
| 1885 | struct btrfs_root *root, |
| 1886 | struct btrfs_path *path, |
| 1887 | u64 bytenr, u64 num_bytes, u64 parent, |
| 1888 | u64 root_objectid, u64 owner, |
| 1889 | u64 offset, int refs_to_add, |
| 1890 | struct btrfs_delayed_extent_op *extent_op) |
| 1891 | { |
| 1892 | struct btrfs_extent_inline_ref *iref; |
| 1893 | int ret; |
| 1894 | |
| 1895 | ret = lookup_inline_extent_backref(trans, root, path, &iref, |
| 1896 | bytenr, num_bytes, parent, |
| 1897 | root_objectid, owner, offset, 1); |
| 1898 | if (ret == 0) { |
| 1899 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1900 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1901 | refs_to_add, extent_op, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1902 | } else if (ret == -ENOENT) { |
Tsutomu Itoh | fd279fa | 2013-04-16 05:19:11 +0000 | [diff] [blame] | 1903 | setup_inline_extent_backref(root, path, iref, parent, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1904 | root_objectid, owner, offset, |
| 1905 | refs_to_add, extent_op); |
| 1906 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1907 | } |
| 1908 | return ret; |
| 1909 | } |
| 1910 | |
| 1911 | static int insert_extent_backref(struct btrfs_trans_handle *trans, |
| 1912 | struct btrfs_root *root, |
| 1913 | struct btrfs_path *path, |
| 1914 | u64 bytenr, u64 parent, u64 root_objectid, |
| 1915 | u64 owner, u64 offset, int refs_to_add) |
| 1916 | { |
| 1917 | int ret; |
| 1918 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 1919 | BUG_ON(refs_to_add != 1); |
| 1920 | ret = insert_tree_block_ref(trans, root, path, bytenr, |
| 1921 | parent, root_objectid); |
| 1922 | } else { |
| 1923 | ret = insert_extent_data_ref(trans, root, path, bytenr, |
| 1924 | parent, root_objectid, |
| 1925 | owner, offset, refs_to_add); |
| 1926 | } |
| 1927 | return ret; |
| 1928 | } |
| 1929 | |
| 1930 | static int remove_extent_backref(struct btrfs_trans_handle *trans, |
| 1931 | struct btrfs_root *root, |
| 1932 | struct btrfs_path *path, |
| 1933 | struct btrfs_extent_inline_ref *iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1934 | int refs_to_drop, int is_data, int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1935 | { |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 1936 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1937 | |
| 1938 | BUG_ON(!is_data && refs_to_drop != 1); |
| 1939 | if (iref) { |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1940 | update_inline_extent_backref(root, path, iref, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1941 | -refs_to_drop, NULL, last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1942 | } else if (is_data) { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1943 | ret = remove_extent_data_ref(trans, root, path, refs_to_drop, |
| 1944 | last_ref); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1945 | } else { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 1946 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1947 | ret = btrfs_del_item(trans, root, path); |
| 1948 | } |
| 1949 | return ret; |
| 1950 | } |
| 1951 | |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1952 | #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1953 | static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len, |
| 1954 | u64 *discarded_bytes) |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 1955 | { |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1956 | int j, ret = 0; |
| 1957 | u64 bytes_left, end; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 1958 | u64 aligned_start = ALIGN(start, 1 << 9); |
| 1959 | |
| 1960 | if (WARN_ON(start != aligned_start)) { |
| 1961 | len -= aligned_start - start; |
| 1962 | len = round_down(len, 1 << 9); |
| 1963 | start = aligned_start; |
| 1964 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 1965 | |
| 1966 | *discarded_bytes = 0; |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 1967 | |
| 1968 | if (!len) |
| 1969 | return 0; |
| 1970 | |
| 1971 | end = start + len; |
| 1972 | bytes_left = len; |
| 1973 | |
| 1974 | /* Skip any superblocks on this device. */ |
| 1975 | for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) { |
| 1976 | u64 sb_start = btrfs_sb_offset(j); |
| 1977 | u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE; |
| 1978 | u64 size = sb_start - start; |
| 1979 | |
| 1980 | if (!in_range(sb_start, start, bytes_left) && |
| 1981 | !in_range(sb_end, start, bytes_left) && |
| 1982 | !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE)) |
| 1983 | continue; |
| 1984 | |
| 1985 | /* |
| 1986 | * Superblock spans beginning of range. Adjust start and |
| 1987 | * try again. |
| 1988 | */ |
| 1989 | if (sb_start <= start) { |
| 1990 | start += sb_end - start; |
| 1991 | if (start > end) { |
| 1992 | bytes_left = 0; |
| 1993 | break; |
| 1994 | } |
| 1995 | bytes_left = end - start; |
| 1996 | continue; |
| 1997 | } |
| 1998 | |
| 1999 | if (size) { |
| 2000 | ret = blkdev_issue_discard(bdev, start >> 9, size >> 9, |
| 2001 | GFP_NOFS, 0); |
| 2002 | if (!ret) |
| 2003 | *discarded_bytes += size; |
| 2004 | else if (ret != -EOPNOTSUPP) |
| 2005 | return ret; |
| 2006 | } |
| 2007 | |
| 2008 | start = sb_end; |
| 2009 | if (start > end) { |
| 2010 | bytes_left = 0; |
| 2011 | break; |
| 2012 | } |
| 2013 | bytes_left = end - start; |
| 2014 | } |
| 2015 | |
| 2016 | if (bytes_left) { |
| 2017 | ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9, |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2018 | GFP_NOFS, 0); |
| 2019 | if (!ret) |
Jeff Mahoney | 8655786 | 2015-06-15 09:41:16 -0400 | [diff] [blame] | 2020 | *discarded_bytes += bytes_left; |
Jeff Mahoney | 4d89d37 | 2015-06-15 09:41:15 -0400 | [diff] [blame] | 2021 | } |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2022 | return ret; |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2023 | } |
Chris Mason | 15916de | 2008-11-19 21:17:22 -0500 | [diff] [blame] | 2024 | |
Filipe Manana | 1edb647b | 2014-12-08 14:01:12 +0000 | [diff] [blame] | 2025 | int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr, |
| 2026 | u64 num_bytes, u64 *actual_bytes) |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2027 | { |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2028 | int ret; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2029 | u64 discarded_bytes = 0; |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2030 | struct btrfs_bio *bbio = NULL; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2031 | |
Christoph Hellwig | e244a0a | 2009-10-14 09:24:59 -0400 | [diff] [blame] | 2032 | |
Filipe Manana | 2999241 | 2016-05-27 17:42:05 +0100 | [diff] [blame] | 2033 | /* |
| 2034 | * Avoid races with device replace and make sure our bbio has devices |
| 2035 | * associated to its stripes that don't go away while we are discarding. |
| 2036 | */ |
| 2037 | btrfs_bio_counter_inc_blocked(root->fs_info); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2038 | /* Tell the block device(s) that the sectors can be discarded */ |
Christoph Hellwig | cf8cddd | 2016-10-27 09:27:36 +0200 | [diff] [blame] | 2039 | ret = btrfs_map_block(root->fs_info, BTRFS_MAP_DISCARD, |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2040 | bytenr, &num_bytes, &bbio, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2041 | /* Error condition is -ENOMEM */ |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2042 | if (!ret) { |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2043 | struct btrfs_bio_stripe *stripe = bbio->stripes; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2044 | int i; |
| 2045 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2046 | |
Jan Schmidt | a1d3c47 | 2011-08-04 17:15:33 +0200 | [diff] [blame] | 2047 | for (i = 0; i < bbio->num_stripes; i++, stripe++) { |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2048 | u64 bytes; |
Josef Bacik | d5e2003 | 2011-08-04 14:52:27 +0000 | [diff] [blame] | 2049 | if (!stripe->dev->can_discard) |
| 2050 | continue; |
| 2051 | |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2052 | ret = btrfs_issue_discard(stripe->dev->bdev, |
| 2053 | stripe->physical, |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2054 | stripe->length, |
| 2055 | &bytes); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2056 | if (!ret) |
Jeff Mahoney | d04c6b8 | 2015-06-15 09:41:14 -0400 | [diff] [blame] | 2057 | discarded_bytes += bytes; |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2058 | else if (ret != -EOPNOTSUPP) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2059 | 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] | 2060 | |
| 2061 | /* |
| 2062 | * Just in case we get back EOPNOTSUPP for some reason, |
| 2063 | * just ignore the return value so we don't screw up |
| 2064 | * people calling discard_extent. |
| 2065 | */ |
| 2066 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2067 | } |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2068 | btrfs_put_bbio(bbio); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2069 | } |
Filipe Manana | 2999241 | 2016-05-27 17:42:05 +0100 | [diff] [blame] | 2070 | btrfs_bio_counter_dec(root->fs_info); |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 2071 | |
| 2072 | if (actual_bytes) |
| 2073 | *actual_bytes = discarded_bytes; |
| 2074 | |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2075 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2076 | if (ret == -EOPNOTSUPP) |
| 2077 | ret = 0; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2078 | return ret; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 2079 | } |
| 2080 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2081 | /* Can return -ENOMEM */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2082 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 2083 | struct btrfs_root *root, |
| 2084 | u64 bytenr, u64 num_bytes, u64 parent, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2085 | u64 root_objectid, u64 owner, u64 offset) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2086 | { |
| 2087 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2088 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2089 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2090 | BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID && |
| 2091 | root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2092 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2093 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2094 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 2095 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2096 | parent, root_objectid, (int)owner, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2097 | BTRFS_ADD_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2098 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 2099 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 2100 | num_bytes, parent, root_objectid, |
| 2101 | owner, offset, 0, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2102 | BTRFS_ADD_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2103 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2104 | return ret; |
| 2105 | } |
| 2106 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2107 | static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2108 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2109 | struct btrfs_delayed_ref_node *node, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2110 | u64 parent, u64 root_objectid, |
| 2111 | u64 owner, u64 offset, int refs_to_add, |
| 2112 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2113 | { |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2114 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2115 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2116 | struct extent_buffer *leaf; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 2117 | struct btrfs_extent_item *item; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2118 | struct btrfs_key key; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2119 | u64 bytenr = node->bytenr; |
| 2120 | u64 num_bytes = node->num_bytes; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2121 | u64 refs; |
| 2122 | int ret; |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 2123 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 2124 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2125 | if (!path) |
| 2126 | return -ENOMEM; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 2127 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2128 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2129 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2130 | /* this will setup the path even if it fails to insert the back ref */ |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2131 | ret = insert_inline_extent_backref(trans, fs_info->extent_root, path, |
| 2132 | bytenr, num_bytes, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2133 | root_objectid, owner, offset, |
| 2134 | refs_to_add, extent_op); |
Qu Wenruo | 0ed4792 | 2015-04-16 16:55:08 +0800 | [diff] [blame] | 2135 | if ((ret < 0 && ret != -EAGAIN) || !ret) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2136 | goto out; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2137 | |
| 2138 | /* |
| 2139 | * Ok we had -EAGAIN which means we didn't have space to insert and |
| 2140 | * inline extent ref, so just update the reference count and add a |
| 2141 | * normal backref. |
| 2142 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2143 | leaf = path->nodes[0]; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2144 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2145 | item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2146 | refs = btrfs_extent_refs(leaf, item); |
| 2147 | btrfs_set_extent_refs(leaf, item, refs + refs_to_add); |
| 2148 | if (extent_op) |
| 2149 | __run_delayed_extent_op(extent_op, leaf, item); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2150 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2151 | btrfs_mark_buffer_dirty(leaf); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 2152 | btrfs_release_path(path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2153 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2154 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 2155 | path->leave_spinning = 1; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2156 | /* now insert the actual backref */ |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2157 | ret = insert_extent_backref(trans, root->fs_info->extent_root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2158 | path, bytenr, parent, root_objectid, |
| 2159 | owner, offset, refs_to_add); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2160 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2161 | btrfs_abort_transaction(trans, ret); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2162 | out: |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2163 | btrfs_free_path(path); |
Liu Bo | 30d133f | 2013-10-11 16:30:23 +0800 | [diff] [blame] | 2164 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2165 | } |
| 2166 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2167 | static int run_delayed_data_ref(struct btrfs_trans_handle *trans, |
| 2168 | struct btrfs_root *root, |
| 2169 | struct btrfs_delayed_ref_node *node, |
| 2170 | struct btrfs_delayed_extent_op *extent_op, |
| 2171 | int insert_reserved) |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2172 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2173 | int ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2174 | struct btrfs_delayed_data_ref *ref; |
| 2175 | struct btrfs_key ins; |
| 2176 | u64 parent = 0; |
| 2177 | u64 ref_root = 0; |
| 2178 | u64 flags = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2179 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2180 | ins.objectid = node->bytenr; |
| 2181 | ins.offset = node->num_bytes; |
| 2182 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2183 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2184 | ref = btrfs_delayed_node_to_data_ref(node); |
Jeff Mahoney | bc07452 | 2016-06-09 17:27:55 -0400 | [diff] [blame] | 2185 | trace_run_delayed_data_ref(root->fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2186 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2187 | if (node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2188 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2189 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2190 | |
| 2191 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2192 | if (extent_op) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2193 | flags |= extent_op->flags_to_set; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2194 | ret = alloc_reserved_file_extent(trans, root, |
| 2195 | parent, ref_root, flags, |
| 2196 | ref->objectid, ref->offset, |
| 2197 | &ins, node->ref_mod); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2198 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2199 | ret = __btrfs_inc_extent_ref(trans, root, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2200 | ref_root, ref->objectid, |
| 2201 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2202 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2203 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2204 | ret = __btrfs_free_extent(trans, root, node, parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2205 | ref_root, ref->objectid, |
| 2206 | ref->offset, node->ref_mod, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2207 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2208 | } else { |
| 2209 | BUG(); |
| 2210 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2211 | return ret; |
| 2212 | } |
| 2213 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2214 | static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op, |
| 2215 | struct extent_buffer *leaf, |
| 2216 | struct btrfs_extent_item *ei) |
| 2217 | { |
| 2218 | u64 flags = btrfs_extent_flags(leaf, ei); |
| 2219 | if (extent_op->update_flags) { |
| 2220 | flags |= extent_op->flags_to_set; |
| 2221 | btrfs_set_extent_flags(leaf, ei, flags); |
| 2222 | } |
| 2223 | |
| 2224 | if (extent_op->update_key) { |
| 2225 | struct btrfs_tree_block_info *bi; |
| 2226 | BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)); |
| 2227 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 2228 | btrfs_set_tree_block_key(leaf, bi, &extent_op->key); |
| 2229 | } |
| 2230 | } |
| 2231 | |
| 2232 | static int run_delayed_extent_op(struct btrfs_trans_handle *trans, |
| 2233 | struct btrfs_root *root, |
| 2234 | struct btrfs_delayed_ref_node *node, |
| 2235 | struct btrfs_delayed_extent_op *extent_op) |
| 2236 | { |
| 2237 | struct btrfs_key key; |
| 2238 | struct btrfs_path *path; |
| 2239 | struct btrfs_extent_item *ei; |
| 2240 | struct extent_buffer *leaf; |
| 2241 | u32 item_size; |
| 2242 | int ret; |
| 2243 | int err = 0; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2244 | int metadata = !extent_op->is_data; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2245 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2246 | if (trans->aborted) |
| 2247 | return 0; |
| 2248 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2249 | if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2250 | metadata = 0; |
| 2251 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2252 | path = btrfs_alloc_path(); |
| 2253 | if (!path) |
| 2254 | return -ENOMEM; |
| 2255 | |
| 2256 | key.objectid = node->bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2257 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2258 | if (metadata) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2259 | key.type = BTRFS_METADATA_ITEM_KEY; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 2260 | key.offset = extent_op->level; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2261 | } else { |
| 2262 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2263 | key.offset = node->num_bytes; |
| 2264 | } |
| 2265 | |
| 2266 | again: |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 2267 | path->reada = READA_FORWARD; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2268 | path->leave_spinning = 1; |
| 2269 | ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, |
| 2270 | path, 0, 1); |
| 2271 | if (ret < 0) { |
| 2272 | err = ret; |
| 2273 | goto out; |
| 2274 | } |
| 2275 | if (ret > 0) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2276 | if (metadata) { |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2277 | if (path->slots[0] > 0) { |
| 2278 | path->slots[0]--; |
| 2279 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 2280 | path->slots[0]); |
| 2281 | if (key.objectid == node->bytenr && |
| 2282 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 2283 | key.offset == node->num_bytes) |
| 2284 | ret = 0; |
| 2285 | } |
| 2286 | if (ret > 0) { |
| 2287 | btrfs_release_path(path); |
| 2288 | metadata = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2289 | |
Filipe David Borba Manana | 5599488 | 2013-10-18 15:42:56 +0100 | [diff] [blame] | 2290 | key.objectid = node->bytenr; |
| 2291 | key.offset = node->num_bytes; |
| 2292 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 2293 | goto again; |
| 2294 | } |
| 2295 | } else { |
| 2296 | err = -EIO; |
| 2297 | goto out; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2298 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2299 | } |
| 2300 | |
| 2301 | leaf = path->nodes[0]; |
| 2302 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2303 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 2304 | if (item_size < sizeof(*ei)) { |
| 2305 | ret = convert_extent_item_v0(trans, root->fs_info->extent_root, |
| 2306 | path, (u64)-1, 0); |
| 2307 | if (ret < 0) { |
| 2308 | err = ret; |
| 2309 | goto out; |
| 2310 | } |
| 2311 | leaf = path->nodes[0]; |
| 2312 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 2313 | } |
| 2314 | #endif |
| 2315 | BUG_ON(item_size < sizeof(*ei)); |
| 2316 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 2317 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 2318 | |
| 2319 | btrfs_mark_buffer_dirty(leaf); |
| 2320 | out: |
| 2321 | btrfs_free_path(path); |
| 2322 | return err; |
| 2323 | } |
| 2324 | |
| 2325 | static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, |
| 2326 | struct btrfs_root *root, |
| 2327 | struct btrfs_delayed_ref_node *node, |
| 2328 | struct btrfs_delayed_extent_op *extent_op, |
| 2329 | int insert_reserved) |
| 2330 | { |
| 2331 | int ret = 0; |
| 2332 | struct btrfs_delayed_tree_ref *ref; |
| 2333 | struct btrfs_key ins; |
| 2334 | u64 parent = 0; |
| 2335 | u64 ref_root = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2336 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 2337 | SKINNY_METADATA); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2338 | |
| 2339 | ref = btrfs_delayed_node_to_tree_ref(node); |
Jeff Mahoney | bc07452 | 2016-06-09 17:27:55 -0400 | [diff] [blame] | 2340 | trace_run_delayed_tree_ref(root->fs_info, node, ref, node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2341 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2342 | if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2343 | parent = ref->parent; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2344 | ref_root = ref->root; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2345 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2346 | ins.objectid = node->bytenr; |
| 2347 | if (skinny_metadata) { |
| 2348 | ins.offset = ref->level; |
| 2349 | ins.type = BTRFS_METADATA_ITEM_KEY; |
| 2350 | } else { |
| 2351 | ins.offset = node->num_bytes; |
| 2352 | ins.type = BTRFS_EXTENT_ITEM_KEY; |
| 2353 | } |
| 2354 | |
Liu Bo | 0279422 | 2016-09-14 19:19:05 -0700 | [diff] [blame] | 2355 | if (node->ref_mod != 1) { |
| 2356 | btrfs_err(root->fs_info, |
| 2357 | "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu", |
| 2358 | node->bytenr, node->ref_mod, node->action, ref_root, |
| 2359 | parent); |
| 2360 | return -EIO; |
| 2361 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2362 | if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 2363 | BUG_ON(!extent_op || !extent_op->update_flags); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2364 | ret = alloc_reserved_tree_block(trans, root, |
| 2365 | parent, ref_root, |
| 2366 | extent_op->flags_to_set, |
| 2367 | &extent_op->key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 2368 | ref->level, &ins); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2369 | } else if (node->action == BTRFS_ADD_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2370 | ret = __btrfs_inc_extent_ref(trans, root, node, |
| 2371 | parent, ref_root, |
| 2372 | ref->level, 0, 1, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 2373 | extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2374 | } else if (node->action == BTRFS_DROP_DELAYED_REF) { |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 2375 | ret = __btrfs_free_extent(trans, root, node, |
| 2376 | parent, ref_root, |
| 2377 | ref->level, 0, 1, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2378 | } else { |
| 2379 | BUG(); |
| 2380 | } |
| 2381 | return ret; |
| 2382 | } |
| 2383 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2384 | /* helper function to actually process a single delayed ref entry */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2385 | static int run_one_delayed_ref(struct btrfs_trans_handle *trans, |
| 2386 | struct btrfs_root *root, |
| 2387 | struct btrfs_delayed_ref_node *node, |
| 2388 | struct btrfs_delayed_extent_op *extent_op, |
| 2389 | int insert_reserved) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2390 | { |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2391 | int ret = 0; |
| 2392 | |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2393 | if (trans->aborted) { |
| 2394 | if (insert_reserved) |
| 2395 | btrfs_pin_extent(root, node->bytenr, |
| 2396 | node->num_bytes, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2397 | return 0; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2398 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2399 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2400 | if (btrfs_delayed_ref_is_head(node)) { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2401 | struct btrfs_delayed_ref_head *head; |
| 2402 | /* |
| 2403 | * we've hit the end of the chain and we were supposed |
| 2404 | * to insert this extent into the tree. But, it got |
| 2405 | * deleted before we ever needed to insert it, so all |
| 2406 | * we have to do is clean up the accounting |
| 2407 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2408 | BUG_ON(extent_op); |
| 2409 | head = btrfs_delayed_node_to_head(node); |
Jeff Mahoney | bc07452 | 2016-06-09 17:27:55 -0400 | [diff] [blame] | 2410 | trace_run_delayed_ref_head(root->fs_info, node, head, |
| 2411 | node->action); |
Liu Bo | 599c75e | 2013-07-16 19:03:36 +0800 | [diff] [blame] | 2412 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2413 | if (insert_reserved) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2414 | btrfs_pin_extent(root, node->bytenr, |
| 2415 | node->num_bytes, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2416 | if (head->is_data) { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 2417 | ret = btrfs_del_csums(trans, root->fs_info, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2418 | node->bytenr, |
| 2419 | node->num_bytes); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2420 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2421 | } |
Qu Wenruo | 297d750 | 2015-09-08 17:08:37 +0800 | [diff] [blame] | 2422 | |
| 2423 | /* Also free its reserved qgroup space */ |
| 2424 | btrfs_qgroup_free_delayed_ref(root->fs_info, |
| 2425 | head->qgroup_ref_root, |
| 2426 | head->qgroup_reserved); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2427 | return ret; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2428 | } |
Josef Bacik | eb09967 | 2009-02-12 09:27:38 -0500 | [diff] [blame] | 2429 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2430 | if (node->type == BTRFS_TREE_BLOCK_REF_KEY || |
| 2431 | node->type == BTRFS_SHARED_BLOCK_REF_KEY) |
| 2432 | ret = run_delayed_tree_ref(trans, root, node, extent_op, |
| 2433 | insert_reserved); |
| 2434 | else if (node->type == BTRFS_EXTENT_DATA_REF_KEY || |
| 2435 | node->type == BTRFS_SHARED_DATA_REF_KEY) |
| 2436 | ret = run_delayed_data_ref(trans, root, node, extent_op, |
| 2437 | insert_reserved); |
| 2438 | else |
| 2439 | BUG(); |
| 2440 | return ret; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 2441 | } |
| 2442 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2443 | static inline struct btrfs_delayed_ref_node * |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2444 | select_delayed_ref(struct btrfs_delayed_ref_head *head) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 2445 | { |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2446 | struct btrfs_delayed_ref_node *ref; |
| 2447 | |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2448 | if (list_empty(&head->ref_list)) |
| 2449 | return NULL; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2450 | |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2451 | /* |
| 2452 | * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first. |
| 2453 | * This is to prevent a ref count from going down to zero, which deletes |
| 2454 | * the extent item from the extent tree, when there still are references |
| 2455 | * to add, which would fail because they would not find the extent item. |
| 2456 | */ |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2457 | if (!list_empty(&head->ref_add_list)) |
| 2458 | return list_first_entry(&head->ref_add_list, |
| 2459 | struct btrfs_delayed_ref_node, add_list); |
Filipe Manana | cffc337 | 2015-07-09 13:13:44 +0100 | [diff] [blame] | 2460 | |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2461 | ref = list_first_entry(&head->ref_list, struct btrfs_delayed_ref_node, |
| 2462 | list); |
| 2463 | ASSERT(list_empty(&ref->add_list)); |
| 2464 | return ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2465 | } |
| 2466 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2467 | /* |
| 2468 | * Returns 0 on success or if called with an already aborted transaction. |
| 2469 | * Returns -ENOMEM or -EIO on failure and will abort the transaction. |
| 2470 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2471 | static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2472 | struct btrfs_root *root, |
| 2473 | unsigned long nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2474 | { |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2475 | struct btrfs_delayed_ref_root *delayed_refs; |
| 2476 | struct btrfs_delayed_ref_node *ref; |
| 2477 | struct btrfs_delayed_ref_head *locked_ref = NULL; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2478 | struct btrfs_delayed_extent_op *extent_op; |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2479 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2480 | ktime_t start = ktime_get(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2481 | int ret; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2482 | unsigned long count = 0; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2483 | unsigned long actual_count = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2484 | int must_insert_reserved = 0; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2485 | |
| 2486 | delayed_refs = &trans->transaction->delayed_refs; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2487 | while (1) { |
| 2488 | if (!locked_ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2489 | if (count >= nr) |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2490 | break; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2491 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2492 | spin_lock(&delayed_refs->lock); |
| 2493 | locked_ref = btrfs_select_ref_head(trans); |
| 2494 | if (!locked_ref) { |
| 2495 | spin_unlock(&delayed_refs->lock); |
| 2496 | break; |
| 2497 | } |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2498 | |
| 2499 | /* grab the lock that says we are going to process |
| 2500 | * all the refs for this head */ |
| 2501 | ret = btrfs_delayed_ref_lock(trans, locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2502 | spin_unlock(&delayed_refs->lock); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2503 | /* |
| 2504 | * we may have dropped the spin lock to get the head |
| 2505 | * mutex lock, and that might have given someone else |
| 2506 | * time to free the head. If that's true, it has been |
| 2507 | * removed from our list and we can move on. |
| 2508 | */ |
| 2509 | if (ret == -EAGAIN) { |
| 2510 | locked_ref = NULL; |
| 2511 | count++; |
| 2512 | continue; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2513 | } |
| 2514 | } |
| 2515 | |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2516 | /* |
| 2517 | * We need to try and merge add/drops of the same ref since we |
| 2518 | * can run into issues with relocate dropping the implicit ref |
| 2519 | * and then it being added back again before the drop can |
| 2520 | * finish. If we merged anything we need to re-loop so we can |
| 2521 | * get a good ref. |
| 2522 | * Or we can get node references of the same type that weren't |
| 2523 | * merged when created due to bumps in the tree mod seq, and |
| 2524 | * we need to merge them to prevent adding an inline extent |
| 2525 | * backref before dropping it (triggering a BUG_ON at |
| 2526 | * insert_inline_extent_backref()). |
| 2527 | */ |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2528 | spin_lock(&locked_ref->lock); |
Filipe Manana | 2c3cf7d | 2015-10-22 09:47:34 +0100 | [diff] [blame] | 2529 | btrfs_merge_delayed_refs(trans, fs_info, delayed_refs, |
| 2530 | locked_ref); |
Josef Bacik | ae1e206 | 2012-08-07 16:00:32 -0400 | [diff] [blame] | 2531 | |
| 2532 | /* |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2533 | * locked_ref is the head node, so we have to go one |
| 2534 | * node back for any delayed ref updates |
| 2535 | */ |
| 2536 | ref = select_delayed_ref(locked_ref); |
| 2537 | |
| 2538 | if (ref && ref->seq && |
Jan Schmidt | 097b8a7 | 2012-06-21 11:08:04 +0200 | [diff] [blame] | 2539 | btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2540 | spin_unlock(&locked_ref->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2541 | btrfs_delayed_ref_unlock(locked_ref); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2542 | spin_lock(&delayed_refs->lock); |
| 2543 | locked_ref->processing = 0; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2544 | delayed_refs->num_heads_ready++; |
| 2545 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2546 | locked_ref = NULL; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2547 | cond_resched(); |
Josef Bacik | 27a377d | 2014-02-07 13:57:59 -0500 | [diff] [blame] | 2548 | count++; |
Arne Jansen | d1270cd | 2011-09-13 15:16:43 +0200 | [diff] [blame] | 2549 | continue; |
| 2550 | } |
| 2551 | |
| 2552 | /* |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2553 | * record the must insert reserved flag before we |
| 2554 | * drop the spin lock. |
| 2555 | */ |
| 2556 | must_insert_reserved = locked_ref->must_insert_reserved; |
| 2557 | locked_ref->must_insert_reserved = 0; |
| 2558 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2559 | extent_op = locked_ref->extent_op; |
| 2560 | locked_ref->extent_op = NULL; |
| 2561 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2562 | if (!ref) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2563 | |
| 2564 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2565 | /* All delayed refs have been processed, Go ahead |
| 2566 | * and send the head node to run_one_delayed_ref, |
| 2567 | * so that any accounting fixes can happen |
| 2568 | */ |
| 2569 | ref = &locked_ref->node; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2570 | |
| 2571 | if (extent_op && must_insert_reserved) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2572 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2573 | extent_op = NULL; |
| 2574 | } |
| 2575 | |
| 2576 | if (extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2577 | spin_unlock(&locked_ref->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2578 | ret = run_delayed_extent_op(trans, root, |
| 2579 | ref, extent_op); |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2580 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2581 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2582 | if (ret) { |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 2583 | /* |
| 2584 | * Need to reset must_insert_reserved if |
| 2585 | * there was an error so the abort stuff |
| 2586 | * can cleanup the reserved space |
| 2587 | * properly. |
| 2588 | */ |
| 2589 | if (must_insert_reserved) |
| 2590 | locked_ref->must_insert_reserved = 1; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2591 | locked_ref->processing = 0; |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2592 | btrfs_debug(fs_info, |
| 2593 | "run_delayed_extent_op returned %d", |
| 2594 | ret); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2595 | btrfs_delayed_ref_unlock(locked_ref); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2596 | return ret; |
| 2597 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2598 | continue; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2599 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2600 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2601 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2602 | * Need to drop our head ref lock and re-acquire the |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2603 | * delayed ref lock and then re-check to make sure |
| 2604 | * nobody got added. |
| 2605 | */ |
| 2606 | spin_unlock(&locked_ref->lock); |
| 2607 | spin_lock(&delayed_refs->lock); |
| 2608 | spin_lock(&locked_ref->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2609 | if (!list_empty(&locked_ref->ref_list) || |
Josef Bacik | 573a075 | 2014-03-27 19:41:34 -0400 | [diff] [blame] | 2610 | locked_ref->extent_op) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2611 | spin_unlock(&locked_ref->lock); |
| 2612 | spin_unlock(&delayed_refs->lock); |
| 2613 | continue; |
| 2614 | } |
| 2615 | ref->in_tree = 0; |
| 2616 | delayed_refs->num_heads--; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2617 | rb_erase(&locked_ref->href_node, |
| 2618 | &delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2619 | spin_unlock(&delayed_refs->lock); |
| 2620 | } else { |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2621 | actual_count++; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2622 | ref->in_tree = 0; |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 2623 | list_del(&ref->list); |
Wang Xiaoguang | 1d57ee9 | 2016-10-26 18:07:33 +0800 | [diff] [blame] | 2624 | if (!list_empty(&ref->add_list)) |
| 2625 | list_del(&ref->add_list); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2626 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2627 | atomic_dec(&delayed_refs->num_entries); |
| 2628 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2629 | if (!btrfs_delayed_ref_is_head(ref)) { |
Arne Jansen | 22cd2e7 | 2012-08-09 00:16:53 -0600 | [diff] [blame] | 2630 | /* |
| 2631 | * when we play the delayed ref, also correct the |
| 2632 | * ref_mod on head |
| 2633 | */ |
| 2634 | switch (ref->action) { |
| 2635 | case BTRFS_ADD_DELAYED_REF: |
| 2636 | case BTRFS_ADD_DELAYED_EXTENT: |
| 2637 | locked_ref->node.ref_mod -= ref->ref_mod; |
| 2638 | break; |
| 2639 | case BTRFS_DROP_DELAYED_REF: |
| 2640 | locked_ref->node.ref_mod += ref->ref_mod; |
| 2641 | break; |
| 2642 | default: |
| 2643 | WARN_ON(1); |
| 2644 | } |
| 2645 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2646 | spin_unlock(&locked_ref->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2647 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2648 | ret = run_one_delayed_ref(trans, root, ref, extent_op, |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2649 | must_insert_reserved); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2650 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 2651 | btrfs_free_delayed_extent_op(extent_op); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2652 | if (ret) { |
Wang Xiaoguang | 9d1032c | 2016-06-20 09:18:52 +0800 | [diff] [blame] | 2653 | spin_lock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2654 | locked_ref->processing = 0; |
Wang Xiaoguang | 9d1032c | 2016-06-20 09:18:52 +0800 | [diff] [blame] | 2655 | delayed_refs->num_heads_ready++; |
| 2656 | spin_unlock(&delayed_refs->lock); |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2657 | btrfs_delayed_ref_unlock(locked_ref); |
| 2658 | btrfs_put_delayed_ref(ref); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 2659 | btrfs_debug(fs_info, "run_one_delayed_ref returned %d", |
| 2660 | ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2661 | return ret; |
| 2662 | } |
| 2663 | |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2664 | /* |
| 2665 | * If this node is a head, that means all the refs in this head |
| 2666 | * have been dealt with, and we will pick the next head to deal |
| 2667 | * with, so we must unlock the head and drop it from the cluster |
| 2668 | * list before we release it. |
| 2669 | */ |
| 2670 | if (btrfs_delayed_ref_is_head(ref)) { |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2671 | if (locked_ref->is_data && |
| 2672 | locked_ref->total_ref_mod < 0) { |
| 2673 | spin_lock(&delayed_refs->lock); |
| 2674 | delayed_refs->pending_csums -= ref->num_bytes; |
| 2675 | spin_unlock(&delayed_refs->lock); |
| 2676 | } |
Miao Xie | 093486c | 2012-12-19 08:10:10 +0000 | [diff] [blame] | 2677 | btrfs_delayed_ref_unlock(locked_ref); |
| 2678 | locked_ref = NULL; |
| 2679 | } |
| 2680 | btrfs_put_delayed_ref(ref); |
| 2681 | count++; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 2682 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2683 | } |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2684 | |
| 2685 | /* |
| 2686 | * We don't want to include ref heads since we can have empty ref heads |
| 2687 | * and those will drastically skew our runtime down since we just do |
| 2688 | * accounting, no actual extent tree updates. |
| 2689 | */ |
| 2690 | if (actual_count > 0) { |
| 2691 | u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 2692 | u64 avg; |
| 2693 | |
| 2694 | /* |
| 2695 | * We weigh the current average higher than our current runtime |
| 2696 | * to avoid large swings in the average. |
| 2697 | */ |
| 2698 | spin_lock(&delayed_refs->lock); |
| 2699 | avg = fs_info->avg_delayed_ref_runtime * 3 + runtime; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 2700 | fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */ |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2701 | spin_unlock(&delayed_refs->lock); |
| 2702 | } |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2703 | return 0; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2704 | } |
| 2705 | |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2706 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2707 | /* |
| 2708 | * Normally delayed refs get processed in ascending bytenr order. This |
| 2709 | * correlates in most cases to the order added. To expose dependencies on this |
| 2710 | * order, we start to process the tree in the middle instead of the beginning |
| 2711 | */ |
| 2712 | static u64 find_middle(struct rb_root *root) |
| 2713 | { |
| 2714 | struct rb_node *n = root->rb_node; |
| 2715 | struct btrfs_delayed_ref_node *entry; |
| 2716 | int alt = 1; |
| 2717 | u64 middle; |
| 2718 | u64 first = 0, last = 0; |
| 2719 | |
| 2720 | n = rb_first(root); |
| 2721 | if (n) { |
| 2722 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2723 | first = entry->bytenr; |
| 2724 | } |
| 2725 | n = rb_last(root); |
| 2726 | if (n) { |
| 2727 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2728 | last = entry->bytenr; |
| 2729 | } |
| 2730 | n = root->rb_node; |
| 2731 | |
| 2732 | while (n) { |
| 2733 | entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node); |
| 2734 | WARN_ON(!entry->in_tree); |
| 2735 | |
| 2736 | middle = entry->bytenr; |
| 2737 | |
| 2738 | if (alt) |
| 2739 | n = n->rb_left; |
| 2740 | else |
| 2741 | n = n->rb_right; |
| 2742 | |
| 2743 | alt = 1 - alt; |
| 2744 | } |
| 2745 | return middle; |
| 2746 | } |
| 2747 | #endif |
| 2748 | |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2749 | static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads) |
| 2750 | { |
| 2751 | u64 num_bytes; |
| 2752 | |
| 2753 | num_bytes = heads * (sizeof(struct btrfs_extent_item) + |
| 2754 | sizeof(struct btrfs_extent_inline_ref)); |
| 2755 | if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) |
| 2756 | num_bytes += heads * sizeof(struct btrfs_tree_block_info); |
| 2757 | |
| 2758 | /* |
| 2759 | * 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] | 2760 | * closer to what we're really going to want to use. |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2761 | */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2762 | return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root->fs_info)); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2763 | } |
| 2764 | |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2765 | /* |
| 2766 | * Takes the number of bytes to be csumm'ed and figures out how many leaves it |
| 2767 | * would require to store the csums for that many bytes. |
| 2768 | */ |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 2769 | u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes) |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2770 | { |
| 2771 | u64 csum_size; |
| 2772 | u64 num_csums_per_leaf; |
| 2773 | u64 num_csums; |
| 2774 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2775 | csum_size = BTRFS_MAX_ITEM_SIZE(root->fs_info); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2776 | num_csums_per_leaf = div64_u64(csum_size, |
| 2777 | (u64)btrfs_super_csum_size(root->fs_info->super_copy)); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2778 | num_csums = div64_u64(csum_bytes, root->fs_info->sectorsize); |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2779 | num_csums += num_csums_per_leaf - 1; |
| 2780 | num_csums = div64_u64(num_csums, num_csums_per_leaf); |
| 2781 | return num_csums; |
| 2782 | } |
| 2783 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2784 | int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans, |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2785 | struct btrfs_root *root) |
| 2786 | { |
| 2787 | struct btrfs_block_rsv *global_rsv; |
| 2788 | u64 num_heads = trans->transaction->delayed_refs.num_heads_ready; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 2789 | u64 csum_bytes = trans->transaction->delayed_refs.pending_csums; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2790 | u64 num_dirty_bgs = trans->transaction->num_dirty_bgs; |
| 2791 | u64 num_bytes, num_dirty_bgs_bytes; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2792 | int ret = 0; |
| 2793 | |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 2794 | num_bytes = btrfs_calc_trans_metadata_size(root->fs_info, 1); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2795 | num_heads = heads_to_leaves(root, num_heads); |
| 2796 | if (num_heads > 1) |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2797 | num_bytes += (num_heads - 1) * root->fs_info->nodesize; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2798 | num_bytes <<= 1; |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 2799 | num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->fs_info->nodesize; |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 2800 | num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root->fs_info, |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2801 | num_dirty_bgs); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2802 | global_rsv = &root->fs_info->global_block_rsv; |
| 2803 | |
| 2804 | /* |
| 2805 | * If we can't allocate any more chunks lets make sure we have _lots_ of |
| 2806 | * wiggle room since running delayed refs can create more delayed refs. |
| 2807 | */ |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2808 | if (global_rsv->space_info->full) { |
| 2809 | num_dirty_bgs_bytes <<= 1; |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2810 | num_bytes <<= 1; |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2811 | } |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2812 | |
| 2813 | spin_lock(&global_rsv->lock); |
Josef Bacik | cb723e4 | 2015-02-18 08:06:57 -0800 | [diff] [blame] | 2814 | if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes) |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 2815 | ret = 1; |
| 2816 | spin_unlock(&global_rsv->lock); |
| 2817 | return ret; |
| 2818 | } |
| 2819 | |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2820 | int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans, |
| 2821 | struct btrfs_root *root) |
| 2822 | { |
| 2823 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 2824 | u64 num_entries = |
| 2825 | atomic_read(&trans->transaction->delayed_refs.num_entries); |
| 2826 | u64 avg_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2827 | u64 val; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2828 | |
| 2829 | smp_mb(); |
| 2830 | avg_runtime = fs_info->avg_delayed_ref_runtime; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2831 | val = num_entries * avg_runtime; |
Wang Xiaoguang | dc1a90c | 2016-10-26 15:23:01 +0800 | [diff] [blame] | 2832 | if (val >= NSEC_PER_SEC) |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2833 | return 1; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2834 | if (val >= NSEC_PER_SEC / 2) |
| 2835 | return 2; |
Josef Bacik | 0a2b2a8 | 2014-01-23 10:54:11 -0500 | [diff] [blame] | 2836 | |
| 2837 | return btrfs_check_space_for_delayed_refs(trans, root); |
| 2838 | } |
| 2839 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2840 | struct async_delayed_refs { |
| 2841 | struct btrfs_root *root; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2842 | u64 transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2843 | int count; |
| 2844 | int error; |
| 2845 | int sync; |
| 2846 | struct completion wait; |
| 2847 | struct btrfs_work work; |
| 2848 | }; |
| 2849 | |
| 2850 | static void delayed_ref_async_start(struct btrfs_work *work) |
| 2851 | { |
| 2852 | struct async_delayed_refs *async; |
| 2853 | struct btrfs_trans_handle *trans; |
| 2854 | int ret; |
| 2855 | |
| 2856 | async = container_of(work, struct async_delayed_refs, work); |
| 2857 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2858 | /* if the commit is already started, we don't need to wait here */ |
| 2859 | if (btrfs_transaction_blocked(async->root->fs_info)) |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2860 | goto done; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2861 | |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2862 | trans = btrfs_join_transaction(async->root); |
| 2863 | if (IS_ERR(trans)) { |
| 2864 | async->error = PTR_ERR(trans); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2865 | goto done; |
| 2866 | } |
| 2867 | |
| 2868 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2869 | * trans->sync means that when we call end_transaction, we won't |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2870 | * wait on delayed refs |
| 2871 | */ |
| 2872 | trans->sync = true; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2873 | |
| 2874 | /* Don't bother flushing if we got into a different transaction */ |
| 2875 | if (trans->transid > async->transid) |
| 2876 | goto end; |
| 2877 | |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2878 | ret = btrfs_run_delayed_refs(trans, async->root, async->count); |
| 2879 | if (ret) |
| 2880 | async->error = ret; |
Chris Mason | 0f873ec | 2016-04-27 09:59:38 -0400 | [diff] [blame] | 2881 | end: |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2882 | ret = btrfs_end_transaction(trans, async->root); |
| 2883 | if (ret && !async->error) |
| 2884 | async->error = ret; |
| 2885 | done: |
| 2886 | if (async->sync) |
| 2887 | complete(&async->wait); |
| 2888 | else |
| 2889 | kfree(async); |
| 2890 | } |
| 2891 | |
| 2892 | int btrfs_async_run_delayed_refs(struct btrfs_root *root, |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2893 | unsigned long count, u64 transid, int wait) |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2894 | { |
| 2895 | struct async_delayed_refs *async; |
| 2896 | int ret; |
| 2897 | |
| 2898 | async = kmalloc(sizeof(*async), GFP_NOFS); |
| 2899 | if (!async) |
| 2900 | return -ENOMEM; |
| 2901 | |
| 2902 | async->root = root->fs_info->tree_root; |
| 2903 | async->count = count; |
| 2904 | async->error = 0; |
Josef Bacik | 31b9655 | 2016-04-11 17:37:40 -0400 | [diff] [blame] | 2905 | async->transid = transid; |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2906 | if (wait) |
| 2907 | async->sync = 1; |
| 2908 | else |
| 2909 | async->sync = 0; |
| 2910 | init_completion(&async->wait); |
| 2911 | |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 2912 | btrfs_init_work(&async->work, btrfs_extent_refs_helper, |
| 2913 | delayed_ref_async_start, NULL, NULL); |
Chris Mason | a79b7d4 | 2014-05-22 16:18:52 -0700 | [diff] [blame] | 2914 | |
| 2915 | btrfs_queue_work(root->fs_info->extent_workers, &async->work); |
| 2916 | |
| 2917 | if (wait) { |
| 2918 | wait_for_completion(&async->wait); |
| 2919 | ret = async->error; |
| 2920 | kfree(async); |
| 2921 | return ret; |
| 2922 | } |
| 2923 | return 0; |
| 2924 | } |
| 2925 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2926 | /* |
| 2927 | * this starts processing the delayed reference count updates and |
| 2928 | * extent insertions we have queued up so far. count can be |
| 2929 | * 0, which means to process everything in the tree at the start |
| 2930 | * of the run (but not newly added entries), or it can be some target |
| 2931 | * number you'd like to process. |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2932 | * |
| 2933 | * Returns 0 on success or if called with an aborted transaction |
| 2934 | * Returns <0 on error and aborts the transaction |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2935 | */ |
| 2936 | int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, |
| 2937 | struct btrfs_root *root, unsigned long count) |
| 2938 | { |
| 2939 | struct rb_node *node; |
| 2940 | struct btrfs_delayed_ref_root *delayed_refs; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2941 | struct btrfs_delayed_ref_head *head; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2942 | int ret; |
| 2943 | int run_all = count == (unsigned long)-1; |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2944 | bool can_flush_pending_bgs = trans->can_flush_pending_bgs; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2945 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 2946 | /* We'll clean this up in btrfs_cleanup_transaction */ |
| 2947 | if (trans->aborted) |
| 2948 | return 0; |
| 2949 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 2950 | if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &root->fs_info->flags)) |
Chris Mason | 511711a | 2015-12-30 07:52:35 -0800 | [diff] [blame] | 2951 | return 0; |
| 2952 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2953 | if (root == root->fs_info->extent_root) |
| 2954 | root = root->fs_info->tree_root; |
| 2955 | |
| 2956 | delayed_refs = &trans->transaction->delayed_refs; |
Liu Bo | 26455d3 | 2014-12-17 16:14:09 +0800 | [diff] [blame] | 2957 | if (count == 0) |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2958 | count = atomic_read(&delayed_refs->num_entries) * 2; |
Chris Mason | bb72170 | 2013-01-29 18:44:12 -0500 | [diff] [blame] | 2959 | |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2960 | again: |
Arne Jansen | 709c048 | 2011-09-12 12:22:57 +0200 | [diff] [blame] | 2961 | #ifdef SCRAMBLE_DELAYED_REFS |
| 2962 | delayed_refs->run_delayed_start = find_middle(&delayed_refs->root); |
| 2963 | #endif |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 2964 | trans->can_flush_pending_bgs = false; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2965 | ret = __btrfs_run_delayed_refs(trans, root, count); |
| 2966 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2967 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2968 | return ret; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 2969 | } |
| 2970 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2971 | if (run_all) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2972 | if (!list_empty(&trans->new_bgs)) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2973 | btrfs_create_pending_block_groups(trans, root); |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 2974 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2975 | spin_lock(&delayed_refs->lock); |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2976 | node = rb_first(&delayed_refs->href_root); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2977 | if (!node) { |
| 2978 | spin_unlock(&delayed_refs->lock); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2979 | goto out; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 2980 | } |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2981 | |
| 2982 | while (node) { |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2983 | head = rb_entry(node, struct btrfs_delayed_ref_head, |
| 2984 | href_node); |
| 2985 | if (btrfs_delayed_ref_is_head(&head->node)) { |
| 2986 | struct btrfs_delayed_ref_node *ref; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2987 | |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 2988 | ref = &head->node; |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2989 | atomic_inc(&ref->refs); |
| 2990 | |
| 2991 | spin_unlock(&delayed_refs->lock); |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 2992 | /* |
| 2993 | * Mutex was contended, block until it's |
| 2994 | * released and try again |
| 2995 | */ |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 2996 | mutex_lock(&head->mutex); |
| 2997 | mutex_unlock(&head->mutex); |
| 2998 | |
| 2999 | btrfs_put_delayed_ref(ref); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 3000 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3001 | goto again; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 3002 | } else { |
| 3003 | WARN_ON(1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3004 | } |
| 3005 | node = rb_next(node); |
| 3006 | } |
| 3007 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3008 | cond_resched(); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 3009 | goto again; |
| 3010 | } |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3011 | out: |
Jan Schmidt | edf3927 | 2012-06-28 18:04:55 +0200 | [diff] [blame] | 3012 | assert_qgroups_uptodate(trans); |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 3013 | trans->can_flush_pending_bgs = can_flush_pending_bgs; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 3014 | return 0; |
| 3015 | } |
| 3016 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3017 | int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans, |
| 3018 | struct btrfs_root *root, |
| 3019 | u64 bytenr, u64 num_bytes, u64 flags, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3020 | int level, int is_data) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3021 | { |
| 3022 | struct btrfs_delayed_extent_op *extent_op; |
| 3023 | int ret; |
| 3024 | |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3025 | extent_op = btrfs_alloc_delayed_extent_op(); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3026 | if (!extent_op) |
| 3027 | return -ENOMEM; |
| 3028 | |
| 3029 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 3030 | extent_op->update_flags = true; |
| 3031 | extent_op->update_key = false; |
| 3032 | extent_op->is_data = is_data ? true : false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 3033 | extent_op->level = level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3034 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 3035 | ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr, |
| 3036 | num_bytes, extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3037 | if (ret) |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 3038 | btrfs_free_delayed_extent_op(extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3039 | return ret; |
| 3040 | } |
| 3041 | |
| 3042 | static noinline int check_delayed_ref(struct btrfs_trans_handle *trans, |
| 3043 | struct btrfs_root *root, |
| 3044 | struct btrfs_path *path, |
| 3045 | u64 objectid, u64 offset, u64 bytenr) |
| 3046 | { |
| 3047 | struct btrfs_delayed_ref_head *head; |
| 3048 | struct btrfs_delayed_ref_node *ref; |
| 3049 | struct btrfs_delayed_data_ref *data_ref; |
| 3050 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3051 | int ret = 0; |
| 3052 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3053 | delayed_refs = &trans->transaction->delayed_refs; |
| 3054 | spin_lock(&delayed_refs->lock); |
| 3055 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3056 | if (!head) { |
| 3057 | spin_unlock(&delayed_refs->lock); |
| 3058 | return 0; |
| 3059 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3060 | |
| 3061 | if (!mutex_trylock(&head->mutex)) { |
| 3062 | atomic_inc(&head->node.refs); |
| 3063 | spin_unlock(&delayed_refs->lock); |
| 3064 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3065 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3066 | |
David Sterba | 8cc33e5 | 2011-05-02 15:29:25 +0200 | [diff] [blame] | 3067 | /* |
| 3068 | * Mutex was contended, block until it's released and let |
| 3069 | * caller try again |
| 3070 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3071 | mutex_lock(&head->mutex); |
| 3072 | mutex_unlock(&head->mutex); |
| 3073 | btrfs_put_delayed_ref(&head->node); |
| 3074 | return -EAGAIN; |
| 3075 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3076 | spin_unlock(&delayed_refs->lock); |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3077 | |
| 3078 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 3079 | list_for_each_entry(ref, &head->ref_list, list) { |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 3080 | /* If it's a shared ref we know a cross reference exists */ |
| 3081 | if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) { |
| 3082 | ret = 1; |
| 3083 | break; |
| 3084 | } |
| 3085 | |
| 3086 | data_ref = btrfs_delayed_node_to_data_ref(ref); |
| 3087 | |
| 3088 | /* |
| 3089 | * If our ref doesn't match the one we're currently looking at |
| 3090 | * then we have a cross reference. |
| 3091 | */ |
| 3092 | if (data_ref->root != root->root_key.objectid || |
| 3093 | data_ref->objectid != objectid || |
| 3094 | data_ref->offset != offset) { |
| 3095 | ret = 1; |
| 3096 | break; |
| 3097 | } |
| 3098 | } |
| 3099 | spin_unlock(&head->lock); |
| 3100 | mutex_unlock(&head->mutex); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3101 | return ret; |
| 3102 | } |
| 3103 | |
| 3104 | static noinline int check_committed_ref(struct btrfs_trans_handle *trans, |
| 3105 | struct btrfs_root *root, |
| 3106 | struct btrfs_path *path, |
| 3107 | u64 objectid, u64 offset, u64 bytenr) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3108 | { |
| 3109 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3110 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3111 | struct btrfs_extent_data_ref *ref; |
| 3112 | struct btrfs_extent_inline_ref *iref; |
| 3113 | struct btrfs_extent_item *ei; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3114 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3115 | u32 item_size; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3116 | int ret; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3117 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3118 | key.objectid = bytenr; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3119 | key.offset = (u64)-1; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3120 | key.type = BTRFS_EXTENT_ITEM_KEY; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3121 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3122 | ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0); |
| 3123 | if (ret < 0) |
| 3124 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3125 | BUG_ON(ret == 0); /* Corruption */ |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 3126 | |
| 3127 | ret = -ENOENT; |
| 3128 | if (path->slots[0] == 0) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3129 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3130 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3131 | path->slots[0]--; |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3132 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3133 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3134 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3135 | if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3136 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3137 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3138 | ret = 1; |
| 3139 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 3140 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 3141 | if (item_size < sizeof(*ei)) { |
| 3142 | WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0)); |
| 3143 | goto out; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3144 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3145 | #endif |
| 3146 | ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); |
| 3147 | |
| 3148 | if (item_size != sizeof(*ei) + |
| 3149 | btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY)) |
| 3150 | goto out; |
| 3151 | |
| 3152 | if (btrfs_extent_generation(leaf, ei) <= |
| 3153 | btrfs_root_last_snapshot(&root->root_item)) |
| 3154 | goto out; |
| 3155 | |
| 3156 | iref = (struct btrfs_extent_inline_ref *)(ei + 1); |
| 3157 | if (btrfs_extent_inline_ref_type(leaf, iref) != |
| 3158 | BTRFS_EXTENT_DATA_REF_KEY) |
| 3159 | goto out; |
| 3160 | |
| 3161 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 3162 | if (btrfs_extent_refs(leaf, ei) != |
| 3163 | btrfs_extent_data_ref_count(leaf, ref) || |
| 3164 | btrfs_extent_data_ref_root(leaf, ref) != |
| 3165 | root->root_key.objectid || |
| 3166 | btrfs_extent_data_ref_objectid(leaf, ref) != objectid || |
| 3167 | btrfs_extent_data_ref_offset(leaf, ref) != offset) |
| 3168 | goto out; |
| 3169 | |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3170 | ret = 0; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 3171 | out: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3172 | return ret; |
| 3173 | } |
| 3174 | |
| 3175 | int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans, |
| 3176 | struct btrfs_root *root, |
| 3177 | u64 objectid, u64 offset, u64 bytenr) |
| 3178 | { |
| 3179 | struct btrfs_path *path; |
| 3180 | int ret; |
| 3181 | int ret2; |
| 3182 | |
| 3183 | path = btrfs_alloc_path(); |
| 3184 | if (!path) |
| 3185 | return -ENOENT; |
| 3186 | |
| 3187 | do { |
| 3188 | ret = check_committed_ref(trans, root, path, objectid, |
| 3189 | offset, bytenr); |
| 3190 | if (ret && ret != -ENOENT) |
| 3191 | goto out; |
| 3192 | |
| 3193 | ret2 = check_delayed_ref(trans, root, path, objectid, |
| 3194 | offset, bytenr); |
| 3195 | } while (ret2 == -EAGAIN); |
| 3196 | |
| 3197 | if (ret2 && ret2 != -ENOENT) { |
| 3198 | ret = ret2; |
| 3199 | goto out; |
| 3200 | } |
| 3201 | |
| 3202 | if (ret != -ENOENT || ret2 != -ENOENT) |
| 3203 | ret = 0; |
| 3204 | out: |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3205 | btrfs_free_path(path); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3206 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) |
| 3207 | WARN_ON(ret > 0); |
Yan Zheng | f321e49 | 2008-07-30 09:26:11 -0400 | [diff] [blame] | 3208 | return ret; |
| 3209 | } |
| 3210 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3211 | static int __btrfs_mod_ref(struct btrfs_trans_handle *trans, |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3212 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3213 | struct extent_buffer *buf, |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3214 | int full_backref, int inc) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3215 | { |
| 3216 | u64 bytenr; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3217 | u64 num_bytes; |
| 3218 | u64 parent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3219 | u64 ref_root; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3220 | u32 nritems; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3221 | struct btrfs_key key; |
| 3222 | struct btrfs_file_extent_item *fi; |
| 3223 | int i; |
| 3224 | int level; |
| 3225 | int ret = 0; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3226 | int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3227 | u64, u64, u64, u64, u64, u64); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3228 | |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3229 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 3230 | if (btrfs_is_testing(root->fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 3231 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 3232 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3233 | ref_root = btrfs_header_owner(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3234 | nritems = btrfs_header_nritems(buf); |
| 3235 | level = btrfs_header_level(buf); |
| 3236 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 3237 | if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3238 | return 0; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3239 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3240 | if (inc) |
| 3241 | process_func = btrfs_inc_extent_ref; |
| 3242 | else |
| 3243 | process_func = btrfs_free_extent; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3244 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3245 | if (full_backref) |
| 3246 | parent = buf->start; |
| 3247 | else |
| 3248 | parent = 0; |
| 3249 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3250 | for (i = 0; i < nritems; i++) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3251 | if (level == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3252 | btrfs_item_key_to_cpu(buf, &key, i); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 3253 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3254 | continue; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3255 | fi = btrfs_item_ptr(buf, i, |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3256 | struct btrfs_file_extent_item); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3257 | if (btrfs_file_extent_type(buf, fi) == |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3258 | BTRFS_FILE_EXTENT_INLINE) |
| 3259 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3260 | bytenr = btrfs_file_extent_disk_bytenr(buf, fi); |
| 3261 | if (bytenr == 0) |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3262 | continue; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3263 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3264 | num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi); |
| 3265 | key.offset -= btrfs_file_extent_offset(buf, fi); |
| 3266 | ret = process_func(trans, root, bytenr, num_bytes, |
| 3267 | parent, ref_root, key.objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3268 | key.offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3269 | if (ret) |
| 3270 | goto fail; |
Chris Mason | b7a9f29 | 2009-02-04 09:23:45 -0500 | [diff] [blame] | 3271 | } else { |
| 3272 | bytenr = btrfs_node_blockptr(buf, i); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 3273 | num_bytes = root->fs_info->nodesize; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3274 | ret = process_func(trans, root, bytenr, num_bytes, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 3275 | parent, ref_root, level - 1, 0); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3276 | if (ret) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3277 | goto fail; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3278 | } |
| 3279 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3280 | return 0; |
| 3281 | fail: |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3282 | return ret; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 3283 | } |
| 3284 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3285 | 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] | 3286 | struct extent_buffer *buf, int full_backref) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3287 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3288 | return __btrfs_mod_ref(trans, root, buf, full_backref, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3289 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3290 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3291 | 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] | 3292 | struct extent_buffer *buf, int full_backref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3293 | { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 3294 | return __btrfs_mod_ref(trans, root, buf, full_backref, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 3295 | } |
| 3296 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3297 | static int write_one_cache_group(struct btrfs_trans_handle *trans, |
| 3298 | struct btrfs_root *root, |
| 3299 | struct btrfs_path *path, |
| 3300 | struct btrfs_block_group_cache *cache) |
| 3301 | { |
| 3302 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3303 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3304 | unsigned long bi; |
| 3305 | struct extent_buffer *leaf; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3306 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3307 | ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3308 | if (ret) { |
| 3309 | if (ret > 0) |
| 3310 | ret = -ENOENT; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3311 | goto fail; |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3312 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3313 | |
| 3314 | leaf = path->nodes[0]; |
| 3315 | bi = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3316 | write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item)); |
| 3317 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 3318 | fail: |
Filipe Manana | 24b89d0 | 2015-04-25 18:31:05 +0100 | [diff] [blame] | 3319 | btrfs_release_path(path); |
Josef Bacik | df95e7f | 2014-12-12 16:02:20 -0500 | [diff] [blame] | 3320 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3321 | |
| 3322 | } |
| 3323 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3324 | static struct btrfs_block_group_cache * |
| 3325 | next_block_group(struct btrfs_root *root, |
| 3326 | struct btrfs_block_group_cache *cache) |
| 3327 | { |
| 3328 | struct rb_node *node; |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3329 | |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3330 | spin_lock(&root->fs_info->block_group_cache_lock); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 3331 | |
| 3332 | /* If our block group was removed, we need a full search. */ |
| 3333 | if (RB_EMPTY_NODE(&cache->cache_node)) { |
| 3334 | const u64 next_bytenr = cache->key.objectid + cache->key.offset; |
| 3335 | |
| 3336 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3337 | btrfs_put_block_group(cache); |
| 3338 | cache = btrfs_lookup_first_block_group(root->fs_info, |
| 3339 | next_bytenr); |
| 3340 | return cache; |
| 3341 | } |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3342 | node = rb_next(&cache->cache_node); |
| 3343 | btrfs_put_block_group(cache); |
| 3344 | if (node) { |
| 3345 | cache = rb_entry(node, struct btrfs_block_group_cache, |
| 3346 | cache_node); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 3347 | btrfs_get_block_group(cache); |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3348 | } else |
| 3349 | cache = NULL; |
| 3350 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 3351 | return cache; |
| 3352 | } |
| 3353 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3354 | static int cache_save_setup(struct btrfs_block_group_cache *block_group, |
| 3355 | struct btrfs_trans_handle *trans, |
| 3356 | struct btrfs_path *path) |
| 3357 | { |
| 3358 | struct btrfs_root *root = block_group->fs_info->tree_root; |
| 3359 | struct inode *inode = NULL; |
| 3360 | u64 alloc_hint = 0; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3361 | int dcs = BTRFS_DC_ERROR; |
David Sterba | f8c269d | 2015-01-16 17:21:12 +0100 | [diff] [blame] | 3362 | u64 num_pages = 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3363 | int retries = 0; |
| 3364 | int ret = 0; |
| 3365 | |
| 3366 | /* |
| 3367 | * If this block group is smaller than 100 megs don't bother caching the |
| 3368 | * block group. |
| 3369 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3370 | if (block_group->key.offset < (100 * SZ_1M)) { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3371 | spin_lock(&block_group->lock); |
| 3372 | block_group->disk_cache_state = BTRFS_DC_WRITTEN; |
| 3373 | spin_unlock(&block_group->lock); |
| 3374 | return 0; |
| 3375 | } |
| 3376 | |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3377 | if (trans->aborted) |
| 3378 | return 0; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3379 | again: |
| 3380 | inode = lookup_free_space_inode(root, block_group, path); |
| 3381 | if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) { |
| 3382 | ret = PTR_ERR(inode); |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3383 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3384 | goto out; |
| 3385 | } |
| 3386 | |
| 3387 | if (IS_ERR(inode)) { |
| 3388 | BUG_ON(retries); |
| 3389 | retries++; |
| 3390 | |
| 3391 | if (block_group->ro) |
| 3392 | goto out_free; |
| 3393 | |
| 3394 | ret = create_free_space_inode(root, trans, block_group, path); |
| 3395 | if (ret) |
| 3396 | goto out_free; |
| 3397 | goto again; |
| 3398 | } |
| 3399 | |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3400 | /* We've already setup this transaction, go ahead and exit */ |
| 3401 | if (block_group->cache_generation == trans->transid && |
| 3402 | i_size_read(inode)) { |
| 3403 | dcs = BTRFS_DC_SETUP; |
| 3404 | goto out_put; |
| 3405 | } |
| 3406 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3407 | /* |
| 3408 | * We want to set the generation to 0, that way if anything goes wrong |
| 3409 | * from here on out we know not to trust this cache when we load up next |
| 3410 | * time. |
| 3411 | */ |
| 3412 | BTRFS_I(inode)->generation = 0; |
| 3413 | ret = btrfs_update_inode(trans, root, inode); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3414 | if (ret) { |
| 3415 | /* |
| 3416 | * So theoretically we could recover from this, simply set the |
| 3417 | * super cache generation to 0 so we know to invalidate the |
| 3418 | * cache, but then we'd have to keep track of the block groups |
| 3419 | * that fail this way so we know we _have_ to reset this cache |
| 3420 | * before the next commit or risk reading stale cache. So to |
| 3421 | * limit our exposure to horrible edge cases lets just abort the |
| 3422 | * transaction, this only happens in really bad situations |
| 3423 | * anyway. |
| 3424 | */ |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3425 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0c0ef4b | 2015-02-12 09:43:51 -0500 | [diff] [blame] | 3426 | goto out_put; |
| 3427 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3428 | WARN_ON(ret); |
| 3429 | |
| 3430 | if (i_size_read(inode) > 0) { |
Miao Xie | 7b61cd9 | 2013-05-13 13:55:09 +0000 | [diff] [blame] | 3431 | ret = btrfs_check_trunc_cache_free_space(root, |
| 3432 | &root->fs_info->global_block_rsv); |
| 3433 | if (ret) |
| 3434 | goto out_put; |
| 3435 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3436 | ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3437 | if (ret) |
| 3438 | goto out_put; |
| 3439 | } |
| 3440 | |
| 3441 | spin_lock(&block_group->lock); |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3442 | if (block_group->cached != BTRFS_CACHE_FINISHED || |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 3443 | !btrfs_test_opt(root->fs_info, SPACE_CACHE)) { |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 3444 | /* |
| 3445 | * don't bother trying to write stuff out _if_ |
| 3446 | * a) we're not cached, |
| 3447 | * b) we're with nospace_cache mount option. |
| 3448 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3449 | dcs = BTRFS_DC_WRITTEN; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3450 | spin_unlock(&block_group->lock); |
| 3451 | goto out_put; |
| 3452 | } |
| 3453 | spin_unlock(&block_group->lock); |
| 3454 | |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3455 | /* |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3456 | * We hit an ENOSPC when setting up the cache in this transaction, just |
| 3457 | * skip doing the setup, we've already cleared the cache so we're safe. |
| 3458 | */ |
| 3459 | if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) { |
| 3460 | ret = -ENOSPC; |
| 3461 | goto out_put; |
| 3462 | } |
| 3463 | |
| 3464 | /* |
Josef Bacik | 6fc823b | 2012-08-06 13:46:38 -0600 | [diff] [blame] | 3465 | * Try to preallocate enough space based on how big the block group is. |
| 3466 | * Keep in mind this has to include any pinned space which could end up |
| 3467 | * taking up quite a bit since it's not folded into the other space |
| 3468 | * cache. |
| 3469 | */ |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 3470 | num_pages = div_u64(block_group->key.offset, SZ_256M); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3471 | if (!num_pages) |
| 3472 | num_pages = 1; |
| 3473 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3474 | num_pages *= 16; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3475 | num_pages *= PAGE_SIZE; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3476 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 3477 | ret = btrfs_check_data_free_space(inode, 0, num_pages); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3478 | if (ret) |
| 3479 | goto out_put; |
| 3480 | |
| 3481 | ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages, |
| 3482 | num_pages, num_pages, |
| 3483 | &alloc_hint); |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3484 | /* |
| 3485 | * Our cache requires contiguous chunks so that we don't modify a bunch |
| 3486 | * of metadata or split extents when writing the cache out, which means |
| 3487 | * we can enospc if we are heavily fragmented in addition to just normal |
| 3488 | * out of space conditions. So if we hit this just skip setting up any |
| 3489 | * other block groups for this transaction, maybe we'll unpin enough |
| 3490 | * space the next time around. |
| 3491 | */ |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3492 | if (!ret) |
| 3493 | dcs = BTRFS_DC_SETUP; |
Josef Bacik | 2968b1f | 2015-10-01 12:55:18 -0400 | [diff] [blame] | 3494 | else if (ret == -ENOSPC) |
| 3495 | set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags); |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 3496 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3497 | out_put: |
| 3498 | iput(inode); |
| 3499 | out_free: |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3500 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3501 | out: |
| 3502 | spin_lock(&block_group->lock); |
Josef Bacik | e65cbb9 | 2011-12-13 16:04:54 -0500 | [diff] [blame] | 3503 | if (!ret && dcs == BTRFS_DC_SETUP) |
Josef Bacik | 5b0e95b | 2011-10-06 08:58:24 -0400 | [diff] [blame] | 3504 | block_group->cache_generation = trans->transid; |
Josef Bacik | 2b20982 | 2010-12-03 13:17:53 -0500 | [diff] [blame] | 3505 | block_group->disk_cache_state = dcs; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3506 | spin_unlock(&block_group->lock); |
| 3507 | |
| 3508 | return ret; |
| 3509 | } |
| 3510 | |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3511 | int btrfs_setup_space_cache(struct btrfs_trans_handle *trans, |
| 3512 | struct btrfs_root *root) |
| 3513 | { |
| 3514 | struct btrfs_block_group_cache *cache, *tmp; |
| 3515 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3516 | struct btrfs_path *path; |
| 3517 | |
| 3518 | if (list_empty(&cur_trans->dirty_bgs) || |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 3519 | !btrfs_test_opt(root->fs_info, SPACE_CACHE)) |
Josef Bacik | dcdf7f6 | 2015-03-02 16:37:31 -0500 | [diff] [blame] | 3520 | return 0; |
| 3521 | |
| 3522 | path = btrfs_alloc_path(); |
| 3523 | if (!path) |
| 3524 | return -ENOMEM; |
| 3525 | |
| 3526 | /* Could add new block groups, use _safe just in case */ |
| 3527 | list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs, |
| 3528 | dirty_list) { |
| 3529 | if (cache->disk_cache_state == BTRFS_DC_CLEAR) |
| 3530 | cache_save_setup(cache, trans, path); |
| 3531 | } |
| 3532 | |
| 3533 | btrfs_free_path(path); |
| 3534 | return 0; |
| 3535 | } |
| 3536 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3537 | /* |
| 3538 | * transaction commit does final block group cache writeback during a |
| 3539 | * critical section where nothing is allowed to change the FS. This is |
| 3540 | * required in order for the cache to actually match the block group, |
| 3541 | * but can introduce a lot of latency into the commit. |
| 3542 | * |
| 3543 | * So, btrfs_start_dirty_block_groups is here to kick off block group |
| 3544 | * cache IO. There's a chance we'll have to redo some of it if the |
| 3545 | * block group changes again during the commit, but it greatly reduces |
| 3546 | * the commit latency by getting rid of the easy block groups while |
| 3547 | * we're still allowing others to join the commit. |
| 3548 | */ |
| 3549 | int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3550 | struct btrfs_root *root) |
| 3551 | { |
| 3552 | struct btrfs_block_group_cache *cache; |
| 3553 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3554 | int ret = 0; |
| 3555 | int should_put; |
| 3556 | struct btrfs_path *path = NULL; |
| 3557 | LIST_HEAD(dirty); |
| 3558 | struct list_head *io = &cur_trans->io_bgs; |
| 3559 | int num_started = 0; |
| 3560 | int loops = 0; |
| 3561 | |
| 3562 | spin_lock(&cur_trans->dirty_bgs_lock); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3563 | if (list_empty(&cur_trans->dirty_bgs)) { |
| 3564 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3565 | return 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3566 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3567 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3568 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3569 | |
| 3570 | again: |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3571 | /* |
| 3572 | * make sure all the block groups on our dirty list actually |
| 3573 | * exist |
| 3574 | */ |
| 3575 | btrfs_create_pending_block_groups(trans, root); |
| 3576 | |
| 3577 | if (!path) { |
| 3578 | path = btrfs_alloc_path(); |
| 3579 | if (!path) |
| 3580 | return -ENOMEM; |
| 3581 | } |
| 3582 | |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3583 | /* |
| 3584 | * cache_write_mutex is here only to save us from balance or automatic |
| 3585 | * removal of empty block groups deleting this block group while we are |
| 3586 | * writing out the cache |
| 3587 | */ |
| 3588 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3589 | while (!list_empty(&dirty)) { |
| 3590 | cache = list_first_entry(&dirty, |
| 3591 | struct btrfs_block_group_cache, |
| 3592 | dirty_list); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3593 | /* |
| 3594 | * this can happen if something re-dirties a block |
| 3595 | * group that is already under IO. Just wait for it to |
| 3596 | * finish and then do it all again |
| 3597 | */ |
| 3598 | if (!list_empty(&cache->io_list)) { |
| 3599 | list_del_init(&cache->io_list); |
| 3600 | btrfs_wait_cache_io(root, trans, cache, |
| 3601 | &cache->io_ctl, path, |
| 3602 | cache->key.objectid); |
| 3603 | btrfs_put_block_group(cache); |
| 3604 | } |
| 3605 | |
| 3606 | |
| 3607 | /* |
| 3608 | * btrfs_wait_cache_io uses the cache->dirty_list to decide |
| 3609 | * if it should update the cache_state. Don't delete |
| 3610 | * until after we wait. |
| 3611 | * |
| 3612 | * Since we're not running in the commit critical section |
| 3613 | * we need the dirty_bgs_lock to protect from update_block_group |
| 3614 | */ |
| 3615 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3616 | list_del_init(&cache->dirty_list); |
| 3617 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3618 | |
| 3619 | should_put = 1; |
| 3620 | |
| 3621 | cache_save_setup(cache, trans, path); |
| 3622 | |
| 3623 | if (cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3624 | cache->io_ctl.inode = NULL; |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3625 | ret = btrfs_write_out_cache(root->fs_info, trans, |
| 3626 | cache, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3627 | if (ret == 0 && cache->io_ctl.inode) { |
| 3628 | num_started++; |
| 3629 | should_put = 0; |
| 3630 | |
| 3631 | /* |
| 3632 | * the cache_write_mutex is protecting |
| 3633 | * the io_list |
| 3634 | */ |
| 3635 | list_add_tail(&cache->io_list, io); |
| 3636 | } else { |
| 3637 | /* |
| 3638 | * if we failed to write the cache, the |
| 3639 | * generation will be bad and life goes on |
| 3640 | */ |
| 3641 | ret = 0; |
| 3642 | } |
| 3643 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3644 | if (!ret) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3645 | ret = write_one_cache_group(trans, root, path, cache); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3646 | /* |
| 3647 | * Our block group might still be attached to the list |
| 3648 | * of new block groups in the transaction handle of some |
| 3649 | * other task (struct btrfs_trans_handle->new_bgs). This |
| 3650 | * means its block group item isn't yet in the extent |
| 3651 | * tree. If this happens ignore the error, as we will |
| 3652 | * try again later in the critical section of the |
| 3653 | * transaction commit. |
| 3654 | */ |
| 3655 | if (ret == -ENOENT) { |
| 3656 | ret = 0; |
| 3657 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3658 | if (list_empty(&cache->dirty_list)) { |
| 3659 | list_add_tail(&cache->dirty_list, |
| 3660 | &cur_trans->dirty_bgs); |
| 3661 | btrfs_get_block_group(cache); |
| 3662 | } |
| 3663 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3664 | } else if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3665 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3666 | } |
| 3667 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3668 | |
| 3669 | /* if its not on the io list, we need to put the block group */ |
| 3670 | if (should_put) |
| 3671 | btrfs_put_block_group(cache); |
| 3672 | |
| 3673 | if (ret) |
| 3674 | break; |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3675 | |
| 3676 | /* |
| 3677 | * Avoid blocking other tasks for too long. It might even save |
| 3678 | * us from writing caches for block groups that are going to be |
| 3679 | * removed. |
| 3680 | */ |
| 3681 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 3682 | mutex_lock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3683 | } |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3684 | mutex_unlock(&trans->transaction->cache_write_mutex); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3685 | |
| 3686 | /* |
| 3687 | * go through delayed refs for all the stuff we've just kicked off |
| 3688 | * and then loop back (just once) |
| 3689 | */ |
| 3690 | ret = btrfs_run_delayed_refs(trans, root, 0); |
| 3691 | if (!ret && loops == 0) { |
| 3692 | loops++; |
| 3693 | spin_lock(&cur_trans->dirty_bgs_lock); |
| 3694 | list_splice_init(&cur_trans->dirty_bgs, &dirty); |
Filipe Manana | b58d1a9 | 2015-04-25 18:29:16 +0100 | [diff] [blame] | 3695 | /* |
| 3696 | * dirty_bgs_lock protects us from concurrent block group |
| 3697 | * deletes too (not just cache_write_mutex). |
| 3698 | */ |
| 3699 | if (!list_empty(&dirty)) { |
| 3700 | spin_unlock(&cur_trans->dirty_bgs_lock); |
| 3701 | goto again; |
| 3702 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3703 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Liu Bo | c79a175 | 2016-07-20 17:44:12 -0700 | [diff] [blame] | 3704 | } else if (ret < 0) { |
| 3705 | btrfs_cleanup_dirty_bgs(cur_trans, root); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3706 | } |
| 3707 | |
| 3708 | btrfs_free_path(path); |
| 3709 | return ret; |
| 3710 | } |
| 3711 | |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 3712 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 3713 | struct btrfs_root *root) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3714 | { |
Yan Zheng | 4a8c9a6 | 2009-07-22 10:07:05 -0400 | [diff] [blame] | 3715 | struct btrfs_block_group_cache *cache; |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3716 | struct btrfs_transaction *cur_trans = trans->transaction; |
| 3717 | int ret = 0; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3718 | int should_put; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3719 | struct btrfs_path *path; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3720 | struct list_head *io = &cur_trans->io_bgs; |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3721 | int num_started = 0; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3722 | |
| 3723 | path = btrfs_alloc_path(); |
| 3724 | if (!path) |
| 3725 | return -ENOMEM; |
| 3726 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3727 | /* |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3728 | * Even though we are in the critical section of the transaction commit, |
| 3729 | * we can still have concurrent tasks adding elements to this |
| 3730 | * transaction's list of dirty block groups. These tasks correspond to |
| 3731 | * endio free space workers started when writeback finishes for a |
| 3732 | * space cache, which run inode.c:btrfs_finish_ordered_io(), and can |
| 3733 | * allocate new block groups as a result of COWing nodes of the root |
| 3734 | * tree when updating the free space inode. The writeback for the space |
| 3735 | * caches is triggered by an earlier call to |
| 3736 | * btrfs_start_dirty_block_groups() and iterations of the following |
| 3737 | * loop. |
| 3738 | * 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] | 3739 | * delayed refs to make sure we have the best chance at doing this all |
| 3740 | * in one shot. |
| 3741 | */ |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3742 | spin_lock(&cur_trans->dirty_bgs_lock); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3743 | while (!list_empty(&cur_trans->dirty_bgs)) { |
| 3744 | cache = list_first_entry(&cur_trans->dirty_bgs, |
| 3745 | struct btrfs_block_group_cache, |
| 3746 | dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3747 | |
| 3748 | /* |
| 3749 | * this can happen if cache_save_setup re-dirties a block |
| 3750 | * group that is already under IO. Just wait for it to |
| 3751 | * finish and then do it all again |
| 3752 | */ |
| 3753 | if (!list_empty(&cache->io_list)) { |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3754 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3755 | list_del_init(&cache->io_list); |
| 3756 | btrfs_wait_cache_io(root, trans, cache, |
| 3757 | &cache->io_ctl, path, |
| 3758 | cache->key.objectid); |
| 3759 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3760 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3761 | } |
| 3762 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3763 | /* |
| 3764 | * don't remove from the dirty list until after we've waited |
| 3765 | * on any pending IO |
| 3766 | */ |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3767 | list_del_init(&cache->dirty_list); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3768 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3769 | should_put = 1; |
| 3770 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3771 | cache_save_setup(cache, trans, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3772 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3773 | if (!ret) |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3774 | ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1); |
| 3775 | |
| 3776 | if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) { |
| 3777 | cache->io_ctl.inode = NULL; |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 3778 | ret = btrfs_write_out_cache(root->fs_info, trans, |
| 3779 | cache, path); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3780 | if (ret == 0 && cache->io_ctl.inode) { |
| 3781 | num_started++; |
| 3782 | should_put = 0; |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3783 | list_add_tail(&cache->io_list, io); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3784 | } else { |
| 3785 | /* |
| 3786 | * if we failed to write the cache, the |
| 3787 | * generation will be bad and life goes on |
| 3788 | */ |
| 3789 | ret = 0; |
| 3790 | } |
| 3791 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3792 | if (!ret) { |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3793 | ret = write_one_cache_group(trans, root, path, cache); |
Filipe Manana | 2bc0bb5 | 2015-12-30 02:42:30 +0000 | [diff] [blame] | 3794 | /* |
| 3795 | * One of the free space endio workers might have |
| 3796 | * created a new block group while updating a free space |
| 3797 | * cache's inode (at inode.c:btrfs_finish_ordered_io()) |
| 3798 | * and hasn't released its transaction handle yet, in |
| 3799 | * which case the new block group is still attached to |
| 3800 | * its transaction handle and its creation has not |
| 3801 | * finished yet (no block group item in the extent tree |
| 3802 | * yet, etc). If this is the case, wait for all free |
| 3803 | * space endio workers to finish and retry. This is a |
| 3804 | * a very rare case so no need for a more efficient and |
| 3805 | * complex approach. |
| 3806 | */ |
| 3807 | if (ret == -ENOENT) { |
| 3808 | wait_event(cur_trans->writer_wait, |
| 3809 | atomic_read(&cur_trans->num_writers) == 1); |
| 3810 | ret = write_one_cache_group(trans, root, path, |
| 3811 | cache); |
| 3812 | } |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3813 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 3814 | btrfs_abort_transaction(trans, ret); |
Filipe Manana | ff1f825 | 2015-05-06 16:15:09 +0100 | [diff] [blame] | 3815 | } |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3816 | |
| 3817 | /* if its not on the io list, we need to put the block group */ |
| 3818 | if (should_put) |
| 3819 | btrfs_put_block_group(cache); |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3820 | spin_lock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3821 | } |
Filipe Manana | e44081e | 2015-12-18 03:02:48 +0000 | [diff] [blame] | 3822 | spin_unlock(&cur_trans->dirty_bgs_lock); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3823 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 3824 | while (!list_empty(io)) { |
| 3825 | cache = list_first_entry(io, struct btrfs_block_group_cache, |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3826 | io_list); |
| 3827 | list_del_init(&cache->io_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 3828 | btrfs_wait_cache_io(root, trans, cache, |
| 3829 | &cache->io_ctl, path, cache->key.objectid); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 3830 | btrfs_put_block_group(cache); |
| 3831 | } |
| 3832 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3833 | btrfs_free_path(path); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 3834 | return ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 3835 | } |
| 3836 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3837 | int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr) |
| 3838 | { |
| 3839 | struct btrfs_block_group_cache *block_group; |
| 3840 | int readonly = 0; |
| 3841 | |
| 3842 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
| 3843 | if (!block_group || block_group->ro) |
| 3844 | readonly = 1; |
| 3845 | if (block_group) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 3846 | btrfs_put_block_group(block_group); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 3847 | return readonly; |
| 3848 | } |
| 3849 | |
Filipe Manana | f78c436 | 2016-05-09 13:15:41 +0100 | [diff] [blame] | 3850 | bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3851 | { |
| 3852 | struct btrfs_block_group_cache *bg; |
| 3853 | bool ret = true; |
| 3854 | |
| 3855 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3856 | if (!bg) |
| 3857 | return false; |
| 3858 | |
| 3859 | spin_lock(&bg->lock); |
| 3860 | if (bg->ro) |
| 3861 | ret = false; |
| 3862 | else |
| 3863 | atomic_inc(&bg->nocow_writers); |
| 3864 | spin_unlock(&bg->lock); |
| 3865 | |
| 3866 | /* no put on block group, done by btrfs_dec_nocow_writers */ |
| 3867 | if (!ret) |
| 3868 | btrfs_put_block_group(bg); |
| 3869 | |
| 3870 | return ret; |
| 3871 | |
| 3872 | } |
| 3873 | |
| 3874 | void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr) |
| 3875 | { |
| 3876 | struct btrfs_block_group_cache *bg; |
| 3877 | |
| 3878 | bg = btrfs_lookup_block_group(fs_info, bytenr); |
| 3879 | ASSERT(bg); |
| 3880 | if (atomic_dec_and_test(&bg->nocow_writers)) |
| 3881 | wake_up_atomic_t(&bg->nocow_writers); |
| 3882 | /* |
| 3883 | * Once for our lookup and once for the lookup done by a previous call |
| 3884 | * to btrfs_inc_nocow_writers() |
| 3885 | */ |
| 3886 | btrfs_put_block_group(bg); |
| 3887 | btrfs_put_block_group(bg); |
| 3888 | } |
| 3889 | |
| 3890 | static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a) |
| 3891 | { |
| 3892 | schedule(); |
| 3893 | return 0; |
| 3894 | } |
| 3895 | |
| 3896 | void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg) |
| 3897 | { |
| 3898 | wait_on_atomic_t(&bg->nocow_writers, |
| 3899 | btrfs_wait_nocow_writers_atomic_t, |
| 3900 | TASK_UNINTERRUPTIBLE); |
| 3901 | } |
| 3902 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3903 | static const char *alloc_name(u64 flags) |
| 3904 | { |
| 3905 | switch (flags) { |
| 3906 | case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA: |
| 3907 | return "mixed"; |
| 3908 | case BTRFS_BLOCK_GROUP_METADATA: |
| 3909 | return "metadata"; |
| 3910 | case BTRFS_BLOCK_GROUP_DATA: |
| 3911 | return "data"; |
| 3912 | case BTRFS_BLOCK_GROUP_SYSTEM: |
| 3913 | return "system"; |
| 3914 | default: |
| 3915 | WARN_ON(1); |
| 3916 | return "invalid-combination"; |
| 3917 | }; |
| 3918 | } |
| 3919 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3920 | static int update_space_info(struct btrfs_fs_info *info, u64 flags, |
| 3921 | u64 total_bytes, u64 bytes_used, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3922 | u64 bytes_readonly, |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3923 | struct btrfs_space_info **space_info) |
| 3924 | { |
| 3925 | struct btrfs_space_info *found; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3926 | int i; |
| 3927 | int factor; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3928 | int ret; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3929 | |
| 3930 | if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 | |
| 3931 | BTRFS_BLOCK_GROUP_RAID10)) |
| 3932 | factor = 2; |
| 3933 | else |
| 3934 | factor = 1; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3935 | |
| 3936 | found = __find_space_info(info, flags); |
| 3937 | if (found) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3938 | spin_lock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3939 | found->total_bytes += total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3940 | found->disk_total += total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3941 | found->bytes_used += bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3942 | found->disk_used += bytes_used * factor; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3943 | found->bytes_readonly += bytes_readonly; |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 3944 | if (total_bytes > 0) |
| 3945 | found->full = 0; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 3946 | space_info_add_new_bytes(info, found, total_bytes - |
| 3947 | bytes_used - bytes_readonly); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3948 | spin_unlock(&found->lock); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3949 | *space_info = found; |
| 3950 | return 0; |
| 3951 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 3952 | found = kzalloc(sizeof(*found), GFP_NOFS); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3953 | if (!found) |
| 3954 | return -ENOMEM; |
| 3955 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 3956 | ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 3957 | if (ret) { |
| 3958 | kfree(found); |
| 3959 | return ret; |
| 3960 | } |
| 3961 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 3962 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3963 | INIT_LIST_HEAD(&found->block_groups[i]); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 3964 | init_rwsem(&found->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 3965 | spin_lock_init(&found->lock); |
Ilya Dryomov | 52ba692 | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 3966 | found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3967 | found->total_bytes = total_bytes; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 3968 | found->disk_total = total_bytes * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3969 | found->bytes_used = bytes_used; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 3970 | found->disk_used = bytes_used * factor; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3971 | found->bytes_pinned = 0; |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 3972 | found->bytes_reserved = 0; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 3973 | found->bytes_readonly = bytes_readonly; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3974 | found->bytes_may_use = 0; |
Filipe Manana | 6af3e3a | 2015-09-07 10:41:12 +0100 | [diff] [blame] | 3975 | found->full = 0; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 3976 | found->max_extent_size = 0; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 3977 | found->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 3978 | found->chunk_alloc = 0; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 3979 | found->flush = 0; |
| 3980 | init_waitqueue_head(&found->wait); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 3981 | INIT_LIST_HEAD(&found->ro_bgs); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 3982 | INIT_LIST_HEAD(&found->tickets); |
| 3983 | INIT_LIST_HEAD(&found->priority_tickets); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3984 | |
| 3985 | ret = kobject_init_and_add(&found->kobj, &space_info_ktype, |
| 3986 | info->space_info_kobj, "%s", |
| 3987 | alloc_name(found->flags)); |
| 3988 | if (ret) { |
| 3989 | kfree(found); |
| 3990 | return ret; |
| 3991 | } |
| 3992 | |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3993 | *space_info = found; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 3994 | list_add_rcu(&found->list, &info->space_info); |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 3995 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 3996 | info->data_sinfo = found; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 3997 | |
| 3998 | return ret; |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 3999 | } |
| 4000 | |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4001 | static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 4002 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 4003 | u64 extra_flags = chunk_to_extended(flags) & |
| 4004 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4005 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4006 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4007 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4008 | fs_info->avail_data_alloc_bits |= extra_flags; |
| 4009 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 4010 | fs_info->avail_metadata_alloc_bits |= extra_flags; |
| 4011 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 4012 | fs_info->avail_system_alloc_bits |= extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4013 | write_sequnlock(&fs_info->profiles_lock); |
Chris Mason | 8790d50 | 2008-04-03 16:29:03 -0400 | [diff] [blame] | 4014 | } |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4015 | |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4016 | /* |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4017 | * returns target flags in extended format or 0 if restripe for this |
| 4018 | * chunk_type is not in progress |
Ilya Dryomov | c6664b4 | 2012-04-12 16:03:56 -0400 | [diff] [blame] | 4019 | * |
| 4020 | * should be called with either volume_mutex or balance_lock held |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4021 | */ |
| 4022 | static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags) |
| 4023 | { |
| 4024 | struct btrfs_balance_control *bctl = fs_info->balance_ctl; |
| 4025 | u64 target = 0; |
| 4026 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4027 | if (!bctl) |
| 4028 | return 0; |
| 4029 | |
| 4030 | if (flags & BTRFS_BLOCK_GROUP_DATA && |
| 4031 | bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4032 | target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target; |
| 4033 | } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM && |
| 4034 | bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4035 | target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target; |
| 4036 | } else if (flags & BTRFS_BLOCK_GROUP_METADATA && |
| 4037 | bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) { |
| 4038 | target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target; |
| 4039 | } |
| 4040 | |
| 4041 | return target; |
| 4042 | } |
| 4043 | |
| 4044 | /* |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4045 | * @flags: available profiles in extended format (see ctree.h) |
| 4046 | * |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4047 | * Returns reduced profile in chunk format. If profile changing is in |
| 4048 | * progress (either running or paused) picks the target profile (if it's |
| 4049 | * already available), otherwise falls back to plain reducing. |
Ilya Dryomov | a46d11a | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4050 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4051 | static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags) |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4052 | { |
Miao Xie | 9566997 | 2014-07-24 11:37:14 +0800 | [diff] [blame] | 4053 | u64 num_devices = root->fs_info->fs_devices->rw_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4054 | u64 target; |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4055 | u64 raid_type; |
| 4056 | u64 allowed = 0; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4057 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4058 | /* |
| 4059 | * see if restripe for this chunk_type is in progress, if so |
| 4060 | * try to reduce to the target profile |
| 4061 | */ |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4062 | spin_lock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4063 | target = get_restripe_target(root->fs_info, flags); |
| 4064 | if (target) { |
| 4065 | /* pick target profile only if it's already available */ |
| 4066 | if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) { |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4067 | spin_unlock(&root->fs_info->balance_lock); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 4068 | return extended_to_chunk(target); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 4069 | } |
| 4070 | } |
| 4071 | spin_unlock(&root->fs_info->balance_lock); |
| 4072 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4073 | /* First, mask out the RAID levels which aren't possible */ |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4074 | for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) { |
| 4075 | if (num_devices >= btrfs_raid_array[raid_type].devs_min) |
| 4076 | allowed |= btrfs_raid_group[raid_type]; |
| 4077 | } |
| 4078 | allowed &= flags; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 4079 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4080 | if (allowed & BTRFS_BLOCK_GROUP_RAID6) |
| 4081 | allowed = BTRFS_BLOCK_GROUP_RAID6; |
| 4082 | else if (allowed & BTRFS_BLOCK_GROUP_RAID5) |
| 4083 | allowed = BTRFS_BLOCK_GROUP_RAID5; |
| 4084 | else if (allowed & BTRFS_BLOCK_GROUP_RAID10) |
| 4085 | allowed = BTRFS_BLOCK_GROUP_RAID10; |
| 4086 | else if (allowed & BTRFS_BLOCK_GROUP_RAID1) |
| 4087 | allowed = BTRFS_BLOCK_GROUP_RAID1; |
| 4088 | else if (allowed & BTRFS_BLOCK_GROUP_RAID0) |
| 4089 | allowed = BTRFS_BLOCK_GROUP_RAID0; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4090 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4091 | flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4092 | |
Zhao Lei | 9c170b2 | 2015-09-15 21:08:08 +0800 | [diff] [blame] | 4093 | return extended_to_chunk(flags | allowed); |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 4094 | } |
| 4095 | |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4096 | static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4097 | { |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4098 | unsigned seq; |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4099 | u64 flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4100 | |
| 4101 | do { |
Filipe Manana | f8213bd | 2014-04-24 15:15:29 +0100 | [diff] [blame] | 4102 | flags = orig_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 4103 | seq = read_seqbegin(&root->fs_info->profiles_lock); |
| 4104 | |
| 4105 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 4106 | flags |= root->fs_info->avail_data_alloc_bits; |
| 4107 | else if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 4108 | flags |= root->fs_info->avail_system_alloc_bits; |
| 4109 | else if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 4110 | flags |= root->fs_info->avail_metadata_alloc_bits; |
| 4111 | } while (read_seqretry(&root->fs_info->profiles_lock, seq)); |
Ilya Dryomov | 6fef8df | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 4112 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4113 | return btrfs_reduce_alloc_profile(root, flags); |
| 4114 | } |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4115 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 4116 | u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4117 | { |
| 4118 | u64 flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4119 | u64 ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4120 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 4121 | if (data) |
| 4122 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 4123 | else if (root == root->fs_info->chunk_root) |
| 4124 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 4125 | else |
| 4126 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 4127 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4128 | ret = get_alloc_profile(root, flags); |
| 4129 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4130 | } |
| 4131 | |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4132 | int btrfs_alloc_data_chunk_ondemand(struct inode *inode, u64 bytes) |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4133 | { |
| 4134 | struct btrfs_space_info *data_sinfo; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4135 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4136 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4137 | u64 used; |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4138 | int ret = 0; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4139 | int need_commit = 2; |
| 4140 | int have_pinned_space; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4141 | |
| 4142 | /* make sure bytes are sectorsize aligned */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4143 | bytes = ALIGN(bytes, root->fs_info->sectorsize); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4144 | |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4145 | if (btrfs_is_free_space_inode(inode)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4146 | need_commit = 0; |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4147 | ASSERT(current->journal_info); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 4148 | } |
| 4149 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4150 | data_sinfo = fs_info->data_sinfo; |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4151 | if (!data_sinfo) |
| 4152 | goto alloc; |
| 4153 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4154 | again: |
| 4155 | /* make sure we have enough space to handle the data first */ |
| 4156 | spin_lock(&data_sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 4157 | used = data_sinfo->bytes_used + data_sinfo->bytes_reserved + |
| 4158 | data_sinfo->bytes_pinned + data_sinfo->bytes_readonly + |
| 4159 | data_sinfo->bytes_may_use; |
Josef Bacik | ab6e2410 | 2010-03-19 14:38:13 +0000 | [diff] [blame] | 4160 | |
| 4161 | if (used + bytes > data_sinfo->total_bytes) { |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4162 | struct btrfs_trans_handle *trans; |
| 4163 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4164 | /* |
| 4165 | * if we don't have enough free bytes in this space then we need |
| 4166 | * to alloc a new chunk. |
| 4167 | */ |
Zhao Lei | b9fd47c | 2015-02-09 14:40:20 +0800 | [diff] [blame] | 4168 | if (!data_sinfo->full) { |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4169 | u64 alloc_target; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4170 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4171 | data_sinfo->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4172 | spin_unlock(&data_sinfo->lock); |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4173 | alloc: |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4174 | alloc_target = btrfs_get_alloc_profile(root, 1); |
Miao Xie | 9dced18 | 2013-10-25 17:33:36 +0800 | [diff] [blame] | 4175 | /* |
| 4176 | * It is ugly that we don't call nolock join |
| 4177 | * transaction for the free space inode case here. |
| 4178 | * But it is safe because we only do the data space |
| 4179 | * reservation for the free space cache in the |
| 4180 | * transaction context, the common join transaction |
| 4181 | * just increase the counter of the current transaction |
| 4182 | * handler, doesn't try to acquire the trans_lock of |
| 4183 | * the fs. |
| 4184 | */ |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4185 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4186 | if (IS_ERR(trans)) |
| 4187 | return PTR_ERR(trans); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4188 | |
| 4189 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4190 | alloc_target, |
| 4191 | CHUNK_ALLOC_NO_FORCE); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4192 | btrfs_end_transaction(trans, root); |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4193 | if (ret < 0) { |
| 4194 | if (ret != -ENOSPC) |
| 4195 | return ret; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4196 | else { |
| 4197 | have_pinned_space = 1; |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4198 | goto commit_trans; |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4199 | } |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4200 | } |
Chris Mason | 33b4d47 | 2009-09-22 14:45:50 -0400 | [diff] [blame] | 4201 | |
Li Zefan | b4d7c3c | 2012-07-09 20:21:07 -0600 | [diff] [blame] | 4202 | if (!data_sinfo) |
| 4203 | data_sinfo = fs_info->data_sinfo; |
| 4204 | |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4205 | goto again; |
| 4206 | } |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4207 | |
| 4208 | /* |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4209 | * If we don't have enough pinned space to deal with this |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4210 | * allocation, and no removed chunk in current transaction, |
| 4211 | * don't bother committing the transaction. |
Josef Bacik | f2bb8f5 | 2011-05-25 13:10:16 -0400 | [diff] [blame] | 4212 | */ |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4213 | have_pinned_space = percpu_counter_compare( |
| 4214 | &data_sinfo->total_bytes_pinned, |
| 4215 | used + bytes - data_sinfo->total_bytes); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4216 | spin_unlock(&data_sinfo->lock); |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4217 | |
| 4218 | /* commit the current transaction and try again */ |
Miao Xie | d52a5b5 | 2011-01-05 10:07:18 +0000 | [diff] [blame] | 4219 | commit_trans: |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4220 | if (need_commit && |
Josef Bacik | a4abeea | 2011-04-11 17:25:13 -0400 | [diff] [blame] | 4221 | !atomic_read(&root->fs_info->open_ioctl_trans)) { |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4222 | need_commit--; |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4223 | |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4224 | if (need_commit > 0) { |
| 4225 | btrfs_start_delalloc_roots(fs_info, 0, -1); |
Filipe Manana | 578def7 | 2016-04-26 15:36:38 +0100 | [diff] [blame] | 4226 | btrfs_wait_ordered_roots(fs_info, -1, 0, (u64)-1); |
Zhao Lei | e1746e8 | 2015-12-01 18:39:40 +0800 | [diff] [blame] | 4227 | } |
Zhao Lei | 9a4e727 | 2015-04-09 12:34:43 +0800 | [diff] [blame] | 4228 | |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 4229 | trans = btrfs_join_transaction(root); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 4230 | if (IS_ERR(trans)) |
| 4231 | return PTR_ERR(trans); |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4232 | if (have_pinned_space >= 0 || |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 4233 | test_bit(BTRFS_TRANS_HAVE_FREE_BGS, |
| 4234 | &trans->transaction->flags) || |
Zhao Lei | c99f1b0 | 2015-03-02 19:32:20 +0800 | [diff] [blame] | 4235 | need_commit > 0) { |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4236 | ret = btrfs_commit_transaction(trans, root); |
| 4237 | if (ret) |
| 4238 | return ret; |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4239 | /* |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 4240 | * The cleaner kthread might still be doing iput |
| 4241 | * operations. Wait for it to finish so that |
| 4242 | * more space is released. |
Zhao Lei | d7c1517 | 2015-02-26 10:49:20 +0800 | [diff] [blame] | 4243 | */ |
Filipe Manana | c2d6cb1 | 2016-01-15 11:05:12 +0000 | [diff] [blame] | 4244 | mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex); |
| 4245 | mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex); |
Zhao Lei | 94b947b | 2015-02-14 13:23:45 +0800 | [diff] [blame] | 4246 | goto again; |
| 4247 | } else { |
| 4248 | btrfs_end_transaction(trans, root); |
| 4249 | } |
Josef Bacik | 4e06bdd | 2009-02-20 10:59:53 -0500 | [diff] [blame] | 4250 | } |
| 4251 | |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 4252 | trace_btrfs_space_reservation(root->fs_info, |
| 4253 | "space_info:enospc", |
| 4254 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4255 | return -ENOSPC; |
| 4256 | } |
| 4257 | data_sinfo->bytes_may_use += bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 4258 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4259 | data_sinfo->flags, bytes, 1); |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4260 | spin_unlock(&data_sinfo->lock); |
| 4261 | |
Dongsheng Yang | 237c0e9 | 2014-12-29 06:23:05 -0500 | [diff] [blame] | 4262 | return ret; |
Josef Bacik | 6a63209 | 2009-02-20 11:00:09 -0500 | [diff] [blame] | 4263 | } |
| 4264 | |
| 4265 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4266 | * New check_data_free_space() with ability for precious data reservation |
| 4267 | * Will replace old btrfs_check_data_free_space(), but for patch split, |
| 4268 | * add a new function first and then replace it. |
| 4269 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 4270 | 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] | 4271 | { |
| 4272 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4273 | int ret; |
| 4274 | |
| 4275 | /* align the range */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4276 | len = round_up(start + len, root->fs_info->sectorsize) - |
| 4277 | round_down(start, root->fs_info->sectorsize); |
| 4278 | start = round_down(start, root->fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4279 | |
| 4280 | ret = btrfs_alloc_data_chunk_ondemand(inode, len); |
| 4281 | if (ret < 0) |
| 4282 | return ret; |
| 4283 | |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4284 | /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */ |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4285 | ret = btrfs_qgroup_reserve_data(inode, start, len); |
Josef Bacik | 1e5ec2e | 2016-09-15 14:57:48 -0400 | [diff] [blame] | 4286 | if (ret) |
| 4287 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4288 | return ret; |
| 4289 | } |
| 4290 | |
| 4291 | /* |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4292 | * Called if we need to clear a data reservation for this inode |
| 4293 | * Normally in a error case. |
| 4294 | * |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4295 | * This one will *NOT* use accurate qgroup reserved space API, just for case |
| 4296 | * which we can't sleep and is sure it won't affect qgroup reserved space. |
| 4297 | * Like clear_bit_hook(). |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4298 | */ |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4299 | void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start, |
| 4300 | u64 len) |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4301 | { |
| 4302 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4303 | struct btrfs_space_info *data_sinfo; |
| 4304 | |
| 4305 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4306 | len = round_up(start + len, root->fs_info->sectorsize) - |
| 4307 | round_down(start, root->fs_info->sectorsize); |
| 4308 | start = round_down(start, root->fs_info->sectorsize); |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4309 | |
Qu Wenruo | 4ceff07 | 2015-09-08 17:22:42 +0800 | [diff] [blame] | 4310 | data_sinfo = root->fs_info->data_sinfo; |
| 4311 | spin_lock(&data_sinfo->lock); |
| 4312 | if (WARN_ON(data_sinfo->bytes_may_use < len)) |
| 4313 | data_sinfo->bytes_may_use = 0; |
| 4314 | else |
| 4315 | data_sinfo->bytes_may_use -= len; |
| 4316 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 4317 | data_sinfo->flags, len, 0); |
| 4318 | spin_unlock(&data_sinfo->lock); |
| 4319 | } |
| 4320 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4321 | /* |
| 4322 | * Called if we need to clear a data reservation for this inode |
| 4323 | * Normally in a error case. |
| 4324 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 4325 | * 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] | 4326 | * space framework. |
| 4327 | */ |
| 4328 | void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len) |
| 4329 | { |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4330 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 4331 | |
| 4332 | /* Make sure the range is aligned to sectorsize */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 4333 | len = round_up(start + len, root->fs_info->sectorsize) - |
| 4334 | round_down(start, root->fs_info->sectorsize); |
| 4335 | start = round_down(start, root->fs_info->sectorsize); |
Jeff Mahoney | 0c476a5 | 2016-11-18 21:52:40 -0500 | [diff] [blame] | 4336 | |
Qu Wenruo | 51773be | 2015-10-08 18:19:37 +0800 | [diff] [blame] | 4337 | btrfs_free_reserved_data_space_noquota(inode, start, len); |
| 4338 | btrfs_qgroup_free_data(inode, start, len); |
| 4339 | } |
| 4340 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4341 | static void force_metadata_allocation(struct btrfs_fs_info *info) |
| 4342 | { |
| 4343 | struct list_head *head = &info->space_info; |
| 4344 | struct btrfs_space_info *found; |
| 4345 | |
| 4346 | rcu_read_lock(); |
| 4347 | list_for_each_entry_rcu(found, head, list) { |
| 4348 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4349 | found->force_alloc = CHUNK_ALLOC_FORCE; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4350 | } |
| 4351 | rcu_read_unlock(); |
| 4352 | } |
| 4353 | |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4354 | static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global) |
| 4355 | { |
| 4356 | return (global->size << 1); |
| 4357 | } |
| 4358 | |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4359 | static int should_alloc_chunk(struct btrfs_root *root, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4360 | struct btrfs_space_info *sinfo, int force) |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4361 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4362 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4363 | u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly; |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4364 | u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved; |
Chris Mason | e5bc245 | 2010-10-26 13:37:56 -0400 | [diff] [blame] | 4365 | u64 thresh; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4366 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4367 | if (force == CHUNK_ALLOC_FORCE) |
| 4368 | return 1; |
| 4369 | |
| 4370 | /* |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4371 | * We need to take into account the global rsv because for all intents |
| 4372 | * and purposes it's used space. Don't worry about locking the |
| 4373 | * global_rsv, it doesn't change except when the transaction commits. |
| 4374 | */ |
Josef Bacik | 54338b5 | 2012-08-14 16:20:52 -0400 | [diff] [blame] | 4375 | if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA) |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4376 | num_allocated += calc_global_rsv_need_space(global_rsv); |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 4377 | |
| 4378 | /* |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4379 | * in limited mode, we want to have some free space up to |
| 4380 | * about 1% of the FS size. |
| 4381 | */ |
| 4382 | if (force == CHUNK_ALLOC_LIMITED) { |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 4383 | thresh = btrfs_super_total_bytes(root->fs_info->super_copy); |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4384 | thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1)); |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4385 | |
| 4386 | if (num_bytes - num_allocated < thresh) |
| 4387 | return 1; |
| 4388 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4389 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4390 | if (num_allocated + SZ_2M < div_factor(num_bytes, 8)) |
Josef Bacik | 14ed0ca | 2010-10-15 15:23:48 -0400 | [diff] [blame] | 4391 | return 0; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4392 | return 1; |
| 4393 | } |
| 4394 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4395 | static u64 get_profile_num_devs(struct btrfs_root *root, u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4396 | { |
| 4397 | u64 num_dev; |
| 4398 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 4399 | if (type & (BTRFS_BLOCK_GROUP_RAID10 | |
| 4400 | BTRFS_BLOCK_GROUP_RAID0 | |
| 4401 | BTRFS_BLOCK_GROUP_RAID5 | |
| 4402 | BTRFS_BLOCK_GROUP_RAID6)) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4403 | num_dev = root->fs_info->fs_devices->rw_devices; |
| 4404 | else if (type & BTRFS_BLOCK_GROUP_RAID1) |
| 4405 | num_dev = 2; |
| 4406 | else |
| 4407 | num_dev = 1; /* DUP or single */ |
| 4408 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4409 | return num_dev; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4410 | } |
| 4411 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4412 | /* |
| 4413 | * If @is_allocation is true, reserve space in the system space info necessary |
| 4414 | * for allocating a chunk, otherwise if it's false, reserve space necessary for |
| 4415 | * removing a chunk. |
| 4416 | */ |
| 4417 | void check_system_chunk(struct btrfs_trans_handle *trans, |
| 4418 | struct btrfs_root *root, |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4419 | u64 type) |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4420 | { |
| 4421 | struct btrfs_space_info *info; |
| 4422 | u64 left; |
| 4423 | u64 thresh; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4424 | int ret = 0; |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4425 | u64 num_devs; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4426 | |
| 4427 | /* |
| 4428 | * Needed because we can end up allocating a system chunk and for an |
| 4429 | * atomic and race free space reservation in the chunk block reserve. |
| 4430 | */ |
| 4431 | ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex)); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4432 | |
| 4433 | info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 4434 | spin_lock(&info->lock); |
| 4435 | left = info->total_bytes - info->bytes_used - info->bytes_pinned - |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4436 | info->bytes_reserved - info->bytes_readonly - |
| 4437 | info->bytes_may_use; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4438 | spin_unlock(&info->lock); |
| 4439 | |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4440 | num_devs = get_profile_num_devs(root, type); |
| 4441 | |
| 4442 | /* num_devs device items to update and 1 chunk item to add or remove */ |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 4443 | thresh = btrfs_calc_trunc_metadata_size(root->fs_info, num_devs) + |
| 4444 | btrfs_calc_trans_metadata_size(root->fs_info, 1); |
Filipe Manana | 39c2d7f | 2015-05-20 14:01:55 +0100 | [diff] [blame] | 4445 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 4446 | if (left < thresh && btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 4447 | btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu", |
| 4448 | left, thresh, type); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 4449 | dump_space_info(root->fs_info, info, 0, 0); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4450 | } |
| 4451 | |
| 4452 | if (left < thresh) { |
| 4453 | u64 flags; |
| 4454 | |
| 4455 | flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0); |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 4456 | /* |
| 4457 | * Ignore failure to create system chunk. We might end up not |
| 4458 | * needing it, as we might not need to COW all nodes/leafs from |
| 4459 | * the paths we visit in the chunk tree (they were already COWed |
| 4460 | * or created in the current transaction for example). |
| 4461 | */ |
| 4462 | ret = btrfs_alloc_chunk(trans, root, flags); |
| 4463 | } |
| 4464 | |
| 4465 | if (!ret) { |
| 4466 | ret = btrfs_block_rsv_add(root->fs_info->chunk_root, |
| 4467 | &root->fs_info->chunk_block_rsv, |
| 4468 | thresh, BTRFS_RESERVE_NO_FLUSH); |
| 4469 | if (!ret) |
| 4470 | trans->chunk_bytes_reserved += thresh; |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4471 | } |
| 4472 | } |
| 4473 | |
Liu Bo | 28b737f | 2016-07-29 11:09:50 -0700 | [diff] [blame] | 4474 | /* |
| 4475 | * If force is CHUNK_ALLOC_FORCE: |
| 4476 | * - return 1 if it successfully allocates a chunk, |
| 4477 | * - return errors including -ENOSPC otherwise. |
| 4478 | * If force is NOT CHUNK_ALLOC_FORCE: |
| 4479 | * - return 0 if it doesn't need to allocate a new chunk, |
| 4480 | * - return 1 if it successfully allocates a chunk, |
| 4481 | * - return errors including -ENOSPC otherwise. |
| 4482 | */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4483 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4484 | struct btrfs_root *extent_root, u64 flags, int force) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4485 | { |
| 4486 | struct btrfs_space_info *space_info; |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4487 | struct btrfs_fs_info *fs_info = extent_root->fs_info; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4488 | int wait_for_alloc = 0; |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 4489 | int ret = 0; |
| 4490 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4491 | /* Don't re-enter if we're already allocating a chunk */ |
| 4492 | if (trans->allocating_chunk) |
| 4493 | return -ENOSPC; |
| 4494 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4495 | space_info = __find_space_info(extent_root->fs_info, flags); |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4496 | if (!space_info) { |
| 4497 | ret = update_space_info(extent_root->fs_info, flags, |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 4498 | 0, 0, 0, &space_info); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4499 | BUG_ON(ret); /* -ENOMEM */ |
Chris Mason | 593060d | 2008-03-25 16:50:33 -0400 | [diff] [blame] | 4500 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 4501 | BUG_ON(!space_info); /* Logic error */ |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4502 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4503 | again: |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4504 | spin_lock(&space_info->lock); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 4505 | if (force < space_info->force_alloc) |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4506 | force = space_info->force_alloc; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4507 | if (space_info->full) { |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4508 | if (should_alloc_chunk(extent_root, space_info, force)) |
| 4509 | ret = -ENOSPC; |
| 4510 | else |
| 4511 | ret = 0; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4512 | spin_unlock(&space_info->lock); |
Filipe David Borba Manana | 09fb99a | 2013-08-05 16:25:12 +0100 | [diff] [blame] | 4513 | return ret; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4514 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4515 | |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 4516 | if (!should_alloc_chunk(extent_root, space_info, force)) { |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4517 | spin_unlock(&space_info->lock); |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4518 | return 0; |
| 4519 | } else if (space_info->chunk_alloc) { |
| 4520 | wait_for_alloc = 1; |
| 4521 | } else { |
| 4522 | space_info->chunk_alloc = 1; |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4523 | } |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4524 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 4525 | spin_unlock(&space_info->lock); |
| 4526 | |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4527 | mutex_lock(&fs_info->chunk_mutex); |
| 4528 | |
| 4529 | /* |
| 4530 | * The chunk_mutex is held throughout the entirety of a chunk |
| 4531 | * allocation, so once we've acquired the chunk_mutex we know that the |
| 4532 | * other guy is done and we need to recheck and see if we should |
| 4533 | * allocate. |
| 4534 | */ |
| 4535 | if (wait_for_alloc) { |
| 4536 | mutex_unlock(&fs_info->chunk_mutex); |
| 4537 | wait_for_alloc = 0; |
| 4538 | goto again; |
| 4539 | } |
| 4540 | |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4541 | trans->allocating_chunk = true; |
| 4542 | |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4543 | /* |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 4544 | * If we have mixed data/metadata chunks we want to make sure we keep |
| 4545 | * allocating mixed chunks instead of individual chunks. |
| 4546 | */ |
| 4547 | if (btrfs_mixed_space_info(space_info)) |
| 4548 | flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA); |
| 4549 | |
| 4550 | /* |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4551 | * if we're doing a data chunk, go ahead and make sure that |
| 4552 | * we keep a reasonable number of metadata chunks allocated in the |
| 4553 | * FS as well. |
| 4554 | */ |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4555 | if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) { |
Josef Bacik | 97e728d | 2009-04-21 17:40:57 -0400 | [diff] [blame] | 4556 | fs_info->data_chunk_allocations++; |
| 4557 | if (!(fs_info->data_chunk_allocations % |
| 4558 | fs_info->metadata_ratio)) |
| 4559 | force_metadata_allocation(fs_info); |
| 4560 | } |
| 4561 | |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4562 | /* |
| 4563 | * Check if we have enough space in SYSTEM chunk because we may need |
| 4564 | * to update devices. |
| 4565 | */ |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 4566 | check_system_chunk(trans, extent_root, flags); |
Liu Bo | 15d1ff8 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 4567 | |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 4568 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
Josef Bacik | c6b305a | 2012-12-18 09:16:16 -0500 | [diff] [blame] | 4569 | trans->allocating_chunk = false; |
Mark Fasheh | 92b8e897 | 2011-07-12 10:57:59 -0700 | [diff] [blame] | 4570 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4571 | spin_lock(&space_info->lock); |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4572 | if (ret < 0 && ret != -ENOSPC) |
| 4573 | goto out; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4574 | if (ret) |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4575 | space_info->full = 1; |
Yan, Zheng | 424499d | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4576 | else |
| 4577 | ret = 1; |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4578 | |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 4579 | space_info->force_alloc = CHUNK_ALLOC_NO_FORCE; |
Alexandre Oliva | a81cb9a | 2013-02-21 21:15:14 +0000 | [diff] [blame] | 4580 | out: |
Josef Bacik | 6d74119 | 2011-04-11 20:20:11 -0400 | [diff] [blame] | 4581 | space_info->chunk_alloc = 0; |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 4582 | spin_unlock(&space_info->lock); |
Dan Carpenter | a25c75d | 2012-04-18 09:59:29 +0300 | [diff] [blame] | 4583 | mutex_unlock(&fs_info->chunk_mutex); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4584 | /* |
| 4585 | * When we allocate a new chunk we reserve space in the chunk block |
| 4586 | * reserve to make sure we can COW nodes/leafs in the chunk tree or |
| 4587 | * add new nodes/leafs to it if we end up needing to do it when |
| 4588 | * inserting the chunk item and updating device items as part of the |
| 4589 | * second phase of chunk allocation, performed by |
| 4590 | * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a |
| 4591 | * large number of new block groups to create in our transaction |
| 4592 | * handle's new_bgs list to avoid exhausting the chunk block reserve |
| 4593 | * in extreme cases - like having a single transaction create many new |
| 4594 | * block groups when starting to write out the free space caches of all |
| 4595 | * the block groups that were made dirty during the lifetime of the |
| 4596 | * transaction. |
| 4597 | */ |
Filipe Manana | d9a0540 | 2015-10-03 13:13:13 +0100 | [diff] [blame] | 4598 | if (trans->can_flush_pending_bgs && |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4599 | trans->chunk_bytes_reserved >= (u64)SZ_2M) { |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 4600 | btrfs_create_pending_block_groups(trans, extent_root); |
Filipe Manana | 00d80e3 | 2015-07-20 14:56:20 +0100 | [diff] [blame] | 4601 | btrfs_trans_release_chunk_metadata(trans); |
| 4602 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 4603 | return ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 4604 | } |
| 4605 | |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4606 | static int can_overcommit(struct btrfs_root *root, |
| 4607 | struct btrfs_space_info *space_info, u64 bytes, |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4608 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4609 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4610 | struct btrfs_block_rsv *global_rsv; |
| 4611 | u64 profile; |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4612 | u64 space_size; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4613 | u64 avail; |
| 4614 | u64 used; |
| 4615 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4616 | /* Don't overcommit when in mixed mode. */ |
| 4617 | if (space_info->flags & BTRFS_BLOCK_GROUP_DATA) |
| 4618 | return 0; |
| 4619 | |
| 4620 | BUG_ON(root->fs_info == NULL); |
| 4621 | global_rsv = &root->fs_info->global_block_rsv; |
| 4622 | profile = btrfs_get_alloc_profile(root, 0); |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4623 | used = space_info->bytes_used + space_info->bytes_reserved + |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4624 | space_info->bytes_pinned + space_info->bytes_readonly; |
| 4625 | |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4626 | /* |
| 4627 | * We only want to allow over committing if we have lots of actual space |
| 4628 | * free, but if we don't have enough space to handle the global reserve |
| 4629 | * space then we could end up having a real enospc problem when trying |
| 4630 | * to allocate a chunk or some other such important allocation. |
| 4631 | */ |
Miao Xie | 3c76cd8 | 2013-04-25 10:12:38 +0000 | [diff] [blame] | 4632 | spin_lock(&global_rsv->lock); |
| 4633 | space_size = calc_global_rsv_need_space(global_rsv); |
| 4634 | spin_unlock(&global_rsv->lock); |
| 4635 | if (used + space_size >= space_info->total_bytes) |
Josef Bacik | 96f1bb5 | 2013-01-30 17:02:51 -0500 | [diff] [blame] | 4636 | return 0; |
| 4637 | |
| 4638 | used += space_info->bytes_may_use; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4639 | |
| 4640 | spin_lock(&root->fs_info->free_chunk_lock); |
| 4641 | avail = root->fs_info->free_chunk_space; |
| 4642 | spin_unlock(&root->fs_info->free_chunk_lock); |
| 4643 | |
| 4644 | /* |
| 4645 | * 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] | 4646 | * space is actually useable. For raid56, the space info used |
| 4647 | * doesn't include the parity drive, so we don't have to |
| 4648 | * change the math |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4649 | */ |
| 4650 | if (profile & (BTRFS_BLOCK_GROUP_DUP | |
| 4651 | BTRFS_BLOCK_GROUP_RAID1 | |
| 4652 | BTRFS_BLOCK_GROUP_RAID10)) |
| 4653 | avail >>= 1; |
| 4654 | |
| 4655 | /* |
Miao Xie | 561c294 | 2012-10-16 11:32:18 +0000 | [diff] [blame] | 4656 | * If we aren't flushing all things, let us overcommit up to |
| 4657 | * 1/2th of the space. If we can flush, don't let us overcommit |
| 4658 | * too much, let it overcommit up to 1/8 of the space. |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4659 | */ |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4660 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4661 | avail >>= 3; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4662 | else |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4663 | avail >>= 1; |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4664 | |
Josef Bacik | 14575ae | 2013-09-17 10:48:00 -0400 | [diff] [blame] | 4665 | if (used + bytes < space_info->total_bytes + avail) |
Josef Bacik | a80c8dc | 2012-09-06 16:59:33 -0400 | [diff] [blame] | 4666 | return 1; |
| 4667 | return 0; |
| 4668 | } |
| 4669 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 4670 | static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root, |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4671 | unsigned long nr_pages, int nr_items) |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4672 | { |
| 4673 | struct super_block *sb = root->fs_info->sb; |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4674 | |
Josef Bacik | 925a6ef | 2013-06-20 12:31:27 -0400 | [diff] [blame] | 4675 | if (down_read_trylock(&sb->s_umount)) { |
| 4676 | writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE); |
| 4677 | up_read(&sb->s_umount); |
| 4678 | } else { |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4679 | /* |
| 4680 | * We needn't worry the filesystem going from r/w to r/o though |
| 4681 | * we don't acquire ->s_umount mutex, because the filesystem |
| 4682 | * should guarantee the delalloc inodes list be empty after |
| 4683 | * the filesystem is readonly(all dirty pages are written to |
| 4684 | * the disk). |
| 4685 | */ |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4686 | btrfs_start_delalloc_roots(root->fs_info, 0, nr_items); |
Josef Bacik | 98ad69c | 2013-04-04 11:55:49 -0400 | [diff] [blame] | 4687 | if (!current->journal_info) |
Filipe Manana | 578def7 | 2016-04-26 15:36:38 +0100 | [diff] [blame] | 4688 | btrfs_wait_ordered_roots(root->fs_info, nr_items, |
| 4689 | 0, (u64)-1); |
Miao Xie | da633a4 | 2012-12-20 11:19:09 +0000 | [diff] [blame] | 4690 | } |
| 4691 | } |
| 4692 | |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4693 | static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim) |
| 4694 | { |
| 4695 | u64 bytes; |
| 4696 | int nr; |
| 4697 | |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 4698 | bytes = btrfs_calc_trans_metadata_size(root->fs_info, 1); |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4699 | nr = (int)div64_u64(to_reclaim, bytes); |
| 4700 | if (!nr) |
| 4701 | nr = 1; |
| 4702 | return nr; |
| 4703 | } |
| 4704 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4705 | #define EXTENT_SIZE_PER_ITEM SZ_256K |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4706 | |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4707 | /* |
| 4708 | * shrink metadata reservation for delalloc |
| 4709 | */ |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4710 | static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig, |
| 4711 | bool wait_ordered) |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4712 | { |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4713 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4714 | struct btrfs_space_info *space_info; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4715 | struct btrfs_trans_handle *trans; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4716 | u64 delalloc_bytes; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4717 | u64 max_reclaim; |
Josef Bacik | b1953bc | 2011-01-21 21:10:01 +0000 | [diff] [blame] | 4718 | long time_left; |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4719 | unsigned long nr_pages; |
| 4720 | int loops; |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4721 | int items; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4722 | enum btrfs_reserve_flush_enum flush; |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4723 | |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4724 | /* Calc the number of the pages we need flush for space reservation */ |
Miao Xie | b024419 | 2013-11-04 23:13:25 +0800 | [diff] [blame] | 4725 | items = calc_reclaim_items_nr(root, to_reclaim); |
Adam Borowski | 8eb0dfd | 2016-05-08 15:08:00 +0200 | [diff] [blame] | 4726 | to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM; |
Miao Xie | c61a16a | 2013-11-04 23:13:23 +0800 | [diff] [blame] | 4727 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4728 | trans = (struct btrfs_trans_handle *)current->journal_info; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 4729 | block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4730 | space_info = block_rsv->space_info; |
Chris Mason | bf9022e | 2010-10-26 13:40:45 -0400 | [diff] [blame] | 4731 | |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4732 | delalloc_bytes = percpu_counter_sum_positive( |
| 4733 | &root->fs_info->delalloc_bytes); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4734 | if (delalloc_bytes == 0) { |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4735 | if (trans) |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4736 | return; |
Miao Xie | 38c135a | 2013-11-04 23:13:21 +0800 | [diff] [blame] | 4737 | if (wait_ordered) |
Filipe Manana | 578def7 | 2016-04-26 15:36:38 +0100 | [diff] [blame] | 4738 | btrfs_wait_ordered_roots(root->fs_info, items, |
| 4739 | 0, (u64)-1); |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4740 | return; |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 4741 | } |
| 4742 | |
Miao Xie | d3ee29e3 | 2013-11-04 23:13:20 +0800 | [diff] [blame] | 4743 | loops = 0; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4744 | while (delalloc_bytes && loops < 3) { |
| 4745 | max_reclaim = min(delalloc_bytes, to_reclaim); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 4746 | nr_pages = max_reclaim >> PAGE_SHIFT; |
Miao Xie | 6c255e6 | 2014-03-06 13:55:01 +0800 | [diff] [blame] | 4747 | btrfs_writeback_inodes_sb_nr(root, nr_pages, items); |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4748 | /* |
| 4749 | * We need to wait for the async pages to actually start before |
| 4750 | * we do anything. |
| 4751 | */ |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4752 | max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages); |
| 4753 | if (!max_reclaim) |
| 4754 | goto skip_async; |
Josef Bacik | dea31f5 | 2012-09-06 16:47:00 -0400 | [diff] [blame] | 4755 | |
Miao Xie | 9f3a074 | 2013-11-04 23:13:24 +0800 | [diff] [blame] | 4756 | if (max_reclaim <= nr_pages) |
| 4757 | max_reclaim = 0; |
| 4758 | else |
| 4759 | max_reclaim -= nr_pages; |
| 4760 | |
| 4761 | wait_event(root->fs_info->async_submit_wait, |
| 4762 | atomic_read(&root->fs_info->async_delalloc_pages) <= |
| 4763 | (int)max_reclaim); |
| 4764 | skip_async: |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4765 | if (!trans) |
| 4766 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 4767 | else |
| 4768 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4769 | spin_lock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 4770 | if (can_overcommit(root, space_info, orig, flush)) { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4771 | spin_unlock(&space_info->lock); |
| 4772 | break; |
| 4773 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4774 | if (list_empty(&space_info->tickets) && |
| 4775 | list_empty(&space_info->priority_tickets)) { |
| 4776 | spin_unlock(&space_info->lock); |
| 4777 | break; |
| 4778 | } |
Josef Bacik | 0019f10 | 2010-10-15 15:18:40 -0400 | [diff] [blame] | 4779 | spin_unlock(&space_info->lock); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4780 | |
Chris Mason | 36e39c4 | 2011-03-12 07:08:42 -0500 | [diff] [blame] | 4781 | loops++; |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4782 | if (wait_ordered && !trans) { |
Filipe Manana | 578def7 | 2016-04-26 15:36:38 +0100 | [diff] [blame] | 4783 | btrfs_wait_ordered_roots(root->fs_info, items, |
| 4784 | 0, (u64)-1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4785 | } else { |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4786 | time_left = schedule_timeout_killable(1); |
Josef Bacik | f104d04 | 2011-10-14 13:56:58 -0400 | [diff] [blame] | 4787 | if (time_left) |
| 4788 | break; |
| 4789 | } |
Miao Xie | 963d678 | 2013-01-29 10:10:51 +0000 | [diff] [blame] | 4790 | delalloc_bytes = percpu_counter_sum_positive( |
| 4791 | &root->fs_info->delalloc_bytes); |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4792 | } |
Yan, Zheng | 5da9d01 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4793 | } |
| 4794 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 4795 | /** |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4796 | * maybe_commit_transaction - possibly commit the transaction if its ok to |
| 4797 | * @root - the root we're allocating for |
| 4798 | * @bytes - the number of bytes we want to reserve |
| 4799 | * @force - force the commit |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4800 | * |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4801 | * This will check to make sure that committing the transaction will actually |
| 4802 | * get us somewhere and then commit the transaction if it does. Otherwise it |
| 4803 | * will return -ENOSPC. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 4804 | */ |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4805 | static int may_commit_transaction(struct btrfs_root *root, |
| 4806 | struct btrfs_space_info *space_info, |
| 4807 | u64 bytes, int force) |
| 4808 | { |
| 4809 | struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv; |
| 4810 | struct btrfs_trans_handle *trans; |
| 4811 | |
| 4812 | trans = (struct btrfs_trans_handle *)current->journal_info; |
| 4813 | if (trans) |
| 4814 | return -EAGAIN; |
| 4815 | |
| 4816 | if (force) |
| 4817 | goto commit; |
| 4818 | |
| 4819 | /* See if there is enough pinned space to make this reservation */ |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4820 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
Miao Xie | 0424c54 | 2014-03-06 13:54:59 +0800 | [diff] [blame] | 4821 | bytes) >= 0) |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4822 | goto commit; |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4823 | |
| 4824 | /* |
| 4825 | * See if there is some space in the delayed insertion reservation for |
| 4826 | * this reservation. |
| 4827 | */ |
| 4828 | if (space_info != delayed_rsv->space_info) |
| 4829 | return -ENOSPC; |
| 4830 | |
| 4831 | spin_lock(&delayed_rsv->lock); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 4832 | if (percpu_counter_compare(&space_info->total_bytes_pinned, |
| 4833 | bytes - delayed_rsv->size) >= 0) { |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 4834 | spin_unlock(&delayed_rsv->lock); |
| 4835 | return -ENOSPC; |
| 4836 | } |
| 4837 | spin_unlock(&delayed_rsv->lock); |
| 4838 | |
| 4839 | commit: |
| 4840 | trans = btrfs_join_transaction(root); |
| 4841 | if (IS_ERR(trans)) |
| 4842 | return -ENOSPC; |
| 4843 | |
| 4844 | return btrfs_commit_transaction(trans, root); |
| 4845 | } |
| 4846 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4847 | struct reserve_ticket { |
| 4848 | u64 bytes; |
| 4849 | int error; |
| 4850 | struct list_head list; |
| 4851 | wait_queue_head_t wait; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4852 | }; |
| 4853 | |
| 4854 | static int flush_space(struct btrfs_root *root, |
| 4855 | struct btrfs_space_info *space_info, u64 num_bytes, |
| 4856 | u64 orig_bytes, int state) |
| 4857 | { |
| 4858 | struct btrfs_trans_handle *trans; |
| 4859 | int nr; |
Josef Bacik | f4c738c | 2012-07-02 17:10:51 -0400 | [diff] [blame] | 4860 | int ret = 0; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4861 | |
| 4862 | switch (state) { |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4863 | case FLUSH_DELAYED_ITEMS_NR: |
| 4864 | case FLUSH_DELAYED_ITEMS: |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4865 | if (state == FLUSH_DELAYED_ITEMS_NR) |
| 4866 | nr = calc_reclaim_items_nr(root, num_bytes) * 2; |
| 4867 | else |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4868 | nr = -1; |
Miao Xie | 18cd8ea | 2013-11-04 23:13:22 +0800 | [diff] [blame] | 4869 | |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4870 | trans = btrfs_join_transaction(root); |
| 4871 | if (IS_ERR(trans)) { |
| 4872 | ret = PTR_ERR(trans); |
| 4873 | break; |
| 4874 | } |
| 4875 | ret = btrfs_run_delayed_items_nr(trans, root, nr); |
| 4876 | btrfs_end_transaction(trans, root); |
| 4877 | break; |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4878 | case FLUSH_DELALLOC: |
| 4879 | case FLUSH_DELALLOC_WAIT: |
Miao Xie | 24af7dd | 2014-03-06 13:55:00 +0800 | [diff] [blame] | 4880 | shrink_delalloc(root, num_bytes * 2, orig_bytes, |
Josef Bacik | 67b0fd6 | 2012-09-24 13:42:00 -0400 | [diff] [blame] | 4881 | state == FLUSH_DELALLOC_WAIT); |
| 4882 | break; |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4883 | case ALLOC_CHUNK: |
| 4884 | trans = btrfs_join_transaction(root); |
| 4885 | if (IS_ERR(trans)) { |
| 4886 | ret = PTR_ERR(trans); |
| 4887 | break; |
| 4888 | } |
| 4889 | ret = do_chunk_alloc(trans, root->fs_info->extent_root, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4890 | btrfs_get_alloc_profile(root, 0), |
| 4891 | CHUNK_ALLOC_NO_FORCE); |
| 4892 | btrfs_end_transaction(trans, root); |
Alex Lyakas | eecba89 | 2015-12-06 12:32:31 +0200 | [diff] [blame] | 4893 | if (ret > 0 || ret == -ENOSPC) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 4894 | ret = 0; |
| 4895 | break; |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4896 | case COMMIT_TRANS: |
| 4897 | ret = may_commit_transaction(root, space_info, orig_bytes, 0); |
| 4898 | break; |
| 4899 | default: |
| 4900 | ret = -ENOSPC; |
| 4901 | break; |
| 4902 | } |
| 4903 | |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 4904 | trace_btrfs_flush_space(root->fs_info, space_info->flags, num_bytes, |
| 4905 | orig_bytes, state, ret); |
Josef Bacik | 96c3f43 | 2012-06-21 14:05:49 -0400 | [diff] [blame] | 4906 | return ret; |
| 4907 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4908 | |
| 4909 | static inline u64 |
| 4910 | btrfs_calc_reclaim_metadata_size(struct btrfs_root *root, |
| 4911 | struct btrfs_space_info *space_info) |
| 4912 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4913 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4914 | u64 used; |
| 4915 | u64 expected; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4916 | u64 to_reclaim = 0; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4917 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4918 | list_for_each_entry(ticket, &space_info->tickets, list) |
| 4919 | to_reclaim += ticket->bytes; |
| 4920 | list_for_each_entry(ticket, &space_info->priority_tickets, list) |
| 4921 | to_reclaim += ticket->bytes; |
| 4922 | if (to_reclaim) |
| 4923 | return to_reclaim; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4924 | |
Wang Xiaoguang | e0af248 | 2016-08-31 19:46:16 +0800 | [diff] [blame] | 4925 | to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M); |
| 4926 | if (can_overcommit(root, space_info, to_reclaim, |
| 4927 | BTRFS_RESERVE_FLUSH_ALL)) |
| 4928 | return 0; |
| 4929 | |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4930 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 4931 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 4932 | space_info->bytes_may_use; |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 4933 | if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL)) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4934 | expected = div_factor_fine(space_info->total_bytes, 95); |
| 4935 | else |
| 4936 | expected = div_factor_fine(space_info->total_bytes, 90); |
| 4937 | |
| 4938 | if (used > expected) |
| 4939 | to_reclaim = used - expected; |
| 4940 | else |
| 4941 | to_reclaim = 0; |
| 4942 | to_reclaim = min(to_reclaim, space_info->bytes_may_use + |
| 4943 | space_info->bytes_reserved); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4944 | return to_reclaim; |
| 4945 | } |
| 4946 | |
| 4947 | static inline int need_do_async_reclaim(struct btrfs_space_info *space_info, |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 4948 | struct btrfs_root *root, u64 used) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4949 | { |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4950 | u64 thresh = div_factor_fine(space_info->total_bytes, 98); |
| 4951 | |
| 4952 | /* 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] | 4953 | if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh) |
Josef Bacik | 365c531 | 2015-02-18 13:58:15 -0800 | [diff] [blame] | 4954 | return 0; |
| 4955 | |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 4956 | if (!btrfs_calc_reclaim_metadata_size(root, space_info)) |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4957 | return 0; |
Liu Bo | 25ce459 | 2014-09-10 12:58:50 +0800 | [diff] [blame] | 4958 | |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 4959 | return (used >= thresh && !btrfs_fs_closing(root->fs_info) && |
| 4960 | !test_bit(BTRFS_FS_STATE_REMOUNTING, |
| 4961 | &root->fs_info->fs_state)); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4962 | } |
| 4963 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4964 | static void wake_all_tickets(struct list_head *head) |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4965 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4966 | struct reserve_ticket *ticket; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4967 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4968 | while (!list_empty(head)) { |
| 4969 | ticket = list_first_entry(head, struct reserve_ticket, list); |
| 4970 | list_del_init(&ticket->list); |
| 4971 | ticket->error = -ENOSPC; |
| 4972 | wake_up(&ticket->wait); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4973 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4974 | } |
| 4975 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4976 | /* |
| 4977 | * This is for normal flushers, we can wait all goddamned day if we want to. We |
| 4978 | * will loop and continuously try to flush as long as we are making progress. |
| 4979 | * We count progress as clearing off tickets each time we have to loop. |
| 4980 | */ |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4981 | static void btrfs_async_reclaim_metadata_space(struct work_struct *work) |
| 4982 | { |
| 4983 | struct btrfs_fs_info *fs_info; |
| 4984 | struct btrfs_space_info *space_info; |
| 4985 | u64 to_reclaim; |
| 4986 | int flush_state; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4987 | int commit_cycles = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 4988 | u64 last_tickets_id; |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4989 | |
| 4990 | fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work); |
| 4991 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
| 4992 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4993 | spin_lock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4994 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 4995 | space_info); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 4996 | if (!to_reclaim) { |
| 4997 | space_info->flush = 0; |
| 4998 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 4999 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5000 | } |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5001 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5002 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5003 | |
| 5004 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5005 | do { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5006 | struct reserve_ticket *ticket; |
| 5007 | int ret; |
| 5008 | |
| 5009 | ret = flush_space(fs_info->fs_root, space_info, to_reclaim, |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5010 | to_reclaim, flush_state); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5011 | spin_lock(&space_info->lock); |
| 5012 | if (list_empty(&space_info->tickets)) { |
| 5013 | space_info->flush = 0; |
| 5014 | spin_unlock(&space_info->lock); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5015 | return; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5016 | } |
| 5017 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 5018 | space_info); |
| 5019 | ticket = list_first_entry(&space_info->tickets, |
| 5020 | struct reserve_ticket, list); |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5021 | if (last_tickets_id == space_info->tickets_id) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5022 | flush_state++; |
| 5023 | } else { |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5024 | last_tickets_id = space_info->tickets_id; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5025 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5026 | if (commit_cycles) |
| 5027 | commit_cycles--; |
| 5028 | } |
| 5029 | |
| 5030 | if (flush_state > COMMIT_TRANS) { |
| 5031 | commit_cycles++; |
| 5032 | if (commit_cycles > 2) { |
| 5033 | wake_all_tickets(&space_info->tickets); |
| 5034 | space_info->flush = 0; |
| 5035 | } else { |
| 5036 | flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5037 | } |
| 5038 | } |
| 5039 | spin_unlock(&space_info->lock); |
| 5040 | } while (flush_state <= COMMIT_TRANS); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5041 | } |
| 5042 | |
| 5043 | void btrfs_init_async_reclaim_work(struct work_struct *work) |
| 5044 | { |
| 5045 | INIT_WORK(work, btrfs_async_reclaim_metadata_space); |
| 5046 | } |
| 5047 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5048 | static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info, |
| 5049 | struct btrfs_space_info *space_info, |
| 5050 | struct reserve_ticket *ticket) |
| 5051 | { |
| 5052 | u64 to_reclaim; |
| 5053 | int flush_state = FLUSH_DELAYED_ITEMS_NR; |
| 5054 | |
| 5055 | spin_lock(&space_info->lock); |
| 5056 | to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root, |
| 5057 | space_info); |
| 5058 | if (!to_reclaim) { |
| 5059 | spin_unlock(&space_info->lock); |
| 5060 | return; |
| 5061 | } |
| 5062 | spin_unlock(&space_info->lock); |
| 5063 | |
| 5064 | do { |
| 5065 | flush_space(fs_info->fs_root, space_info, to_reclaim, |
| 5066 | to_reclaim, flush_state); |
| 5067 | flush_state++; |
| 5068 | spin_lock(&space_info->lock); |
| 5069 | if (ticket->bytes == 0) { |
| 5070 | spin_unlock(&space_info->lock); |
| 5071 | return; |
| 5072 | } |
| 5073 | spin_unlock(&space_info->lock); |
| 5074 | |
| 5075 | /* |
| 5076 | * Priority flushers can't wait on delalloc without |
| 5077 | * deadlocking. |
| 5078 | */ |
| 5079 | if (flush_state == FLUSH_DELALLOC || |
| 5080 | flush_state == FLUSH_DELALLOC_WAIT) |
| 5081 | flush_state = ALLOC_CHUNK; |
| 5082 | } while (flush_state < COMMIT_TRANS); |
| 5083 | } |
| 5084 | |
| 5085 | static int wait_reserve_ticket(struct btrfs_fs_info *fs_info, |
| 5086 | struct btrfs_space_info *space_info, |
| 5087 | struct reserve_ticket *ticket, u64 orig_bytes) |
| 5088 | |
| 5089 | { |
| 5090 | DEFINE_WAIT(wait); |
| 5091 | int ret = 0; |
| 5092 | |
| 5093 | spin_lock(&space_info->lock); |
| 5094 | while (ticket->bytes > 0 && ticket->error == 0) { |
| 5095 | ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE); |
| 5096 | if (ret) { |
| 5097 | ret = -EINTR; |
| 5098 | break; |
| 5099 | } |
| 5100 | spin_unlock(&space_info->lock); |
| 5101 | |
| 5102 | schedule(); |
| 5103 | |
| 5104 | finish_wait(&ticket->wait, &wait); |
| 5105 | spin_lock(&space_info->lock); |
| 5106 | } |
| 5107 | if (!ret) |
| 5108 | ret = ticket->error; |
| 5109 | if (!list_empty(&ticket->list)) |
| 5110 | list_del_init(&ticket->list); |
| 5111 | if (ticket->bytes && ticket->bytes < orig_bytes) { |
| 5112 | u64 num_bytes = orig_bytes - ticket->bytes; |
| 5113 | space_info->bytes_may_use -= num_bytes; |
| 5114 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5115 | space_info->flags, num_bytes, 0); |
| 5116 | } |
| 5117 | spin_unlock(&space_info->lock); |
| 5118 | |
| 5119 | return ret; |
| 5120 | } |
| 5121 | |
Josef Bacik | 663350a | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5122 | /** |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5123 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5124 | * @root - the root we're allocating for |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5125 | * @space_info - the space info we want to allocate from |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5126 | * @orig_bytes - the number of bytes we want |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 5127 | * @flush - whether or not we can flush to make our reservation |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5128 | * |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5129 | * 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] | 5130 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5131 | * flush out space to make room. It will do this by flushing delalloc if |
| 5132 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5133 | * regain reservations will be made and this will fail if there is not enough |
| 5134 | * space already. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5135 | */ |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5136 | static int __reserve_metadata_bytes(struct btrfs_root *root, |
| 5137 | struct btrfs_space_info *space_info, |
| 5138 | u64 orig_bytes, |
| 5139 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5140 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5141 | struct reserve_ticket ticket; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5142 | u64 used; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5143 | int ret = 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5144 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5145 | ASSERT(orig_bytes); |
Josef Bacik | 8ca17f0 | 2016-05-27 13:24:13 -0400 | [diff] [blame] | 5146 | ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL); |
| 5147 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5148 | spin_lock(&space_info->lock); |
Josef Bacik | fdb5eff | 2011-06-07 16:07:44 -0400 | [diff] [blame] | 5149 | ret = -ENOSPC; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5150 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 5151 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 5152 | space_info->bytes_may_use; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5153 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5154 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5155 | * If we have enough space then hooray, make our reservation and carry |
| 5156 | * on. If not see if we can overcommit, and if we can, hooray carry on. |
| 5157 | * If not things get more complicated. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5158 | */ |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5159 | if (used + orig_bytes <= space_info->total_bytes) { |
| 5160 | space_info->bytes_may_use += orig_bytes; |
| 5161 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 5162 | space_info->flags, orig_bytes, |
| 5163 | 1); |
| 5164 | ret = 0; |
| 5165 | } else if (can_overcommit(root, space_info, orig_bytes, flush)) { |
Josef Bacik | 44734ed | 2012-09-28 16:04:19 -0400 | [diff] [blame] | 5166 | space_info->bytes_may_use += orig_bytes; |
| 5167 | trace_btrfs_space_reservation(root->fs_info, "space_info", |
| 5168 | space_info->flags, orig_bytes, |
| 5169 | 1); |
| 5170 | ret = 0; |
Josef Bacik | 2bf6475 | 2011-09-26 17:12:22 -0400 | [diff] [blame] | 5171 | } |
| 5172 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5173 | /* |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5174 | * If we couldn't make a reservation then setup our reservation ticket |
| 5175 | * and kick the async worker if it's not already running. |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5176 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5177 | * If we are a priority flusher then we just need to add our ticket to |
| 5178 | * the list and we will do our own flushing further down. |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5179 | */ |
Josef Bacik | 72bcd99 | 2012-12-18 15:16:34 -0500 | [diff] [blame] | 5180 | if (ret && flush != BTRFS_RESERVE_NO_FLUSH) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5181 | ticket.bytes = orig_bytes; |
| 5182 | ticket.error = 0; |
| 5183 | init_waitqueue_head(&ticket.wait); |
| 5184 | if (flush == BTRFS_RESERVE_FLUSH_ALL) { |
| 5185 | list_add_tail(&ticket.list, &space_info->tickets); |
| 5186 | if (!space_info->flush) { |
| 5187 | space_info->flush = 1; |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5188 | trace_btrfs_trigger_flush(root->fs_info, |
| 5189 | space_info->flags, |
| 5190 | orig_bytes, flush, |
| 5191 | "enospc"); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5192 | queue_work(system_unbound_wq, |
| 5193 | &root->fs_info->async_reclaim_work); |
| 5194 | } |
| 5195 | } else { |
| 5196 | list_add_tail(&ticket.list, |
| 5197 | &space_info->priority_tickets); |
| 5198 | } |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5199 | } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 5200 | used += orig_bytes; |
Josef Bacik | f6acfd5 | 2014-09-18 11:27:17 -0400 | [diff] [blame] | 5201 | /* |
| 5202 | * We will do the space reservation dance during log replay, |
| 5203 | * which means we won't have fs_info->fs_root set, so don't do |
| 5204 | * the async reclaim as we will panic. |
| 5205 | */ |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 5206 | if (!test_bit(BTRFS_FS_LOG_RECOVERING, &root->fs_info->flags) && |
Josef Bacik | 87241c2 | 2016-04-25 09:58:18 -0400 | [diff] [blame] | 5207 | need_do_async_reclaim(space_info, root, used) && |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5208 | !work_busy(&root->fs_info->async_reclaim_work)) { |
| 5209 | trace_btrfs_trigger_flush(root->fs_info, |
| 5210 | space_info->flags, |
| 5211 | orig_bytes, flush, |
| 5212 | "preempt"); |
Miao Xie | 21c7e75 | 2014-05-13 17:29:04 -0700 | [diff] [blame] | 5213 | queue_work(system_unbound_wq, |
| 5214 | &root->fs_info->async_reclaim_work); |
Josef Bacik | f376df2 | 2016-03-25 13:25:56 -0400 | [diff] [blame] | 5215 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5216 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5217 | spin_unlock(&space_info->lock); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5218 | if (!ret || flush == BTRFS_RESERVE_NO_FLUSH) |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5219 | return ret; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5220 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5221 | if (flush == BTRFS_RESERVE_FLUSH_ALL) |
| 5222 | return wait_reserve_ticket(root->fs_info, space_info, &ticket, |
| 5223 | orig_bytes); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5224 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5225 | ret = 0; |
| 5226 | priority_reclaim_metadata_space(root->fs_info, space_info, &ticket); |
| 5227 | spin_lock(&space_info->lock); |
| 5228 | if (ticket.bytes) { |
| 5229 | if (ticket.bytes < orig_bytes) { |
| 5230 | u64 num_bytes = orig_bytes - ticket.bytes; |
| 5231 | space_info->bytes_may_use -= num_bytes; |
| 5232 | trace_btrfs_space_reservation(root->fs_info, |
| 5233 | "space_info", space_info->flags, |
| 5234 | num_bytes, 0); |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5235 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5236 | } |
| 5237 | list_del_init(&ticket.list); |
| 5238 | ret = -ENOSPC; |
| 5239 | } |
| 5240 | spin_unlock(&space_info->lock); |
| 5241 | ASSERT(list_empty(&ticket.list)); |
| 5242 | return ret; |
| 5243 | } |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5244 | |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5245 | /** |
| 5246 | * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space |
| 5247 | * @root - the root we're allocating for |
| 5248 | * @block_rsv - the block_rsv we're allocating for |
| 5249 | * @orig_bytes - the number of bytes we want |
| 5250 | * @flush - whether or not we can flush to make our reservation |
| 5251 | * |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5252 | * 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] | 5253 | * with the block_rsv. If there is not enough space it will make an attempt to |
| 5254 | * flush out space to make room. It will do this by flushing delalloc if |
| 5255 | * possible or committing the transaction. If flush is 0 then no attempts to |
| 5256 | * regain reservations will be made and this will fail if there is not enough |
| 5257 | * space already. |
| 5258 | */ |
| 5259 | static int reserve_metadata_bytes(struct btrfs_root *root, |
| 5260 | struct btrfs_block_rsv *block_rsv, |
| 5261 | u64 orig_bytes, |
| 5262 | enum btrfs_reserve_flush_enum flush) |
| 5263 | { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5264 | int ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5265 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5266 | ret = __reserve_metadata_bytes(root, block_rsv->space_info, orig_bytes, |
| 5267 | flush); |
Josef Bacik | 5d80366 | 2013-02-07 16:06:02 -0500 | [diff] [blame] | 5268 | if (ret == -ENOSPC && |
| 5269 | unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) { |
| 5270 | struct btrfs_block_rsv *global_rsv = |
| 5271 | &root->fs_info->global_block_rsv; |
| 5272 | |
| 5273 | if (block_rsv != global_rsv && |
| 5274 | !block_rsv_use_bytes(global_rsv, orig_bytes)) |
| 5275 | ret = 0; |
| 5276 | } |
Jeff Mahoney | cab45e2 | 2013-10-16 16:27:01 -0400 | [diff] [blame] | 5277 | if (ret == -ENOSPC) |
| 5278 | trace_btrfs_space_reservation(root->fs_info, |
| 5279 | "space_info:enospc", |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5280 | block_rsv->space_info->flags, |
| 5281 | orig_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5282 | return ret; |
| 5283 | } |
| 5284 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5285 | static struct btrfs_block_rsv *get_block_rsv( |
| 5286 | const struct btrfs_trans_handle *trans, |
| 5287 | const struct btrfs_root *root) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5288 | { |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5289 | struct btrfs_block_rsv *block_rsv = NULL; |
| 5290 | |
Alexandru Moise | e9cf439 | 2015-09-09 00:18:50 +0000 | [diff] [blame] | 5291 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
| 5292 | (root == root->fs_info->csum_root && trans->adding_csums) || |
| 5293 | (root == root->fs_info->uuid_root)) |
Stefan Behrens | f7a81ea | 2013-08-15 17:11:19 +0200 | [diff] [blame] | 5294 | block_rsv = trans->block_rsv; |
| 5295 | |
Josef Bacik | 4c13d75 | 2011-08-30 11:31:29 -0400 | [diff] [blame] | 5296 | if (!block_rsv) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5297 | block_rsv = root->block_rsv; |
| 5298 | |
| 5299 | if (!block_rsv) |
| 5300 | block_rsv = &root->fs_info->empty_block_rsv; |
| 5301 | |
| 5302 | return block_rsv; |
| 5303 | } |
| 5304 | |
| 5305 | static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv, |
| 5306 | u64 num_bytes) |
| 5307 | { |
| 5308 | int ret = -ENOSPC; |
| 5309 | spin_lock(&block_rsv->lock); |
| 5310 | if (block_rsv->reserved >= num_bytes) { |
| 5311 | block_rsv->reserved -= num_bytes; |
| 5312 | if (block_rsv->reserved < block_rsv->size) |
| 5313 | block_rsv->full = 0; |
| 5314 | ret = 0; |
| 5315 | } |
| 5316 | spin_unlock(&block_rsv->lock); |
| 5317 | return ret; |
| 5318 | } |
| 5319 | |
| 5320 | static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv, |
| 5321 | u64 num_bytes, int update_size) |
| 5322 | { |
| 5323 | spin_lock(&block_rsv->lock); |
| 5324 | block_rsv->reserved += num_bytes; |
| 5325 | if (update_size) |
| 5326 | block_rsv->size += num_bytes; |
| 5327 | else if (block_rsv->reserved >= block_rsv->size) |
| 5328 | block_rsv->full = 1; |
| 5329 | spin_unlock(&block_rsv->lock); |
| 5330 | } |
| 5331 | |
Josef Bacik | d52be81 | 2013-05-29 14:54:47 -0400 | [diff] [blame] | 5332 | int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info, |
| 5333 | struct btrfs_block_rsv *dest, u64 num_bytes, |
| 5334 | int min_factor) |
| 5335 | { |
| 5336 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
| 5337 | u64 min_bytes; |
| 5338 | |
| 5339 | if (global_rsv->space_info != dest->space_info) |
| 5340 | return -ENOSPC; |
| 5341 | |
| 5342 | spin_lock(&global_rsv->lock); |
| 5343 | min_bytes = div_factor(global_rsv->size, min_factor); |
| 5344 | if (global_rsv->reserved < min_bytes + num_bytes) { |
| 5345 | spin_unlock(&global_rsv->lock); |
| 5346 | return -ENOSPC; |
| 5347 | } |
| 5348 | global_rsv->reserved -= num_bytes; |
| 5349 | if (global_rsv->reserved < global_rsv->size) |
| 5350 | global_rsv->full = 0; |
| 5351 | spin_unlock(&global_rsv->lock); |
| 5352 | |
| 5353 | block_rsv_add_bytes(dest, num_bytes, 1); |
| 5354 | return 0; |
| 5355 | } |
| 5356 | |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5357 | /* |
| 5358 | * This is for space we already have accounted in space_info->bytes_may_use, so |
| 5359 | * basically when we're returning space from block_rsv's. |
| 5360 | */ |
| 5361 | static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info, |
| 5362 | struct btrfs_space_info *space_info, |
| 5363 | u64 num_bytes) |
| 5364 | { |
| 5365 | struct reserve_ticket *ticket; |
| 5366 | struct list_head *head; |
| 5367 | u64 used; |
| 5368 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH; |
| 5369 | bool check_overcommit = false; |
| 5370 | |
| 5371 | spin_lock(&space_info->lock); |
| 5372 | head = &space_info->priority_tickets; |
| 5373 | |
| 5374 | /* |
| 5375 | * If we are over our limit then we need to check and see if we can |
| 5376 | * overcommit, and if we can't then we just need to free up our space |
| 5377 | * and not satisfy any requests. |
| 5378 | */ |
| 5379 | used = space_info->bytes_used + space_info->bytes_reserved + |
| 5380 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 5381 | space_info->bytes_may_use; |
| 5382 | if (used - num_bytes >= space_info->total_bytes) |
| 5383 | check_overcommit = true; |
| 5384 | again: |
| 5385 | while (!list_empty(head) && num_bytes) { |
| 5386 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5387 | list); |
| 5388 | /* |
| 5389 | * We use 0 bytes because this space is already reserved, so |
| 5390 | * adding the ticket space would be a double count. |
| 5391 | */ |
| 5392 | if (check_overcommit && |
| 5393 | !can_overcommit(fs_info->extent_root, space_info, 0, |
| 5394 | flush)) |
| 5395 | break; |
| 5396 | if (num_bytes >= ticket->bytes) { |
| 5397 | list_del_init(&ticket->list); |
| 5398 | num_bytes -= ticket->bytes; |
| 5399 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5400 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5401 | wake_up(&ticket->wait); |
| 5402 | } else { |
| 5403 | ticket->bytes -= num_bytes; |
| 5404 | num_bytes = 0; |
| 5405 | } |
| 5406 | } |
| 5407 | |
| 5408 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5409 | head = &space_info->tickets; |
| 5410 | flush = BTRFS_RESERVE_FLUSH_ALL; |
| 5411 | goto again; |
| 5412 | } |
| 5413 | space_info->bytes_may_use -= num_bytes; |
| 5414 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5415 | space_info->flags, num_bytes, 0); |
| 5416 | spin_unlock(&space_info->lock); |
| 5417 | } |
| 5418 | |
| 5419 | /* |
| 5420 | * This is for newly allocated space that isn't accounted in |
| 5421 | * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent |
| 5422 | * we use this helper. |
| 5423 | */ |
| 5424 | static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info, |
| 5425 | struct btrfs_space_info *space_info, |
| 5426 | u64 num_bytes) |
| 5427 | { |
| 5428 | struct reserve_ticket *ticket; |
| 5429 | struct list_head *head = &space_info->priority_tickets; |
| 5430 | |
| 5431 | again: |
| 5432 | while (!list_empty(head) && num_bytes) { |
| 5433 | ticket = list_first_entry(head, struct reserve_ticket, |
| 5434 | list); |
| 5435 | if (num_bytes >= ticket->bytes) { |
| 5436 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5437 | space_info->flags, |
| 5438 | ticket->bytes, 1); |
| 5439 | list_del_init(&ticket->list); |
| 5440 | num_bytes -= ticket->bytes; |
| 5441 | space_info->bytes_may_use += ticket->bytes; |
| 5442 | ticket->bytes = 0; |
Wang Xiaoguang | ce12965 | 2016-09-02 10:58:46 +0800 | [diff] [blame] | 5443 | space_info->tickets_id++; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5444 | wake_up(&ticket->wait); |
| 5445 | } else { |
| 5446 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5447 | space_info->flags, |
| 5448 | num_bytes, 1); |
| 5449 | space_info->bytes_may_use += num_bytes; |
| 5450 | ticket->bytes -= num_bytes; |
| 5451 | num_bytes = 0; |
| 5452 | } |
| 5453 | } |
| 5454 | |
| 5455 | if (num_bytes && head == &space_info->priority_tickets) { |
| 5456 | head = &space_info->tickets; |
| 5457 | goto again; |
| 5458 | } |
| 5459 | } |
| 5460 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5461 | static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info, |
| 5462 | struct btrfs_block_rsv *block_rsv, |
David Sterba | 62a45b6 | 2011-04-20 15:52:26 +0200 | [diff] [blame] | 5463 | struct btrfs_block_rsv *dest, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5464 | { |
| 5465 | struct btrfs_space_info *space_info = block_rsv->space_info; |
| 5466 | |
| 5467 | spin_lock(&block_rsv->lock); |
| 5468 | if (num_bytes == (u64)-1) |
| 5469 | num_bytes = block_rsv->size; |
| 5470 | block_rsv->size -= num_bytes; |
| 5471 | if (block_rsv->reserved >= block_rsv->size) { |
| 5472 | num_bytes = block_rsv->reserved - block_rsv->size; |
| 5473 | block_rsv->reserved = block_rsv->size; |
| 5474 | block_rsv->full = 1; |
| 5475 | } else { |
| 5476 | num_bytes = 0; |
| 5477 | } |
| 5478 | spin_unlock(&block_rsv->lock); |
| 5479 | |
| 5480 | if (num_bytes > 0) { |
| 5481 | if (dest) { |
Josef Bacik | e9e2289 | 2011-01-24 21:43:19 +0000 | [diff] [blame] | 5482 | spin_lock(&dest->lock); |
| 5483 | if (!dest->full) { |
| 5484 | u64 bytes_to_add; |
| 5485 | |
| 5486 | bytes_to_add = dest->size - dest->reserved; |
| 5487 | bytes_to_add = min(num_bytes, bytes_to_add); |
| 5488 | dest->reserved += bytes_to_add; |
| 5489 | if (dest->reserved >= dest->size) |
| 5490 | dest->full = 1; |
| 5491 | num_bytes -= bytes_to_add; |
| 5492 | } |
| 5493 | spin_unlock(&dest->lock); |
| 5494 | } |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 5495 | if (num_bytes) |
| 5496 | space_info_add_old_bytes(fs_info, space_info, |
| 5497 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5498 | } |
| 5499 | } |
| 5500 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5501 | int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src, |
| 5502 | struct btrfs_block_rsv *dst, u64 num_bytes, |
| 5503 | int update_size) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5504 | { |
| 5505 | int ret; |
| 5506 | |
| 5507 | ret = block_rsv_use_bytes(src, num_bytes); |
| 5508 | if (ret) |
| 5509 | return ret; |
| 5510 | |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5511 | block_rsv_add_bytes(dst, num_bytes, update_size); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5512 | return 0; |
| 5513 | } |
| 5514 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5515 | 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] | 5516 | { |
| 5517 | memset(rsv, 0, sizeof(*rsv)); |
| 5518 | spin_lock_init(&rsv->lock); |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5519 | rsv->type = type; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5520 | } |
| 5521 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5522 | struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root, |
| 5523 | unsigned short type) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5524 | { |
| 5525 | struct btrfs_block_rsv *block_rsv; |
| 5526 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5527 | |
| 5528 | block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS); |
| 5529 | if (!block_rsv) |
| 5530 | return NULL; |
| 5531 | |
Miao Xie | 66d8f3d | 2012-09-06 04:02:28 -0600 | [diff] [blame] | 5532 | btrfs_init_block_rsv(block_rsv, type); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5533 | block_rsv->space_info = __find_space_info(fs_info, |
| 5534 | BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5535 | return block_rsv; |
| 5536 | } |
| 5537 | |
| 5538 | void btrfs_free_block_rsv(struct btrfs_root *root, |
| 5539 | struct btrfs_block_rsv *rsv) |
| 5540 | { |
Josef Bacik | 2aaa665 | 2012-08-29 14:27:18 -0400 | [diff] [blame] | 5541 | if (!rsv) |
| 5542 | return; |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5543 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
| 5544 | kfree(rsv); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5545 | } |
| 5546 | |
Chris Mason | cdfb080 | 2015-04-06 18:17:00 -0700 | [diff] [blame] | 5547 | void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv) |
| 5548 | { |
| 5549 | kfree(rsv); |
| 5550 | } |
| 5551 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5552 | int btrfs_block_rsv_add(struct btrfs_root *root, |
| 5553 | struct btrfs_block_rsv *block_rsv, u64 num_bytes, |
| 5554 | enum btrfs_reserve_flush_enum flush) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5555 | { |
| 5556 | int ret; |
| 5557 | |
| 5558 | if (num_bytes == 0) |
| 5559 | return 0; |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5560 | |
Miao Xie | 61b520a | 2011-11-10 20:45:05 -0500 | [diff] [blame] | 5561 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5562 | if (!ret) { |
| 5563 | block_rsv_add_bytes(block_rsv, num_bytes, 1); |
| 5564 | return 0; |
| 5565 | } |
| 5566 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5567 | return ret; |
| 5568 | } |
| 5569 | |
Josef Bacik | 4a92b1b | 2011-08-30 12:34:28 -0400 | [diff] [blame] | 5570 | int btrfs_block_rsv_check(struct btrfs_root *root, |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5571 | struct btrfs_block_rsv *block_rsv, int min_factor) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5572 | { |
| 5573 | u64 num_bytes = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5574 | int ret = -ENOSPC; |
| 5575 | |
| 5576 | if (!block_rsv) |
| 5577 | return 0; |
| 5578 | |
| 5579 | spin_lock(&block_rsv->lock); |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5580 | num_bytes = div_factor(block_rsv->size, min_factor); |
| 5581 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5582 | ret = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5583 | spin_unlock(&block_rsv->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5584 | |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5585 | return ret; |
| 5586 | } |
| 5587 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5588 | int btrfs_block_rsv_refill(struct btrfs_root *root, |
| 5589 | struct btrfs_block_rsv *block_rsv, u64 min_reserved, |
| 5590 | enum btrfs_reserve_flush_enum flush) |
Josef Bacik | 36ba022 | 2011-10-18 12:15:48 -0400 | [diff] [blame] | 5591 | { |
| 5592 | u64 num_bytes = 0; |
| 5593 | int ret = -ENOSPC; |
| 5594 | |
| 5595 | if (!block_rsv) |
| 5596 | return 0; |
| 5597 | |
| 5598 | spin_lock(&block_rsv->lock); |
| 5599 | num_bytes = min_reserved; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5600 | if (block_rsv->reserved >= num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5601 | ret = 0; |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5602 | else |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5603 | num_bytes -= block_rsv->reserved; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5604 | spin_unlock(&block_rsv->lock); |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5605 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5606 | if (!ret) |
| 5607 | return 0; |
| 5608 | |
Miao Xie | aa38a71 | 2011-11-18 17:43:00 +0800 | [diff] [blame] | 5609 | ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush); |
Josef Bacik | dabdb64 | 2011-08-08 12:50:18 -0400 | [diff] [blame] | 5610 | if (!ret) { |
| 5611 | block_rsv_add_bytes(block_rsv, num_bytes, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5612 | return 0; |
| 5613 | } |
| 5614 | |
Josef Bacik | 13553e5 | 2011-08-08 13:33:21 -0400 | [diff] [blame] | 5615 | return ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5616 | } |
| 5617 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5618 | void btrfs_block_rsv_release(struct btrfs_root *root, |
| 5619 | struct btrfs_block_rsv *block_rsv, |
| 5620 | u64 num_bytes) |
| 5621 | { |
| 5622 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Liu Bo | 1750458 | 2013-12-29 21:44:50 +0800 | [diff] [blame] | 5623 | if (global_rsv == block_rsv || |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5624 | block_rsv->space_info != global_rsv->space_info) |
| 5625 | global_rsv = NULL; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5626 | block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv, |
| 5627 | num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5628 | } |
| 5629 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5630 | static void update_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5631 | { |
| 5632 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 5633 | struct btrfs_space_info *sinfo = block_rsv->space_info; |
| 5634 | u64 num_bytes; |
| 5635 | |
Josef Bacik | ae2e472 | 2016-05-27 12:58:35 -0400 | [diff] [blame] | 5636 | /* |
| 5637 | * The global block rsv is based on the size of the extent tree, the |
| 5638 | * checksum tree and the root tree. If the fs is empty we want to set |
| 5639 | * it to a minimal amount for safety. |
| 5640 | */ |
| 5641 | num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) + |
| 5642 | btrfs_root_used(&fs_info->csum_root->root_item) + |
| 5643 | btrfs_root_used(&fs_info->tree_root->root_item); |
| 5644 | num_bytes = max_t(u64, num_bytes, SZ_16M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5645 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5646 | spin_lock(&sinfo->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5647 | spin_lock(&block_rsv->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5648 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 5649 | block_rsv->size = min_t(u64, num_bytes, SZ_512M); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5650 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5651 | if (block_rsv->reserved < block_rsv->size) { |
| 5652 | num_bytes = sinfo->bytes_used + sinfo->bytes_pinned + |
| 5653 | sinfo->bytes_reserved + sinfo->bytes_readonly + |
| 5654 | sinfo->bytes_may_use; |
| 5655 | if (sinfo->total_bytes > num_bytes) { |
| 5656 | num_bytes = sinfo->total_bytes - num_bytes; |
| 5657 | num_bytes = min(num_bytes, |
| 5658 | block_rsv->size - block_rsv->reserved); |
| 5659 | block_rsv->reserved += num_bytes; |
| 5660 | sinfo->bytes_may_use += num_bytes; |
| 5661 | trace_btrfs_space_reservation(fs_info, "space_info", |
| 5662 | sinfo->flags, num_bytes, |
| 5663 | 1); |
| 5664 | } |
| 5665 | } else if (block_rsv->reserved > block_rsv->size) { |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5666 | num_bytes = block_rsv->reserved - block_rsv->size; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 5667 | sinfo->bytes_may_use -= num_bytes; |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5668 | trace_btrfs_space_reservation(fs_info, "space_info", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5669 | sinfo->flags, num_bytes, 0); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5670 | block_rsv->reserved = block_rsv->size; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5671 | } |
David Sterba | 182608c | 2011-05-05 13:13:16 +0200 | [diff] [blame] | 5672 | |
Josef Bacik | fb4b10e | 2016-01-11 17:28:38 -0500 | [diff] [blame] | 5673 | if (block_rsv->reserved == block_rsv->size) |
| 5674 | block_rsv->full = 1; |
| 5675 | else |
| 5676 | block_rsv->full = 0; |
| 5677 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5678 | spin_unlock(&block_rsv->lock); |
Stefan Behrens | 1f699d3 | 2012-04-27 12:41:46 -0400 | [diff] [blame] | 5679 | spin_unlock(&sinfo->lock); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5680 | } |
| 5681 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5682 | static void init_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5683 | { |
| 5684 | struct btrfs_space_info *space_info; |
| 5685 | |
| 5686 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM); |
| 5687 | fs_info->chunk_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5688 | |
| 5689 | space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5690 | fs_info->global_block_rsv.space_info = space_info; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5691 | fs_info->delalloc_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5692 | fs_info->trans_block_rsv.space_info = space_info; |
| 5693 | fs_info->empty_block_rsv.space_info = space_info; |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5694 | fs_info->delayed_block_rsv.space_info = space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5695 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5696 | fs_info->extent_root->block_rsv = &fs_info->global_block_rsv; |
| 5697 | fs_info->csum_root->block_rsv = &fs_info->global_block_rsv; |
| 5698 | fs_info->dev_root->block_rsv = &fs_info->global_block_rsv; |
| 5699 | fs_info->tree_root->block_rsv = &fs_info->global_block_rsv; |
Stefan Behrens | 3a6cad9 | 2013-05-16 14:48:19 +0000 | [diff] [blame] | 5700 | if (fs_info->quota_root) |
| 5701 | fs_info->quota_root->block_rsv = &fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 5702 | fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv; |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5703 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5704 | update_global_block_rsv(fs_info); |
| 5705 | } |
| 5706 | |
| 5707 | static void release_global_block_rsv(struct btrfs_fs_info *fs_info) |
| 5708 | { |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5709 | block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL, |
| 5710 | (u64)-1); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5711 | WARN_ON(fs_info->delalloc_block_rsv.size > 0); |
| 5712 | WARN_ON(fs_info->delalloc_block_rsv.reserved > 0); |
| 5713 | WARN_ON(fs_info->trans_block_rsv.size > 0); |
| 5714 | WARN_ON(fs_info->trans_block_rsv.reserved > 0); |
| 5715 | WARN_ON(fs_info->chunk_block_rsv.size > 0); |
| 5716 | WARN_ON(fs_info->chunk_block_rsv.reserved > 0); |
Josef Bacik | 6d668dd | 2011-11-03 22:54:25 -0400 | [diff] [blame] | 5717 | WARN_ON(fs_info->delayed_block_rsv.size > 0); |
| 5718 | WARN_ON(fs_info->delayed_block_rsv.reserved > 0); |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5719 | } |
| 5720 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5721 | void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans, |
| 5722 | struct btrfs_root *root) |
| 5723 | { |
Josef Bacik | 0e72110 | 2012-06-26 16:13:18 -0400 | [diff] [blame] | 5724 | if (!trans->block_rsv) |
| 5725 | return; |
| 5726 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5727 | if (!trans->bytes_reserved) |
| 5728 | return; |
| 5729 | |
Chris Mason | e77266e | 2012-02-24 10:39:05 -0500 | [diff] [blame] | 5730 | trace_btrfs_space_reservation(root->fs_info, "transaction", |
Liu Bo | 2bcc032 | 2012-03-29 09:57:44 -0400 | [diff] [blame] | 5731 | trans->transid, trans->bytes_reserved, 0); |
Josef Bacik | b24e03d | 2011-10-14 14:40:17 -0400 | [diff] [blame] | 5732 | btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5733 | trans->bytes_reserved = 0; |
| 5734 | } |
| 5735 | |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5736 | /* |
| 5737 | * To be called after all the new block groups attached to the transaction |
| 5738 | * handle have been created (btrfs_create_pending_block_groups()). |
| 5739 | */ |
| 5740 | void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans) |
| 5741 | { |
Jeff Mahoney | 64b6358 | 2016-06-20 17:23:41 -0400 | [diff] [blame] | 5742 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Filipe Manana | 4fbcdf6 | 2015-05-20 14:01:54 +0100 | [diff] [blame] | 5743 | |
| 5744 | if (!trans->chunk_bytes_reserved) |
| 5745 | return; |
| 5746 | |
| 5747 | WARN_ON_ONCE(!list_empty(&trans->new_bgs)); |
| 5748 | |
| 5749 | block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL, |
| 5750 | trans->chunk_bytes_reserved); |
| 5751 | trans->chunk_bytes_reserved = 0; |
| 5752 | } |
| 5753 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 5754 | /* Can only return 0 or -ENOSPC */ |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5755 | int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans, |
| 5756 | struct inode *inode) |
| 5757 | { |
| 5758 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 40acc3ee | 2016-05-27 13:01:08 -0400 | [diff] [blame] | 5759 | /* |
| 5760 | * We always use trans->block_rsv here as we will have reserved space |
| 5761 | * for our orphan when starting the transaction, using get_block_rsv() |
| 5762 | * here will sometimes make us choose the wrong block rsv as we could be |
| 5763 | * doing a reloc inode for a non refcounted root. |
| 5764 | */ |
| 5765 | struct btrfs_block_rsv *src_rsv = trans->block_rsv; |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5766 | struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv; |
| 5767 | |
| 5768 | /* |
Josef Bacik | fcb80c2 | 2011-05-03 10:40:22 -0400 | [diff] [blame] | 5769 | * We need to hold space in order to delete our orphan item once we've |
| 5770 | * added it, so this takes the reservation so we can release it later |
| 5771 | * when we are truly done with the orphan item. |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5772 | */ |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 5773 | u64 num_bytes = btrfs_calc_trans_metadata_size(root->fs_info, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5774 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 5775 | btrfs_ino(inode), num_bytes, 1); |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5776 | return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5777 | } |
| 5778 | |
| 5779 | void btrfs_orphan_release_metadata(struct inode *inode) |
| 5780 | { |
| 5781 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 5782 | u64 num_bytes = btrfs_calc_trans_metadata_size(root->fs_info, 1); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 5783 | trace_btrfs_space_reservation(root->fs_info, "orphan", |
| 5784 | btrfs_ino(inode), num_bytes, 0); |
Yan, Zheng | d68fc57 | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 5785 | btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes); |
| 5786 | } |
| 5787 | |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5788 | /* |
| 5789 | * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation |
| 5790 | * root: the root of the parent directory |
| 5791 | * rsv: block reservation |
| 5792 | * items: the number of items that we need do reservation |
| 5793 | * qgroup_reserved: used to return the reserved size in qgroup |
| 5794 | * |
| 5795 | * This function is used to reserve the space for snapshot/subvolume |
| 5796 | * creation and deletion. Those operations are different with the |
| 5797 | * common file/directory operations, they change two fs/file trees |
| 5798 | * and root tree, the number of items that the qgroup reserves is |
| 5799 | * different with the free space reservation. So we can not use |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5800 | * the space reservation mechanism in start_transaction(). |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5801 | */ |
| 5802 | int btrfs_subvolume_reserve_metadata(struct btrfs_root *root, |
| 5803 | struct btrfs_block_rsv *rsv, |
| 5804 | int items, |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5805 | u64 *qgroup_reserved, |
| 5806 | bool use_global_rsv) |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5807 | { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5808 | u64 num_bytes; |
| 5809 | int ret; |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5810 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5811 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 5812 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags)) { |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5813 | /* One for parent inode, two for dir entries */ |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 5814 | num_bytes = 3 * root->fs_info->nodesize; |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5815 | ret = btrfs_qgroup_reserve_meta(root, num_bytes); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5816 | if (ret) |
| 5817 | return ret; |
| 5818 | } else { |
| 5819 | num_bytes = 0; |
| 5820 | } |
| 5821 | |
| 5822 | *qgroup_reserved = num_bytes; |
| 5823 | |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 5824 | num_bytes = btrfs_calc_trans_metadata_size(root->fs_info, items); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5825 | rsv->space_info = __find_space_info(root->fs_info, |
| 5826 | BTRFS_BLOCK_GROUP_METADATA); |
| 5827 | ret = btrfs_block_rsv_add(root, rsv, num_bytes, |
| 5828 | BTRFS_RESERVE_FLUSH_ALL); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5829 | |
| 5830 | if (ret == -ENOSPC && use_global_rsv) |
Josef Bacik | 25d609f | 2016-03-25 13:25:48 -0400 | [diff] [blame] | 5831 | ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1); |
Jeff Mahoney | ee3441b | 2013-07-09 16:37:21 -0400 | [diff] [blame] | 5832 | |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5833 | if (ret && *qgroup_reserved) |
| 5834 | btrfs_qgroup_free_meta(root, *qgroup_reserved); |
Miao Xie | d5c1207 | 2013-02-28 10:04:33 +0000 | [diff] [blame] | 5835 | |
| 5836 | return ret; |
| 5837 | } |
| 5838 | |
| 5839 | void btrfs_subvolume_release_metadata(struct btrfs_root *root, |
| 5840 | struct btrfs_block_rsv *rsv, |
| 5841 | u64 qgroup_reserved) |
| 5842 | { |
| 5843 | btrfs_block_rsv_release(root, rsv, (u64)-1); |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 5844 | } |
| 5845 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5846 | /** |
| 5847 | * drop_outstanding_extent - drop an outstanding extent |
| 5848 | * @inode: the inode we're dropping the extent for |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5849 | * @num_bytes: the number of bytes we're releasing. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5850 | * |
| 5851 | * This is called when we are freeing up an outstanding extent, either called |
| 5852 | * after an error or after an extent is written. This will return the number of |
| 5853 | * reserved extents that need to be freed. This must be called with |
| 5854 | * BTRFS_I(inode)->lock held. |
| 5855 | */ |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5856 | static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes) |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5857 | { |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5858 | unsigned drop_inode_space = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5859 | unsigned dropped_extents = 0; |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5860 | unsigned num_extents = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5861 | |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 5862 | num_extents = (unsigned)div64_u64(num_bytes + |
| 5863 | BTRFS_MAX_EXTENT_SIZE - 1, |
| 5864 | BTRFS_MAX_EXTENT_SIZE); |
| 5865 | ASSERT(num_extents); |
| 5866 | ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents); |
| 5867 | BTRFS_I(inode)->outstanding_extents -= num_extents; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5868 | |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5869 | if (BTRFS_I(inode)->outstanding_extents == 0 && |
Josef Bacik | 72ac3c0 | 2012-05-23 14:13:11 -0400 | [diff] [blame] | 5870 | test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
| 5871 | &BTRFS_I(inode)->runtime_flags)) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5872 | drop_inode_space = 1; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5873 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5874 | /* |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5875 | * 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] | 5876 | * reserved then we need to leave the reserved extents count alone. |
| 5877 | */ |
| 5878 | if (BTRFS_I(inode)->outstanding_extents >= |
| 5879 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5880 | return drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5881 | |
| 5882 | dropped_extents = BTRFS_I(inode)->reserved_extents - |
| 5883 | BTRFS_I(inode)->outstanding_extents; |
| 5884 | BTRFS_I(inode)->reserved_extents -= dropped_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5885 | return dropped_extents + drop_inode_space; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5886 | } |
| 5887 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5888 | /** |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 5889 | * calc_csum_metadata_size - return the amount of metadata space that must be |
| 5890 | * reserved/freed for the given bytes. |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5891 | * @inode: the inode we're manipulating |
| 5892 | * @num_bytes: the number of bytes in question |
| 5893 | * @reserve: 1 if we are reserving space, 0 if we are freeing space |
| 5894 | * |
| 5895 | * This adjusts the number of csum_bytes in the inode and then returns the |
| 5896 | * correct amount of metadata that must either be reserved or freed. We |
| 5897 | * calculate how many checksums we can fit into one leaf and then divide the |
| 5898 | * number of bytes that will need to be checksumed by this value to figure out |
| 5899 | * how many checksums will be required. If we are adding bytes then the number |
| 5900 | * may go up and we will return the number of additional bytes that must be |
| 5901 | * reserved. If it is going down we will return the number of bytes that must |
| 5902 | * be freed. |
| 5903 | * |
| 5904 | * This must be called with BTRFS_I(inode)->lock held. |
| 5905 | */ |
| 5906 | static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes, |
| 5907 | int reserve) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5908 | { |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5909 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 1262133 | 2015-02-03 07:50:16 -0800 | [diff] [blame] | 5910 | u64 old_csums, num_csums; |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5911 | |
| 5912 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM && |
| 5913 | BTRFS_I(inode)->csum_bytes == 0) |
| 5914 | return 0; |
| 5915 | |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 5916 | old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5917 | if (reserve) |
| 5918 | BTRFS_I(inode)->csum_bytes += num_bytes; |
| 5919 | else |
| 5920 | BTRFS_I(inode)->csum_bytes -= num_bytes; |
Chris Mason | 28f75a0 | 2015-02-04 06:59:29 -0800 | [diff] [blame] | 5921 | num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5922 | |
| 5923 | /* No change, no need to reserve more */ |
| 5924 | if (old_csums == num_csums) |
| 5925 | return 0; |
| 5926 | |
| 5927 | if (reserve) |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 5928 | return btrfs_calc_trans_metadata_size(root->fs_info, |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5929 | num_csums - old_csums); |
| 5930 | |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 5931 | return btrfs_calc_trans_metadata_size(root->fs_info, |
| 5932 | old_csums - num_csums); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5933 | } |
| 5934 | |
| 5935 | int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes) |
| 5936 | { |
| 5937 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 5938 | struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5939 | u64 to_reserve = 0; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5940 | u64 csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5941 | unsigned nr_extents = 0; |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5942 | enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL; |
Jan Schmidt | eb6b88d | 2013-01-27 23:26:00 -0700 | [diff] [blame] | 5943 | int ret = 0; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5944 | bool delalloc_lock = true; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5945 | u64 to_free = 0; |
| 5946 | unsigned dropped; |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5947 | bool release_extra = false; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5948 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5949 | /* If we are a free space inode we need to not flush since we will be in |
| 5950 | * the middle of a transaction commit. We also don't need the delalloc |
| 5951 | * mutex since we won't race with anybody. We need this mostly to make |
| 5952 | * lockdep shut its filthy mouth. |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5953 | * |
| 5954 | * If we have a transaction open (can happen if we call truncate_block |
| 5955 | * from truncate), then we need FLUSH_LIMIT so we don't deadlock. |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5956 | */ |
| 5957 | if (btrfs_is_free_space_inode(inode)) { |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5958 | flush = BTRFS_RESERVE_NO_FLUSH; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5959 | delalloc_lock = false; |
Josef Bacik | bac357dc | 2016-07-20 16:48:45 -0700 | [diff] [blame] | 5960 | } else if (current->journal_info) { |
| 5961 | flush = BTRFS_RESERVE_FLUSH_LIMIT; |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5962 | } |
Josef Bacik | c09544e | 2011-08-30 10:19:10 -0400 | [diff] [blame] | 5963 | |
Miao Xie | 08e007d | 2012-10-16 11:33:38 +0000 | [diff] [blame] | 5964 | if (flush != BTRFS_RESERVE_NO_FLUSH && |
| 5965 | btrfs_transaction_in_commit(root->fs_info)) |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 5966 | schedule_timeout(1); |
| 5967 | |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 5968 | if (delalloc_lock) |
| 5969 | mutex_lock(&BTRFS_I(inode)->delalloc_mutex); |
| 5970 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 5971 | num_bytes = ALIGN(num_bytes, root->fs_info->sectorsize); |
Josef Bacik | 8bb8ab2 | 2010-10-15 16:52:49 -0400 | [diff] [blame] | 5972 | |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5973 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 6a41dd0 | 2015-03-13 15:12:23 -0400 | [diff] [blame] | 5974 | nr_extents = (unsigned)div64_u64(num_bytes + |
| 5975 | BTRFS_MAX_EXTENT_SIZE - 1, |
| 5976 | BTRFS_MAX_EXTENT_SIZE); |
| 5977 | BTRFS_I(inode)->outstanding_extents += nr_extents; |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5978 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5979 | nr_extents = 0; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5980 | if (BTRFS_I(inode)->outstanding_extents > |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5981 | BTRFS_I(inode)->reserved_extents) |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5982 | nr_extents += BTRFS_I(inode)->outstanding_extents - |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5983 | BTRFS_I(inode)->reserved_extents; |
Josef Bacik | 7fd2ae2 | 2011-11-08 15:47:34 -0500 | [diff] [blame] | 5984 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5985 | /* We always want to reserve a slot for updating the inode. */ |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 5986 | to_reserve = btrfs_calc_trans_metadata_size(root->fs_info, |
| 5987 | nr_extents + 1); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 5988 | to_reserve += calc_csum_metadata_size(inode, num_bytes, 1); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 5989 | csum_bytes = BTRFS_I(inode)->csum_bytes; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 5990 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 57a45ced | 2011-01-25 16:30:38 -0500 | [diff] [blame] | 5991 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 5992 | if (test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags)) { |
Qu Wenruo | 7174109 | 2015-09-08 17:22:41 +0800 | [diff] [blame] | 5993 | ret = btrfs_qgroup_reserve_meta(root, |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 5994 | nr_extents * root->fs_info->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 5995 | if (ret) |
| 5996 | goto out_fail; |
Wang Shilong | a9870c0 | 2013-03-01 11:33:01 +0000 | [diff] [blame] | 5997 | } |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 5998 | |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 5999 | ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6000 | if (unlikely(ret)) { |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 6001 | btrfs_qgroup_free_meta(root, |
| 6002 | nr_extents * root->fs_info->nodesize); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6003 | goto out_fail; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6004 | } |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6005 | |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6006 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6007 | if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED, |
Josef Bacik | f485c9e | 2016-03-25 13:25:55 -0400 | [diff] [blame] | 6008 | &BTRFS_I(inode)->runtime_flags)) { |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 6009 | to_reserve -= btrfs_calc_trans_metadata_size(root->fs_info, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6010 | release_extra = true; |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6011 | } |
| 6012 | BTRFS_I(inode)->reserved_extents += nr_extents; |
| 6013 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | c64c2bd | 2012-12-14 13:48:14 -0500 | [diff] [blame] | 6014 | |
| 6015 | if (delalloc_lock) |
| 6016 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
Josef Bacik | 660d3f6 | 2011-12-09 11:18:51 -0500 | [diff] [blame] | 6017 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6018 | if (to_reserve) |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 6019 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6020 | btrfs_ino(inode), to_reserve, 1); |
Josef Bacik | 48c3d48 | 2016-03-25 13:25:49 -0400 | [diff] [blame] | 6021 | if (release_extra) |
| 6022 | btrfs_block_rsv_release(root, block_rsv, |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 6023 | btrfs_calc_trans_metadata_size(root->fs_info, 1)); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6024 | return 0; |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6025 | |
| 6026 | out_fail: |
| 6027 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6028 | dropped = drop_outstanding_extent(inode, num_bytes); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6029 | /* |
| 6030 | * If the inodes csum_bytes is the same as the original |
| 6031 | * csum_bytes then we know we haven't raced with any free()ers |
| 6032 | * so we can just reduce our inodes csum bytes and carry on. |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6033 | */ |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6034 | if (BTRFS_I(inode)->csum_bytes == csum_bytes) { |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6035 | calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6036 | } else { |
| 6037 | u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes; |
| 6038 | u64 bytes; |
| 6039 | |
| 6040 | /* |
| 6041 | * 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] | 6042 | * freed from any free-ers that occurred during this |
Josef Bacik | f4881bc | 2013-03-25 16:03:35 -0400 | [diff] [blame] | 6043 | * reservation, so we reset ->csum_bytes to the csum_bytes |
| 6044 | * before we dropped our lock, and then call the free for the |
| 6045 | * number of bytes that were freed while we were trying our |
| 6046 | * reservation. |
| 6047 | */ |
| 6048 | bytes = csum_bytes - BTRFS_I(inode)->csum_bytes; |
| 6049 | BTRFS_I(inode)->csum_bytes = csum_bytes; |
| 6050 | to_free = calc_csum_metadata_size(inode, bytes, 0); |
| 6051 | |
| 6052 | |
| 6053 | /* |
| 6054 | * Now we need to see how much we would have freed had we not |
| 6055 | * been making this reservation and our ->csum_bytes were not |
| 6056 | * artificially inflated. |
| 6057 | */ |
| 6058 | BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes; |
| 6059 | bytes = csum_bytes - orig_csum_bytes; |
| 6060 | bytes = calc_csum_metadata_size(inode, bytes, 0); |
| 6061 | |
| 6062 | /* |
| 6063 | * 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] | 6064 | * 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] | 6065 | * not had an artificially high ->csum_bytes, so we need to free |
| 6066 | * the remainder. If bytes is the same or less then we don't |
| 6067 | * need to do anything, the other free-ers did the correct |
| 6068 | * thing. |
| 6069 | */ |
| 6070 | BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes; |
| 6071 | if (bytes > to_free) |
| 6072 | to_free = bytes - to_free; |
| 6073 | else |
| 6074 | to_free = 0; |
| 6075 | } |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6076 | spin_unlock(&BTRFS_I(inode)->lock); |
Dongsheng Yang | e2d1f92 | 2015-02-06 10:26:52 -0500 | [diff] [blame] | 6077 | if (dropped) |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 6078 | to_free += btrfs_calc_trans_metadata_size(root->fs_info, |
| 6079 | dropped); |
Wang Shilong | 88e081bf | 2013-03-01 11:36:01 +0000 | [diff] [blame] | 6080 | |
| 6081 | if (to_free) { |
| 6082 | btrfs_block_rsv_release(root, block_rsv, to_free); |
| 6083 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 6084 | btrfs_ino(inode), to_free, 0); |
| 6085 | } |
| 6086 | if (delalloc_lock) |
| 6087 | mutex_unlock(&BTRFS_I(inode)->delalloc_mutex); |
| 6088 | return ret; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6089 | } |
| 6090 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6091 | /** |
| 6092 | * btrfs_delalloc_release_metadata - release a metadata reservation for an inode |
| 6093 | * @inode: the inode to release the reservation for |
| 6094 | * @num_bytes: the number of bytes we're releasing |
| 6095 | * |
| 6096 | * This will release the metadata reservation for an inode. This can be called |
| 6097 | * once we complete IO for a given set of bytes to release their metadata |
| 6098 | * reservations. |
| 6099 | */ |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6100 | void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes) |
| 6101 | { |
| 6102 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6103 | u64 to_free = 0; |
| 6104 | unsigned dropped; |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6105 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 6106 | num_bytes = ALIGN(num_bytes, root->fs_info->sectorsize); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6107 | spin_lock(&BTRFS_I(inode)->lock); |
Josef Bacik | dcab6a3 | 2015-02-11 15:08:59 -0500 | [diff] [blame] | 6108 | dropped = drop_outstanding_extent(inode, num_bytes); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6109 | |
Miao Xie | 0934856 | 2013-02-07 10:12:07 +0000 | [diff] [blame] | 6110 | if (num_bytes) |
| 6111 | to_free = calc_csum_metadata_size(inode, num_bytes, 0); |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6112 | spin_unlock(&BTRFS_I(inode)->lock); |
Josef Bacik | 9e0baf6 | 2011-07-15 15:16:44 +0000 | [diff] [blame] | 6113 | if (dropped > 0) |
Jeff Mahoney | 27965b6 | 2016-06-16 11:07:27 -0400 | [diff] [blame] | 6114 | to_free += btrfs_calc_trans_metadata_size(root->fs_info, |
| 6115 | dropped); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6116 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 6117 | if (btrfs_is_testing(root->fs_info)) |
Josef Bacik | 6a3891c | 2015-03-16 17:38:52 -0400 | [diff] [blame] | 6118 | return; |
| 6119 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 6120 | trace_btrfs_space_reservation(root->fs_info, "delalloc", |
| 6121 | btrfs_ino(inode), to_free, 0); |
Arne Jansen | c556723 | 2011-09-14 15:44:05 +0200 | [diff] [blame] | 6122 | |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6123 | btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv, |
| 6124 | to_free); |
| 6125 | } |
| 6126 | |
Josef Bacik | 7709cde | 2011-08-04 10:25:02 -0400 | [diff] [blame] | 6127 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6128 | * btrfs_delalloc_reserve_space - reserve data and metadata space for |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6129 | * delalloc |
| 6130 | * @inode: inode we're writing to |
| 6131 | * @start: start range we are writing to |
| 6132 | * @len: how long the range we are writing to |
| 6133 | * |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6134 | * This will do the following things |
| 6135 | * |
| 6136 | * o reserve space in data space info for num bytes |
| 6137 | * and reserve precious corresponding qgroup space |
| 6138 | * (Done in check_data_free_space) |
| 6139 | * |
| 6140 | * o reserve space for metadata space, based on the number of outstanding |
| 6141 | * extents and how much csums will be needed |
| 6142 | * also reserve metadata space in a per root over-reserve method. |
| 6143 | * o add to the inodes->delalloc_bytes |
| 6144 | * o add it to the fs_info's delalloc inodes list. |
| 6145 | * (Above 3 all done in delalloc_reserve_metadata) |
| 6146 | * |
| 6147 | * Return 0 for success |
| 6148 | * Return <0 for error(-ENOSPC or -EQUOT) |
| 6149 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6150 | int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6151 | { |
| 6152 | int ret; |
| 6153 | |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6154 | ret = btrfs_check_data_free_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6155 | if (ret < 0) |
| 6156 | return ret; |
| 6157 | ret = btrfs_delalloc_reserve_metadata(inode, len); |
| 6158 | if (ret < 0) |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6159 | btrfs_free_reserved_data_space(inode, start, len); |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6160 | return ret; |
| 6161 | } |
| 6162 | |
| 6163 | /** |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6164 | * btrfs_delalloc_release_space - release data and metadata space for delalloc |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6165 | * @inode: inode we're releasing space for |
| 6166 | * @start: start position of the space already reserved |
| 6167 | * @len: the len of the space already reserved |
| 6168 | * |
| 6169 | * This must be matched with a call to btrfs_delalloc_reserve_space. This is |
| 6170 | * called in the case that we don't need the metadata AND data reservations |
| 6171 | * anymore. So if there is an error or we insert an inline extent. |
| 6172 | * |
| 6173 | * This function will release the metadata space that was not used and will |
| 6174 | * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes |
| 6175 | * list if there are no delalloc bytes left. |
| 6176 | * Also it will handle the qgroup reserved space. |
| 6177 | */ |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6178 | void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len) |
Qu Wenruo | 1ada3a6 | 2015-09-08 17:25:53 +0800 | [diff] [blame] | 6179 | { |
| 6180 | btrfs_delalloc_release_metadata(inode, len); |
Qu Wenruo | 7cf5b97 | 2015-09-08 17:25:55 +0800 | [diff] [blame] | 6181 | btrfs_free_reserved_data_space(inode, start, len); |
Yan, Zheng | 0ca1f7c | 2010-05-16 10:48:47 -0400 | [diff] [blame] | 6182 | } |
| 6183 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6184 | static int update_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 6185 | struct btrfs_fs_info *info, u64 bytenr, |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 6186 | u64 num_bytes, int alloc) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6187 | { |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6188 | struct btrfs_block_group_cache *cache = NULL; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6189 | u64 total = num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6190 | u64 old_val; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6191 | u64 byte_in_group; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6192 | int factor; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 6193 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6194 | /* block accounting for super block */ |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6195 | spin_lock(&info->delalloc_root_lock); |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6196 | old_val = btrfs_super_bytes_used(info->super_copy); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6197 | if (alloc) |
| 6198 | old_val += num_bytes; |
| 6199 | else |
| 6200 | old_val -= num_bytes; |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 6201 | btrfs_set_super_bytes_used(info->super_copy, old_val); |
Miao Xie | eb73c1b | 2013-05-15 07:48:22 +0000 | [diff] [blame] | 6202 | spin_unlock(&info->delalloc_root_lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6203 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 6204 | while (total) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6205 | cache = btrfs_lookup_block_group(info, bytenr); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6206 | if (!cache) |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6207 | return -ENOENT; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6208 | if (cache->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 6209 | BTRFS_BLOCK_GROUP_RAID1 | |
| 6210 | BTRFS_BLOCK_GROUP_RAID10)) |
| 6211 | factor = 2; |
| 6212 | else |
| 6213 | factor = 1; |
Josef Bacik | 9d66e23 | 2010-08-25 16:54:15 -0400 | [diff] [blame] | 6214 | /* |
| 6215 | * If this block group has free space cache written out, we |
| 6216 | * need to make sure to load it if we are removing space. This |
| 6217 | * is because we need the unpinning stage to actually add the |
| 6218 | * space back to the block group, otherwise we will leak space. |
| 6219 | */ |
| 6220 | if (!alloc && cache->cached == BTRFS_CACHE_NO) |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6221 | cache_block_group(cache, 1); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6222 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6223 | byte_in_group = bytenr - cache->key.objectid; |
| 6224 | WARN_ON(byte_in_group > cache->key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6225 | |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6226 | spin_lock(&cache->space_info->lock); |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6227 | spin_lock(&cache->lock); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6228 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 6229 | if (btrfs_test_opt(info, SPACE_CACHE) && |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 6230 | cache->disk_cache_state < BTRFS_DC_CLEAR) |
| 6231 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
| 6232 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6233 | old_val = btrfs_block_group_used(&cache->item); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6234 | num_bytes = min(total, cache->key.offset - byte_in_group); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6235 | if (alloc) { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6236 | old_val += num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6237 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6238 | cache->reserved -= num_bytes; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6239 | cache->space_info->bytes_reserved -= num_bytes; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 6240 | cache->space_info->bytes_used += num_bytes; |
| 6241 | cache->space_info->disk_used += num_bytes * factor; |
Chris Mason | c286ac4 | 2008-07-22 23:06:41 -0400 | [diff] [blame] | 6242 | spin_unlock(&cache->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6243 | spin_unlock(&cache->space_info->lock); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6244 | } else { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6245 | old_val -= num_bytes; |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6246 | btrfs_set_block_group_used(&cache->item, old_val); |
| 6247 | cache->pinned += num_bytes; |
| 6248 | cache->space_info->bytes_pinned += num_bytes; |
| 6249 | cache->space_info->bytes_used -= num_bytes; |
| 6250 | cache->space_info->disk_used -= num_bytes * factor; |
| 6251 | spin_unlock(&cache->lock); |
| 6252 | spin_unlock(&cache->space_info->lock); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 6253 | |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6254 | trace_btrfs_space_reservation(root->fs_info, "pinned", |
| 6255 | cache->space_info->flags, |
| 6256 | num_bytes, 1); |
Filipe Manana | ae0ab00 | 2014-11-26 15:28:52 +0000 | [diff] [blame] | 6257 | set_extent_dirty(info->pinned_extents, |
| 6258 | bytenr, bytenr + num_bytes - 1, |
| 6259 | GFP_NOFS | __GFP_NOFAIL); |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 6260 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 6261 | |
| 6262 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 6263 | if (list_empty(&cache->dirty_list)) { |
| 6264 | list_add_tail(&cache->dirty_list, |
| 6265 | &trans->transaction->dirty_bgs); |
| 6266 | trans->transaction->num_dirty_bgs++; |
| 6267 | btrfs_get_block_group(cache); |
| 6268 | } |
| 6269 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 6270 | |
Filipe Manana | 036a934 | 2015-11-23 15:25:16 +0000 | [diff] [blame] | 6271 | /* |
| 6272 | * No longer have used bytes in this block group, queue it for |
| 6273 | * deletion. We do this after adding the block group to the |
| 6274 | * dirty list to avoid races between cleaner kthread and space |
| 6275 | * cache writeout. |
| 6276 | */ |
| 6277 | if (!alloc && old_val == 0) { |
| 6278 | spin_lock(&info->unused_bgs_lock); |
| 6279 | if (list_empty(&cache->bg_list)) { |
| 6280 | btrfs_get_block_group(cache); |
| 6281 | list_add_tail(&cache->bg_list, |
| 6282 | &info->unused_bgs); |
| 6283 | } |
| 6284 | spin_unlock(&info->unused_bgs_lock); |
| 6285 | } |
| 6286 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6287 | btrfs_put_block_group(cache); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 6288 | total -= num_bytes; |
| 6289 | bytenr += num_bytes; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6290 | } |
| 6291 | return 0; |
| 6292 | } |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 6293 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6294 | static u64 first_logical_byte(struct btrfs_root *root, u64 search_start) |
| 6295 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6296 | struct btrfs_block_group_cache *cache; |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6297 | u64 bytenr; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6298 | |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 6299 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 6300 | bytenr = root->fs_info->first_logical_byte; |
| 6301 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 6302 | |
| 6303 | if (bytenr < (u64)-1) |
| 6304 | return bytenr; |
| 6305 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6306 | cache = btrfs_lookup_first_block_group(root->fs_info, search_start); |
| 6307 | if (!cache) |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6308 | return 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 6309 | |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6310 | bytenr = cache->key.objectid; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6311 | btrfs_put_block_group(cache); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 6312 | |
| 6313 | return bytenr; |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 6314 | } |
| 6315 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6316 | static int pin_down_extent(struct btrfs_root *root, |
| 6317 | struct btrfs_block_group_cache *cache, |
| 6318 | u64 bytenr, u64 num_bytes, int reserved) |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6319 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6320 | spin_lock(&cache->space_info->lock); |
| 6321 | spin_lock(&cache->lock); |
| 6322 | cache->pinned += num_bytes; |
| 6323 | cache->space_info->bytes_pinned += num_bytes; |
| 6324 | if (reserved) { |
| 6325 | cache->reserved -= num_bytes; |
| 6326 | cache->space_info->bytes_reserved -= num_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6327 | } |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6328 | spin_unlock(&cache->lock); |
| 6329 | spin_unlock(&cache->space_info->lock); |
| 6330 | |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6331 | trace_btrfs_space_reservation(root->fs_info, "pinned", |
| 6332 | cache->space_info->flags, num_bytes, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6333 | set_extent_dirty(root->fs_info->pinned_extents, bytenr, |
| 6334 | bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL); |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 6335 | return 0; |
| 6336 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 6337 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6338 | /* |
| 6339 | * this function must be called within transaction |
| 6340 | */ |
| 6341 | int btrfs_pin_extent(struct btrfs_root *root, |
| 6342 | u64 bytenr, u64 num_bytes, int reserved) |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6343 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6344 | struct btrfs_block_group_cache *cache; |
| 6345 | |
| 6346 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6347 | BUG_ON(!cache); /* Logic error */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6348 | |
| 6349 | pin_down_extent(root, cache, bytenr, num_bytes, reserved); |
| 6350 | |
| 6351 | btrfs_put_block_group(cache); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6352 | return 0; |
| 6353 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 6354 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6355 | /* |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6356 | * this function must be called within transaction |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6357 | */ |
Liu Bo | dcfac41 | 2012-12-27 09:01:20 +0000 | [diff] [blame] | 6358 | int btrfs_pin_extent_for_log_replay(struct btrfs_root *root, |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6359 | u64 bytenr, u64 num_bytes) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6360 | { |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6361 | struct btrfs_block_group_cache *cache; |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6362 | int ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6363 | |
| 6364 | cache = btrfs_lookup_block_group(root->fs_info, bytenr); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6365 | if (!cache) |
| 6366 | return -EINVAL; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6367 | |
| 6368 | /* |
| 6369 | * pull in the free space cache (if any) so that our pin |
| 6370 | * removes the free space from the cache. We have load_only set |
| 6371 | * to one because the slow code to read in the free extents does check |
| 6372 | * the pinned extents. |
| 6373 | */ |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 6374 | cache_block_group(cache, 1); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6375 | |
| 6376 | pin_down_extent(root, cache, bytenr, num_bytes, 0); |
| 6377 | |
| 6378 | /* 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] | 6379 | ret = btrfs_remove_free_space(cache, bytenr, num_bytes); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6380 | btrfs_put_block_group(cache); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 6381 | return ret; |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 6382 | } |
| 6383 | |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 6384 | static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes) |
| 6385 | { |
| 6386 | int ret; |
| 6387 | struct btrfs_block_group_cache *block_group; |
| 6388 | struct btrfs_caching_control *caching_ctl; |
| 6389 | |
| 6390 | block_group = btrfs_lookup_block_group(root->fs_info, start); |
| 6391 | if (!block_group) |
| 6392 | return -EINVAL; |
| 6393 | |
| 6394 | cache_block_group(block_group, 0); |
| 6395 | caching_ctl = get_caching_control(block_group); |
| 6396 | |
| 6397 | if (!caching_ctl) { |
| 6398 | /* Logic error */ |
| 6399 | BUG_ON(!block_group_cache_done(block_group)); |
| 6400 | ret = btrfs_remove_free_space(block_group, start, num_bytes); |
| 6401 | } else { |
| 6402 | mutex_lock(&caching_ctl->mutex); |
| 6403 | |
| 6404 | if (start >= caching_ctl->progress) { |
| 6405 | ret = add_excluded_extent(root, start, num_bytes); |
| 6406 | } else if (start + num_bytes <= caching_ctl->progress) { |
| 6407 | ret = btrfs_remove_free_space(block_group, |
| 6408 | start, num_bytes); |
| 6409 | } else { |
| 6410 | num_bytes = caching_ctl->progress - start; |
| 6411 | ret = btrfs_remove_free_space(block_group, |
| 6412 | start, num_bytes); |
| 6413 | if (ret) |
| 6414 | goto out_lock; |
| 6415 | |
| 6416 | num_bytes = (start + num_bytes) - |
| 6417 | caching_ctl->progress; |
| 6418 | start = caching_ctl->progress; |
| 6419 | ret = add_excluded_extent(root, start, num_bytes); |
| 6420 | } |
| 6421 | out_lock: |
| 6422 | mutex_unlock(&caching_ctl->mutex); |
| 6423 | put_caching_control(caching_ctl); |
| 6424 | } |
| 6425 | btrfs_put_block_group(block_group); |
| 6426 | return ret; |
| 6427 | } |
| 6428 | |
| 6429 | int btrfs_exclude_logged_extents(struct btrfs_root *log, |
| 6430 | struct extent_buffer *eb) |
| 6431 | { |
| 6432 | struct btrfs_file_extent_item *item; |
| 6433 | struct btrfs_key key; |
| 6434 | int found_type; |
| 6435 | int i; |
| 6436 | |
| 6437 | if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS)) |
| 6438 | return 0; |
| 6439 | |
| 6440 | for (i = 0; i < btrfs_header_nritems(eb); i++) { |
| 6441 | btrfs_item_key_to_cpu(eb, &key, i); |
| 6442 | if (key.type != BTRFS_EXTENT_DATA_KEY) |
| 6443 | continue; |
| 6444 | item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item); |
| 6445 | found_type = btrfs_file_extent_type(eb, item); |
| 6446 | if (found_type == BTRFS_FILE_EXTENT_INLINE) |
| 6447 | continue; |
| 6448 | if (btrfs_file_extent_disk_bytenr(eb, item) == 0) |
| 6449 | continue; |
| 6450 | key.objectid = btrfs_file_extent_disk_bytenr(eb, item); |
| 6451 | key.offset = btrfs_file_extent_disk_num_bytes(eb, item); |
| 6452 | __exclude_logged_extent(log, key.objectid, key.offset); |
| 6453 | } |
| 6454 | |
| 6455 | return 0; |
| 6456 | } |
| 6457 | |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 6458 | static void |
| 6459 | btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6460 | { |
| 6461 | atomic_inc(&bg->reservations); |
| 6462 | } |
| 6463 | |
| 6464 | void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info, |
| 6465 | const u64 start) |
| 6466 | { |
| 6467 | struct btrfs_block_group_cache *bg; |
| 6468 | |
| 6469 | bg = btrfs_lookup_block_group(fs_info, start); |
| 6470 | ASSERT(bg); |
| 6471 | if (atomic_dec_and_test(&bg->reservations)) |
| 6472 | wake_up_atomic_t(&bg->reservations); |
| 6473 | btrfs_put_block_group(bg); |
| 6474 | } |
| 6475 | |
| 6476 | static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a) |
| 6477 | { |
| 6478 | schedule(); |
| 6479 | return 0; |
| 6480 | } |
| 6481 | |
| 6482 | void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg) |
| 6483 | { |
| 6484 | struct btrfs_space_info *space_info = bg->space_info; |
| 6485 | |
| 6486 | ASSERT(bg->ro); |
| 6487 | |
| 6488 | if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA)) |
| 6489 | return; |
| 6490 | |
| 6491 | /* |
| 6492 | * Our block group is read only but before we set it to read only, |
| 6493 | * some task might have had allocated an extent from it already, but it |
| 6494 | * has not yet created a respective ordered extent (and added it to a |
| 6495 | * root's list of ordered extents). |
| 6496 | * Therefore wait for any task currently allocating extents, since the |
| 6497 | * block group's reservations counter is incremented while a read lock |
| 6498 | * on the groups' semaphore is held and decremented after releasing |
| 6499 | * the read access on that semaphore and creating the ordered extent. |
| 6500 | */ |
| 6501 | down_write(&space_info->groups_sem); |
| 6502 | up_write(&space_info->groups_sem); |
| 6503 | |
| 6504 | wait_on_atomic_t(&bg->reservations, |
| 6505 | btrfs_wait_bg_reservations_atomic_t, |
| 6506 | TASK_UNINTERRUPTIBLE); |
| 6507 | } |
| 6508 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6509 | /** |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6510 | * btrfs_add_reserved_bytes - update the block_group and space info counters |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6511 | * @cache: The cache we are manipulating |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6512 | * @ram_bytes: The number of bytes of file content, and will be same to |
| 6513 | * @num_bytes except for the compress path. |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6514 | * @num_bytes: The number of bytes in question |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6515 | * @delalloc: The blocks are allocated for the delalloc write |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6516 | * |
Xiaoguang Wang | 745699e | 2016-09-23 12:38:50 +0800 | [diff] [blame] | 6517 | * This is called by the allocator when it reserves space. If this is a |
| 6518 | * reservation and the block group has become read only we cannot make the |
| 6519 | * reservation and return -EAGAIN, otherwise this function always succeeds. |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6520 | */ |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6521 | static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6522 | u64 ram_bytes, u64 num_bytes, int delalloc) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6523 | { |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6524 | struct btrfs_space_info *space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6525 | int ret = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6526 | |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6527 | spin_lock(&space_info->lock); |
| 6528 | spin_lock(&cache->lock); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6529 | if (cache->ro) { |
| 6530 | ret = -EAGAIN; |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6531 | } else { |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6532 | cache->reserved += num_bytes; |
| 6533 | space_info->bytes_reserved += num_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6534 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 6535 | trace_btrfs_space_reservation(cache->fs_info, |
| 6536 | "space_info", space_info->flags, |
| 6537 | ram_bytes, 0); |
| 6538 | space_info->bytes_may_use -= ram_bytes; |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 6539 | if (delalloc) |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6540 | cache->delalloc_bytes += num_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6541 | } |
Josef Bacik | fb25e91 | 2011-07-26 17:00:46 -0400 | [diff] [blame] | 6542 | spin_unlock(&cache->lock); |
| 6543 | spin_unlock(&space_info->lock); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6544 | return ret; |
| 6545 | } |
| 6546 | |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 6547 | /** |
| 6548 | * btrfs_free_reserved_bytes - update the block_group and space info counters |
| 6549 | * @cache: The cache we are manipulating |
| 6550 | * @num_bytes: The number of bytes in question |
| 6551 | * @delalloc: The blocks are allocated for the delalloc write |
| 6552 | * |
| 6553 | * This is called by somebody who is freeing space that was never actually used |
| 6554 | * on disk. For example if you reserve some space for a new leaf in transaction |
| 6555 | * A and before transaction A commits you free that leaf, you call this with |
| 6556 | * reserve set to 0 in order to clear the reservation. |
| 6557 | */ |
| 6558 | |
| 6559 | static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache, |
| 6560 | u64 num_bytes, int delalloc) |
| 6561 | { |
| 6562 | struct btrfs_space_info *space_info = cache->space_info; |
| 6563 | int ret = 0; |
| 6564 | |
| 6565 | spin_lock(&space_info->lock); |
| 6566 | spin_lock(&cache->lock); |
| 6567 | if (cache->ro) |
| 6568 | space_info->bytes_readonly += num_bytes; |
| 6569 | cache->reserved -= num_bytes; |
| 6570 | space_info->bytes_reserved -= num_bytes; |
| 6571 | |
| 6572 | if (delalloc) |
| 6573 | cache->delalloc_bytes -= num_bytes; |
| 6574 | spin_unlock(&cache->lock); |
| 6575 | spin_unlock(&space_info->lock); |
| 6576 | return ret; |
| 6577 | } |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 6578 | void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6579 | struct btrfs_root *root) |
| 6580 | { |
| 6581 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6582 | struct btrfs_caching_control *next; |
| 6583 | struct btrfs_caching_control *caching_ctl; |
| 6584 | struct btrfs_block_group_cache *cache; |
| 6585 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6586 | down_write(&fs_info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6587 | |
| 6588 | list_for_each_entry_safe(caching_ctl, next, |
| 6589 | &fs_info->caching_block_groups, list) { |
| 6590 | cache = caching_ctl->block_group; |
| 6591 | if (block_group_cache_done(cache)) { |
| 6592 | cache->last_byte_to_unpin = (u64)-1; |
| 6593 | list_del_init(&caching_ctl->list); |
| 6594 | put_caching_control(caching_ctl); |
| 6595 | } else { |
| 6596 | cache->last_byte_to_unpin = caching_ctl->progress; |
| 6597 | } |
| 6598 | } |
| 6599 | |
| 6600 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6601 | fs_info->pinned_extents = &fs_info->freed_extents[1]; |
| 6602 | else |
| 6603 | fs_info->pinned_extents = &fs_info->freed_extents[0]; |
| 6604 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 6605 | up_write(&fs_info->commit_root_sem); |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 6606 | |
| 6607 | update_global_block_rsv(fs_info); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6608 | } |
| 6609 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6610 | /* |
| 6611 | * Returns the free cluster for the given space info and sets empty_cluster to |
| 6612 | * what it should be based on the mount options. |
| 6613 | */ |
| 6614 | static struct btrfs_free_cluster * |
| 6615 | fetch_cluster_info(struct btrfs_root *root, struct btrfs_space_info *space_info, |
| 6616 | u64 *empty_cluster) |
| 6617 | { |
| 6618 | struct btrfs_free_cluster *ret = NULL; |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6619 | bool ssd = btrfs_test_opt(root->fs_info, SSD); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6620 | |
| 6621 | *empty_cluster = 0; |
| 6622 | if (btrfs_mixed_space_info(space_info)) |
| 6623 | return ret; |
| 6624 | |
| 6625 | if (ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6626 | *empty_cluster = SZ_2M; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6627 | if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) { |
| 6628 | ret = &root->fs_info->meta_alloc_cluster; |
| 6629 | if (!ssd) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 6630 | *empty_cluster = SZ_64K; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6631 | } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) { |
| 6632 | ret = &root->fs_info->data_alloc_cluster; |
| 6633 | } |
| 6634 | |
| 6635 | return ret; |
| 6636 | } |
| 6637 | |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6638 | static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end, |
| 6639 | const bool return_free_space) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6640 | { |
| 6641 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 6642 | struct btrfs_block_group_cache *cache = NULL; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6643 | struct btrfs_space_info *space_info; |
| 6644 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6645 | struct btrfs_free_cluster *cluster = NULL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6646 | u64 len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6647 | u64 total_unpinned = 0; |
| 6648 | u64 empty_cluster = 0; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6649 | bool readonly; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6650 | |
| 6651 | while (start <= end) { |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6652 | readonly = false; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6653 | if (!cache || |
| 6654 | start >= cache->key.objectid + cache->key.offset) { |
| 6655 | if (cache) |
| 6656 | btrfs_put_block_group(cache); |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6657 | total_unpinned = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6658 | cache = btrfs_lookup_block_group(fs_info, start); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6659 | BUG_ON(!cache); /* Logic error */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6660 | |
| 6661 | cluster = fetch_cluster_info(root, |
| 6662 | cache->space_info, |
| 6663 | &empty_cluster); |
| 6664 | empty_cluster <<= 1; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6665 | } |
| 6666 | |
| 6667 | len = cache->key.objectid + cache->key.offset - start; |
| 6668 | len = min(len, end + 1 - start); |
| 6669 | |
| 6670 | if (start < cache->last_byte_to_unpin) { |
| 6671 | len = min(len, cache->last_byte_to_unpin - start); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6672 | if (return_free_space) |
| 6673 | btrfs_add_free_space(cache, start, len); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6674 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6675 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6676 | start += len; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6677 | total_unpinned += len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6678 | space_info = cache->space_info; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 6679 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 6680 | /* |
| 6681 | * If this space cluster has been marked as fragmented and we've |
| 6682 | * unpinned enough in this block group to potentially allow a |
| 6683 | * cluster to be created inside of it go ahead and clear the |
| 6684 | * fragmented check. |
| 6685 | */ |
| 6686 | if (cluster && cluster->fragmented && |
| 6687 | total_unpinned > empty_cluster) { |
| 6688 | spin_lock(&cluster->lock); |
| 6689 | cluster->fragmented = 0; |
| 6690 | spin_unlock(&cluster->lock); |
| 6691 | } |
| 6692 | |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6693 | spin_lock(&space_info->lock); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6694 | spin_lock(&cache->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6695 | cache->pinned -= len; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6696 | space_info->bytes_pinned -= len; |
Josef Bacik | c51e7bb | 2016-03-25 13:25:54 -0400 | [diff] [blame] | 6697 | |
| 6698 | trace_btrfs_space_reservation(fs_info, "pinned", |
| 6699 | space_info->flags, len, 0); |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 6700 | space_info->max_extent_size = 0; |
Liu Bo | d288db5 | 2014-07-02 16:58:01 +0800 | [diff] [blame] | 6701 | percpu_counter_add(&space_info->total_bytes_pinned, -len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6702 | if (cache->ro) { |
| 6703 | space_info->bytes_readonly += len; |
| 6704 | readonly = true; |
| 6705 | } |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 6706 | spin_unlock(&cache->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6707 | if (!readonly && return_free_space && |
| 6708 | global_rsv->space_info == space_info) { |
| 6709 | u64 to_add = len; |
| 6710 | WARN_ON(!return_free_space); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6711 | spin_lock(&global_rsv->lock); |
| 6712 | if (!global_rsv->full) { |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6713 | to_add = min(len, global_rsv->size - |
| 6714 | global_rsv->reserved); |
| 6715 | global_rsv->reserved += to_add; |
| 6716 | space_info->bytes_may_use += to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6717 | if (global_rsv->reserved >= global_rsv->size) |
| 6718 | global_rsv->full = 1; |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6719 | trace_btrfs_space_reservation(fs_info, |
| 6720 | "space_info", |
| 6721 | space_info->flags, |
| 6722 | to_add, 1); |
| 6723 | len -= to_add; |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6724 | } |
| 6725 | spin_unlock(&global_rsv->lock); |
Josef Bacik | 957780e | 2016-05-17 13:30:55 -0400 | [diff] [blame] | 6726 | /* Add to any tickets we may have */ |
| 6727 | if (len) |
| 6728 | space_info_add_new_bytes(fs_info, space_info, |
| 6729 | len); |
Josef Bacik | 7b398f8 | 2012-10-22 15:52:28 -0400 | [diff] [blame] | 6730 | } |
| 6731 | spin_unlock(&space_info->lock); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6732 | } |
| 6733 | |
| 6734 | if (cache) |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 6735 | btrfs_put_block_group(cache); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 6736 | return 0; |
| 6737 | } |
| 6738 | |
| 6739 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6740 | struct btrfs_root *root) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6741 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6742 | struct btrfs_fs_info *fs_info = root->fs_info; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6743 | struct btrfs_block_group_cache *block_group, *tmp; |
| 6744 | struct list_head *deleted_bgs; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6745 | struct extent_io_tree *unpin; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6746 | u64 start; |
| 6747 | u64 end; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6748 | int ret; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6749 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 6750 | if (fs_info->pinned_extents == &fs_info->freed_extents[0]) |
| 6751 | unpin = &fs_info->freed_extents[1]; |
| 6752 | else |
| 6753 | unpin = &fs_info->freed_extents[0]; |
| 6754 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6755 | while (!trans->aborted) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6756 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 6757 | ret = find_first_extent_bit(unpin, 0, &start, &end, |
Josef Bacik | e613887 | 2012-09-27 17:07:30 -0400 | [diff] [blame] | 6758 | EXTENT_DIRTY, NULL); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6759 | if (ret) { |
| 6760 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6761 | break; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6762 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6763 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 6764 | if (btrfs_test_opt(root->fs_info, DISCARD)) |
Li Dongyang | 5378e60 | 2011-03-24 10:24:27 +0000 | [diff] [blame] | 6765 | ret = btrfs_discard_extent(root, start, |
| 6766 | end + 1 - start, NULL); |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 6767 | |
David Sterba | af6f8f6 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 6768 | clear_extent_dirty(unpin, start, end); |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 6769 | unpin_extent_range(root, start, end, true); |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 6770 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6771 | cond_resched(); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6772 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 6773 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 6774 | /* |
| 6775 | * Transaction is finished. We don't need the lock anymore. We |
| 6776 | * do need to clean up the block groups in case of a transaction |
| 6777 | * abort. |
| 6778 | */ |
| 6779 | deleted_bgs = &trans->transaction->deleted_bgs; |
| 6780 | list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) { |
| 6781 | u64 trimmed = 0; |
| 6782 | |
| 6783 | ret = -EROFS; |
| 6784 | if (!trans->aborted) |
| 6785 | ret = btrfs_discard_extent(root, |
| 6786 | block_group->key.objectid, |
| 6787 | block_group->key.offset, |
| 6788 | &trimmed); |
| 6789 | |
| 6790 | list_del_init(&block_group->bg_list); |
| 6791 | btrfs_put_block_group_trimming(block_group); |
| 6792 | btrfs_put_block_group(block_group); |
| 6793 | |
| 6794 | if (ret) { |
| 6795 | const char *errstr = btrfs_decode_error(ret); |
| 6796 | btrfs_warn(fs_info, |
| 6797 | "Discard failed while removing blockgroup: errno=%d %s\n", |
| 6798 | ret, errstr); |
| 6799 | } |
| 6800 | } |
| 6801 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 6802 | return 0; |
| 6803 | } |
| 6804 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 6805 | static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes, |
| 6806 | u64 owner, u64 root_objectid) |
| 6807 | { |
| 6808 | struct btrfs_space_info *space_info; |
| 6809 | u64 flags; |
| 6810 | |
| 6811 | if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
| 6812 | if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID) |
| 6813 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
| 6814 | else |
| 6815 | flags = BTRFS_BLOCK_GROUP_METADATA; |
| 6816 | } else { |
| 6817 | flags = BTRFS_BLOCK_GROUP_DATA; |
| 6818 | } |
| 6819 | |
| 6820 | space_info = __find_space_info(fs_info, flags); |
| 6821 | BUG_ON(!space_info); /* Logic bug */ |
| 6822 | percpu_counter_add(&space_info->total_bytes_pinned, num_bytes); |
| 6823 | } |
| 6824 | |
| 6825 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6826 | static int __btrfs_free_extent(struct btrfs_trans_handle *trans, |
| 6827 | struct btrfs_root *root, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6828 | struct btrfs_delayed_ref_node *node, u64 parent, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6829 | u64 root_objectid, u64 owner_objectid, |
| 6830 | u64 owner_offset, int refs_to_drop, |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6831 | struct btrfs_delayed_extent_op *extent_op) |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6832 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 6833 | struct btrfs_key key; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6834 | struct btrfs_path *path; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 6835 | struct btrfs_fs_info *info = root->fs_info; |
| 6836 | struct btrfs_root *extent_root = info->extent_root; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6837 | struct extent_buffer *leaf; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6838 | struct btrfs_extent_item *ei; |
| 6839 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 6840 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6841 | int is_data; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6842 | int extent_slot = 0; |
| 6843 | int found_extent = 0; |
| 6844 | int num_to_del = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6845 | u32 item_size; |
| 6846 | u64 refs; |
Qu Wenruo | c682f9b | 2015-03-17 16:59:47 +0800 | [diff] [blame] | 6847 | u64 bytenr = node->bytenr; |
| 6848 | u64 num_bytes = node->num_bytes; |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6849 | int last_ref = 0; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6850 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 6851 | SKINNY_METADATA); |
Chris Mason | 037e639 | 2007-03-07 11:50:24 -0500 | [diff] [blame] | 6852 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 6853 | path = btrfs_alloc_path(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 6854 | if (!path) |
| 6855 | return -ENOMEM; |
| 6856 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 6857 | path->reada = READA_FORWARD; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6858 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6859 | |
| 6860 | is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID; |
| 6861 | BUG_ON(!is_data && refs_to_drop != 1); |
| 6862 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6863 | if (is_data) |
| 6864 | skinny_metadata = 0; |
| 6865 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6866 | ret = lookup_extent_backref(trans, extent_root, path, &iref, |
| 6867 | bytenr, num_bytes, parent, |
| 6868 | root_objectid, owner_objectid, |
| 6869 | owner_offset); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6870 | if (ret == 0) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6871 | extent_slot = path->slots[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6872 | while (extent_slot >= 0) { |
| 6873 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6874 | extent_slot); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6875 | if (key.objectid != bytenr) |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6876 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6877 | if (key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6878 | key.offset == num_bytes) { |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6879 | found_extent = 1; |
| 6880 | break; |
| 6881 | } |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6882 | if (key.type == BTRFS_METADATA_ITEM_KEY && |
| 6883 | key.offset == owner_objectid) { |
| 6884 | found_extent = 1; |
| 6885 | break; |
| 6886 | } |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6887 | if (path->slots[0] - extent_slot > 5) |
| 6888 | break; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6889 | extent_slot--; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 6890 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6891 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6892 | item_size = btrfs_item_size_nr(path->nodes[0], extent_slot); |
| 6893 | if (found_extent && item_size < sizeof(*ei)) |
| 6894 | found_extent = 0; |
| 6895 | #endif |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6896 | if (!found_extent) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6897 | BUG_ON(iref); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 6898 | ret = remove_extent_backref(trans, extent_root, path, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6899 | NULL, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 6900 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6901 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6902 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6903 | goto out; |
| 6904 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6905 | btrfs_release_path(path); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 6906 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6907 | |
| 6908 | key.objectid = bytenr; |
| 6909 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6910 | key.offset = num_bytes; |
| 6911 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6912 | if (!is_data && skinny_metadata) { |
| 6913 | key.type = BTRFS_METADATA_ITEM_KEY; |
| 6914 | key.offset = owner_objectid; |
| 6915 | } |
| 6916 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6917 | ret = btrfs_search_slot(trans, extent_root, |
| 6918 | &key, path, -1, 1); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6919 | if (ret > 0 && skinny_metadata && path->slots[0]) { |
| 6920 | /* |
| 6921 | * Couldn't find our skinny metadata item, |
| 6922 | * see if we have ye olde extent item. |
| 6923 | */ |
| 6924 | path->slots[0]--; |
| 6925 | btrfs_item_key_to_cpu(path->nodes[0], &key, |
| 6926 | path->slots[0]); |
| 6927 | if (key.objectid == bytenr && |
| 6928 | key.type == BTRFS_EXTENT_ITEM_KEY && |
| 6929 | key.offset == num_bytes) |
| 6930 | ret = 0; |
| 6931 | } |
| 6932 | |
| 6933 | if (ret > 0 && skinny_metadata) { |
| 6934 | skinny_metadata = false; |
Filipe Manana | 9ce49a0 | 2014-04-24 15:15:28 +0100 | [diff] [blame] | 6935 | key.objectid = bytenr; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 6936 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6937 | key.offset = num_bytes; |
| 6938 | btrfs_release_path(path); |
| 6939 | ret = btrfs_search_slot(trans, extent_root, |
| 6940 | &key, path, -1, 1); |
| 6941 | } |
| 6942 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6943 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6944 | btrfs_err(info, |
| 6945 | "umm, got %d back from search, was looking for %llu", |
| 6946 | ret, bytenr); |
Josef Bacik | b783e62 | 2011-07-13 15:03:50 +0000 | [diff] [blame] | 6947 | if (ret > 0) |
| 6948 | btrfs_print_leaf(extent_root, |
| 6949 | path->nodes[0]); |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 6950 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6951 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6952 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6953 | goto out; |
| 6954 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 6955 | extent_slot = path->slots[0]; |
| 6956 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 6957 | } else if (WARN_ON(ret == -ENOENT)) { |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6958 | btrfs_print_leaf(extent_root, path->nodes[0]); |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 6959 | btrfs_err(info, |
| 6960 | "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] | 6961 | bytenr, parent, root_objectid, owner_objectid, |
| 6962 | owner_offset); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6963 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | c4a050b | 2014-03-14 16:36:53 -0400 | [diff] [blame] | 6964 | goto out; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 6965 | } else { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6966 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6967 | goto out; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 6968 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 6969 | |
| 6970 | leaf = path->nodes[0]; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6971 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 6972 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 |
| 6973 | if (item_size < sizeof(*ei)) { |
| 6974 | BUG_ON(found_extent || extent_slot != path->slots[0]); |
| 6975 | ret = convert_extent_item_v0(trans, extent_root, path, |
| 6976 | owner_objectid, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6977 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6978 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6979 | goto out; |
| 6980 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6981 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 6982 | btrfs_release_path(path); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6983 | path->leave_spinning = 1; |
| 6984 | |
| 6985 | key.objectid = bytenr; |
| 6986 | key.type = BTRFS_EXTENT_ITEM_KEY; |
| 6987 | key.offset = num_bytes; |
| 6988 | |
| 6989 | ret = btrfs_search_slot(trans, extent_root, &key, path, |
| 6990 | -1, 1); |
| 6991 | if (ret) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 6992 | btrfs_err(info, |
| 6993 | "umm, got %d back from search, was looking for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 6994 | ret, bytenr); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 6995 | btrfs_print_leaf(extent_root, path->nodes[0]); |
| 6996 | } |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6997 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 6998 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 6999 | goto out; |
| 7000 | } |
| 7001 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7002 | extent_slot = path->slots[0]; |
| 7003 | leaf = path->nodes[0]; |
| 7004 | item_size = btrfs_item_size_nr(leaf, extent_slot); |
| 7005 | } |
| 7006 | #endif |
| 7007 | BUG_ON(item_size < sizeof(*ei)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7008 | ei = btrfs_item_ptr(leaf, extent_slot, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 7009 | struct btrfs_extent_item); |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 7010 | if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID && |
| 7011 | key.type == BTRFS_EXTENT_ITEM_KEY) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7012 | struct btrfs_tree_block_info *bi; |
| 7013 | BUG_ON(item_size < sizeof(*ei) + sizeof(*bi)); |
| 7014 | bi = (struct btrfs_tree_block_info *)(ei + 1); |
| 7015 | WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi)); |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7016 | } |
| 7017 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7018 | refs = btrfs_extent_refs(leaf, ei); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7019 | if (refs < refs_to_drop) { |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7020 | btrfs_err(info, |
| 7021 | "trying to drop %d refs but we only have %Lu for bytenr %Lu", |
| 7022 | refs_to_drop, refs, bytenr); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7023 | ret = -EINVAL; |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7024 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 32b0253 | 2013-04-24 16:38:50 -0400 | [diff] [blame] | 7025 | goto out; |
| 7026 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7027 | refs -= refs_to_drop; |
| 7028 | |
| 7029 | if (refs > 0) { |
| 7030 | if (extent_op) |
| 7031 | __run_delayed_extent_op(extent_op, leaf, ei); |
| 7032 | /* |
| 7033 | * In the case of inline back ref, reference count will |
| 7034 | * be updated by remove_extent_backref |
| 7035 | */ |
| 7036 | if (iref) { |
| 7037 | BUG_ON(!found_extent); |
| 7038 | } else { |
| 7039 | btrfs_set_extent_refs(leaf, ei, refs); |
| 7040 | btrfs_mark_buffer_dirty(leaf); |
| 7041 | } |
| 7042 | if (found_extent) { |
| 7043 | ret = remove_extent_backref(trans, extent_root, path, |
| 7044 | iref, refs_to_drop, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7045 | is_data, &last_ref); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7046 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7047 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7048 | goto out; |
| 7049 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7050 | } |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7051 | add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid, |
| 7052 | root_objectid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7053 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7054 | if (found_extent) { |
| 7055 | BUG_ON(is_data && refs_to_drop != |
Zhaolei | 9ed0dea | 2015-08-06 22:16:24 +0800 | [diff] [blame] | 7056 | extent_data_ref_count(path, iref)); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7057 | if (iref) { |
| 7058 | BUG_ON(path->slots[0] != extent_slot); |
| 7059 | } else { |
| 7060 | BUG_ON(path->slots[0] != extent_slot + 1); |
| 7061 | path->slots[0] = extent_slot; |
| 7062 | num_to_del = 2; |
| 7063 | } |
Chris Mason | 78fae27 | 2007-03-25 11:35:08 -0400 | [diff] [blame] | 7064 | } |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7065 | |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7066 | last_ref = 1; |
Chris Mason | 952fcca | 2008-02-18 16:33:44 -0500 | [diff] [blame] | 7067 | ret = btrfs_del_items(trans, extent_root, path, path->slots[0], |
| 7068 | num_to_del); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7069 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7070 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7071 | goto out; |
| 7072 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 7073 | btrfs_release_path(path); |
David Woodhouse | 21af804 | 2008-08-12 14:13:26 +0100 | [diff] [blame] | 7074 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7075 | if (is_data) { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 7076 | ret = btrfs_del_csums(trans, info, bytenr, num_bytes); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7077 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7078 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7079 | goto out; |
| 7080 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 7081 | } |
| 7082 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7083 | ret = add_to_free_space_tree(trans, root->fs_info, bytenr, |
| 7084 | num_bytes); |
| 7085 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7086 | btrfs_abort_transaction(trans, ret); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 7087 | goto out; |
| 7088 | } |
| 7089 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 7090 | ret = update_block_group(trans, root->fs_info, bytenr, |
| 7091 | num_bytes, 0); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7092 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7093 | btrfs_abort_transaction(trans, ret); |
David Sterba | 005d642 | 2012-09-18 07:52:32 -0600 | [diff] [blame] | 7094 | goto out; |
| 7095 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7096 | } |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 7097 | btrfs_release_path(path); |
| 7098 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7099 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 7100 | btrfs_free_path(path); |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 7101 | return ret; |
| 7102 | } |
| 7103 | |
| 7104 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7105 | * 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] | 7106 | * delayed ref for that extent as well. This searches the delayed ref tree for |
| 7107 | * a given extent, and if there are no other delayed refs to be processed, it |
| 7108 | * removes it from the tree. |
| 7109 | */ |
| 7110 | static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans, |
| 7111 | struct btrfs_root *root, u64 bytenr) |
| 7112 | { |
| 7113 | struct btrfs_delayed_ref_head *head; |
| 7114 | struct btrfs_delayed_ref_root *delayed_refs; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7115 | int ret = 0; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7116 | |
| 7117 | delayed_refs = &trans->transaction->delayed_refs; |
| 7118 | spin_lock(&delayed_refs->lock); |
| 7119 | head = btrfs_find_delayed_ref_head(trans, bytenr); |
| 7120 | if (!head) |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7121 | goto out_delayed_unlock; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7122 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7123 | spin_lock(&head->lock); |
Qu Wenruo | c6fc245 | 2015-03-30 17:03:00 +0800 | [diff] [blame] | 7124 | if (!list_empty(&head->ref_list)) |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7125 | goto out; |
| 7126 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7127 | if (head->extent_op) { |
| 7128 | if (!head->must_insert_reserved) |
| 7129 | goto out; |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 7130 | btrfs_free_delayed_extent_op(head->extent_op); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7131 | head->extent_op = NULL; |
| 7132 | } |
| 7133 | |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7134 | /* |
| 7135 | * waiting for the lock here would deadlock. If someone else has it |
| 7136 | * locked they are already in the process of dropping it anyway |
| 7137 | */ |
| 7138 | if (!mutex_trylock(&head->mutex)) |
| 7139 | goto out; |
| 7140 | |
| 7141 | /* |
| 7142 | * at this point we have a head with no other entries. Go |
| 7143 | * ahead and process it. |
| 7144 | */ |
| 7145 | head->node.in_tree = 0; |
Liu Bo | c46effa | 2013-10-14 12:59:45 +0800 | [diff] [blame] | 7146 | rb_erase(&head->href_node, &delayed_refs->href_root); |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7147 | |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7148 | atomic_dec(&delayed_refs->num_entries); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7149 | |
| 7150 | /* |
| 7151 | * we don't take a ref on the node because we're removing it from the |
| 7152 | * tree, so we just steal the ref the tree was holding. |
| 7153 | */ |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7154 | delayed_refs->num_heads--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7155 | if (head->processing == 0) |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 7156 | delayed_refs->num_heads_ready--; |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7157 | head->processing = 0; |
| 7158 | spin_unlock(&head->lock); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7159 | spin_unlock(&delayed_refs->lock); |
| 7160 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7161 | BUG_ON(head->extent_op); |
| 7162 | if (head->must_insert_reserved) |
| 7163 | ret = 1; |
| 7164 | |
| 7165 | mutex_unlock(&head->mutex); |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7166 | btrfs_put_delayed_ref(&head->node); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7167 | return ret; |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7168 | out: |
Josef Bacik | d7df2c7 | 2014-01-23 09:21:38 -0500 | [diff] [blame] | 7169 | spin_unlock(&head->lock); |
Chris Mason | cf93da7 | 2014-01-29 07:02:40 -0800 | [diff] [blame] | 7170 | |
| 7171 | out_delayed_unlock: |
Chris Mason | 1887be6 | 2009-03-13 10:11:24 -0400 | [diff] [blame] | 7172 | spin_unlock(&delayed_refs->lock); |
| 7173 | return 0; |
| 7174 | } |
| 7175 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7176 | void btrfs_free_tree_block(struct btrfs_trans_handle *trans, |
| 7177 | struct btrfs_root *root, |
| 7178 | struct extent_buffer *buf, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 7179 | u64 parent, int last_ref) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7180 | { |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7181 | int pin = 1; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7182 | int ret; |
| 7183 | |
| 7184 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7185 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
| 7186 | buf->start, buf->len, |
| 7187 | parent, root->root_key.objectid, |
| 7188 | btrfs_header_level(buf), |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7189 | BTRFS_DROP_DELAYED_REF, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7190 | BUG_ON(ret); /* -ENOMEM */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7191 | } |
| 7192 | |
| 7193 | if (!last_ref) |
| 7194 | return; |
| 7195 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7196 | if (btrfs_header_generation(buf) == trans->transid) { |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7197 | struct btrfs_block_group_cache *cache; |
| 7198 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7199 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
| 7200 | ret = check_ref_cleanup(trans, root, buf->start); |
| 7201 | if (!ret) |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7202 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7203 | } |
| 7204 | |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7205 | cache = btrfs_lookup_block_group(root->fs_info, buf->start); |
| 7206 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7207 | if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { |
| 7208 | pin_down_extent(root, cache, buf->start, buf->len, 1); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7209 | btrfs_put_block_group(cache); |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 7210 | goto out; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7211 | } |
| 7212 | |
| 7213 | WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags)); |
| 7214 | |
| 7215 | btrfs_add_free_space(cache, buf->start, buf->len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 7216 | btrfs_free_reserved_bytes(cache, buf->len, 0); |
Filipe Manana | 6219872 | 2015-01-06 20:18:45 +0000 | [diff] [blame] | 7217 | btrfs_put_block_group(cache); |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 7218 | trace_btrfs_reserved_extent_free(root, buf->start, buf->len); |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7219 | pin = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7220 | } |
| 7221 | out: |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7222 | if (pin) |
| 7223 | add_pinned_bytes(root->fs_info, buf->len, |
| 7224 | btrfs_header_level(buf), |
| 7225 | root->root_key.objectid); |
| 7226 | |
Josef Bacik | a826d6d | 2011-03-16 13:42:43 -0400 | [diff] [blame] | 7227 | /* |
| 7228 | * Deleting the buffer, clear the corrupt flag since it doesn't matter |
| 7229 | * anymore. |
| 7230 | */ |
| 7231 | clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7232 | } |
| 7233 | |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7234 | /* Can return -ENOMEM */ |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7235 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 7236 | u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7237 | u64 owner, u64 offset) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7238 | { |
| 7239 | int ret; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7240 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7241 | |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 7242 | if (btrfs_is_testing(fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 7243 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 7244 | |
Josef Bacik | b150a4f | 2013-06-19 15:00:04 -0400 | [diff] [blame] | 7245 | add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid); |
| 7246 | |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7247 | /* |
| 7248 | * tree log blocks never actually go into the extent allocation |
| 7249 | * tree, just update pinning info and exit early. |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7250 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7251 | if (root_objectid == BTRFS_TREE_LOG_OBJECTID) { |
| 7252 | WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 7253 | /* unlocks the pinned mutex */ |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7254 | btrfs_pin_extent(root, bytenr, num_bytes, 1); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7255 | ret = 0; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7256 | } else if (owner < BTRFS_FIRST_FREE_OBJECTID) { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7257 | ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr, |
| 7258 | num_bytes, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7259 | parent, root_objectid, (int)owner, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 7260 | BTRFS_DROP_DELAYED_REF, NULL); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 7261 | } else { |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 7262 | ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr, |
| 7263 | num_bytes, |
| 7264 | parent, root_objectid, owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 7265 | offset, 0, |
| 7266 | BTRFS_DROP_DELAYED_REF, NULL); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 7267 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7268 | return ret; |
| 7269 | } |
| 7270 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7271 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7272 | * when we wait for progress in the block group caching, its because |
| 7273 | * our allocation attempt failed at least once. So, we must sleep |
| 7274 | * and let some progress happen before we try again. |
| 7275 | * |
| 7276 | * This function will sleep at least once waiting for new free space to |
| 7277 | * show up, and then it will check the block group free space numbers |
| 7278 | * for our min num_bytes. Another option is to have it go ahead |
| 7279 | * and look in the rbtree for a free extent of a given size, but this |
| 7280 | * is a good start. |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7281 | * |
| 7282 | * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using |
| 7283 | * any of the information in this block group. |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7284 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7285 | static noinline void |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7286 | wait_block_group_cache_progress(struct btrfs_block_group_cache *cache, |
| 7287 | u64 num_bytes) |
| 7288 | { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7289 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7290 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7291 | caching_ctl = get_caching_control(cache); |
| 7292 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7293 | return; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7294 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7295 | wait_event(caching_ctl->wait, block_group_cache_done(cache) || |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 7296 | (cache->free_space_ctl->free_space >= num_bytes)); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7297 | |
| 7298 | put_caching_control(caching_ctl); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7299 | } |
| 7300 | |
| 7301 | static noinline int |
| 7302 | wait_block_group_cache_done(struct btrfs_block_group_cache *cache) |
| 7303 | { |
| 7304 | struct btrfs_caching_control *caching_ctl; |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7305 | int ret = 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7306 | |
| 7307 | caching_ctl = get_caching_control(cache); |
| 7308 | if (!caching_ctl) |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7309 | return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7310 | |
| 7311 | wait_event(caching_ctl->wait, block_group_cache_done(cache)); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7312 | if (cache->cached == BTRFS_CACHE_ERROR) |
| 7313 | ret = -EIO; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7314 | put_caching_control(caching_ctl); |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7315 | return ret; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7316 | } |
| 7317 | |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7318 | int __get_raid_index(u64 flags) |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7319 | { |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7320 | if (flags & BTRFS_BLOCK_GROUP_RAID10) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7321 | return BTRFS_RAID_RAID10; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7322 | else if (flags & BTRFS_BLOCK_GROUP_RAID1) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7323 | return BTRFS_RAID_RAID1; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7324 | else if (flags & BTRFS_BLOCK_GROUP_DUP) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7325 | return BTRFS_RAID_DUP; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7326 | else if (flags & BTRFS_BLOCK_GROUP_RAID0) |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 7327 | return BTRFS_RAID_RAID0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7328 | else if (flags & BTRFS_BLOCK_GROUP_RAID5) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7329 | return BTRFS_RAID_RAID5; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7330 | else if (flags & BTRFS_BLOCK_GROUP_RAID6) |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7331 | return BTRFS_RAID_RAID6; |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7332 | |
Chris Mason | e942f88 | 2013-02-20 14:06:05 -0500 | [diff] [blame] | 7333 | return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */ |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7334 | } |
| 7335 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7336 | int get_block_group_index(struct btrfs_block_group_cache *cache) |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7337 | { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 7338 | return __get_raid_index(cache->flags); |
Ilya Dryomov | 7738a53 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 7339 | } |
| 7340 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7341 | static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = { |
| 7342 | [BTRFS_RAID_RAID10] = "raid10", |
| 7343 | [BTRFS_RAID_RAID1] = "raid1", |
| 7344 | [BTRFS_RAID_DUP] = "dup", |
| 7345 | [BTRFS_RAID_RAID0] = "raid0", |
| 7346 | [BTRFS_RAID_SINGLE] = "single", |
| 7347 | [BTRFS_RAID_RAID5] = "raid5", |
| 7348 | [BTRFS_RAID_RAID6] = "raid6", |
| 7349 | }; |
| 7350 | |
Jeff Mahoney | 1b8e5df | 2013-11-20 16:50:23 -0500 | [diff] [blame] | 7351 | static const char *get_raid_name(enum btrfs_raid_types type) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 7352 | { |
| 7353 | if (type >= BTRFS_NR_RAID_TYPES) |
| 7354 | return NULL; |
| 7355 | |
| 7356 | return btrfs_raid_type_names[type]; |
| 7357 | } |
| 7358 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7359 | enum btrfs_loop_type { |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7360 | LOOP_CACHING_NOWAIT = 0, |
| 7361 | LOOP_CACHING_WAIT = 1, |
| 7362 | LOOP_ALLOC_CHUNK = 2, |
| 7363 | LOOP_NO_EMPTY_SIZE = 3, |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7364 | }; |
| 7365 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7366 | static inline void |
| 7367 | btrfs_lock_block_group(struct btrfs_block_group_cache *cache, |
| 7368 | int delalloc) |
| 7369 | { |
| 7370 | if (delalloc) |
| 7371 | down_read(&cache->data_rwsem); |
| 7372 | } |
| 7373 | |
| 7374 | static inline void |
| 7375 | btrfs_grab_block_group(struct btrfs_block_group_cache *cache, |
| 7376 | int delalloc) |
| 7377 | { |
| 7378 | btrfs_get_block_group(cache); |
| 7379 | if (delalloc) |
| 7380 | down_read(&cache->data_rwsem); |
| 7381 | } |
| 7382 | |
| 7383 | static struct btrfs_block_group_cache * |
| 7384 | btrfs_lock_cluster(struct btrfs_block_group_cache *block_group, |
| 7385 | struct btrfs_free_cluster *cluster, |
| 7386 | int delalloc) |
| 7387 | { |
Sudip Mukherjee | 89771cc | 2016-02-16 13:32:47 +0530 | [diff] [blame] | 7388 | struct btrfs_block_group_cache *used_bg = NULL; |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7389 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7390 | spin_lock(&cluster->refill_lock); |
Geert Uytterhoeven | 6719afd | 2014-06-22 14:30:09 +0200 | [diff] [blame] | 7391 | while (1) { |
| 7392 | used_bg = cluster->block_group; |
| 7393 | if (!used_bg) |
| 7394 | return NULL; |
| 7395 | |
| 7396 | if (used_bg == block_group) |
| 7397 | return used_bg; |
| 7398 | |
| 7399 | btrfs_get_block_group(used_bg); |
| 7400 | |
| 7401 | if (!delalloc) |
| 7402 | return used_bg; |
| 7403 | |
| 7404 | if (down_read_trylock(&used_bg->data_rwsem)) |
| 7405 | return used_bg; |
| 7406 | |
| 7407 | spin_unlock(&cluster->refill_lock); |
| 7408 | |
| 7409 | down_read(&used_bg->data_rwsem); |
| 7410 | |
| 7411 | spin_lock(&cluster->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7412 | if (used_bg == cluster->block_group) |
| 7413 | return used_bg; |
| 7414 | |
| 7415 | up_read(&used_bg->data_rwsem); |
| 7416 | btrfs_put_block_group(used_bg); |
| 7417 | } |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7418 | } |
| 7419 | |
| 7420 | static inline void |
| 7421 | btrfs_release_block_group(struct btrfs_block_group_cache *cache, |
| 7422 | int delalloc) |
| 7423 | { |
| 7424 | if (delalloc) |
| 7425 | up_read(&cache->data_rwsem); |
| 7426 | btrfs_put_block_group(cache); |
| 7427 | } |
| 7428 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7429 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7430 | * walks the btree of allocated extents and find a hole of a given size. |
| 7431 | * The key ins is changed to record the hole: |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7432 | * ins->objectid == start position |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 7433 | * ins->flags = BTRFS_EXTENT_ITEM_KEY |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7434 | * ins->offset == the size of the hole. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7435 | * Any available blocks before search_start are skipped. |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7436 | * |
| 7437 | * If there is no suitable free space, we will record the max size of |
| 7438 | * the free space extent currently. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7439 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7440 | static noinline int find_free_extent(struct btrfs_root *orig_root, |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7441 | u64 ram_bytes, u64 num_bytes, u64 empty_size, |
| 7442 | u64 hint_byte, struct btrfs_key *ins, |
| 7443 | u64 flags, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7444 | { |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7445 | int ret = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 7446 | struct btrfs_root *root = orig_root->fs_info->extent_root; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7447 | struct btrfs_free_cluster *last_ptr = NULL; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7448 | struct btrfs_block_group_cache *block_group = NULL; |
Josef Bacik | 81c9ad2 | 2012-01-18 10:56:06 -0500 | [diff] [blame] | 7449 | u64 search_start = 0; |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7450 | u64 max_extent_size = 0; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7451 | u64 empty_cluster = 0; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7452 | struct btrfs_space_info *space_info; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7453 | int loop = 0; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7454 | int index = __get_raid_index(flags); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7455 | bool failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7456 | bool failed_alloc = false; |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7457 | bool use_cluster = true; |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7458 | bool have_caching_bg = false; |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7459 | bool orig_have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7460 | bool full_search = false; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7461 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 7462 | WARN_ON(num_bytes < root->fs_info->sectorsize); |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 7463 | ins->type = BTRFS_EXTENT_ITEM_KEY; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7464 | ins->objectid = 0; |
| 7465 | ins->offset = 0; |
Chris Mason | b1a4d96 | 2007-04-04 15:27:52 -0400 | [diff] [blame] | 7466 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7467 | trace_find_free_extent(orig_root, num_bytes, empty_size, flags); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7468 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7469 | space_info = __find_space_info(root->fs_info, flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7470 | if (!space_info) { |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7471 | btrfs_err(root->fs_info, "No space info for %llu", flags); |
Josef Bacik | 1b1d1f6 | 2010-03-19 20:49:55 +0000 | [diff] [blame] | 7472 | return -ENOSPC; |
| 7473 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7474 | |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7475 | /* |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7476 | * If our free space is heavily fragmented we may not be able to make |
| 7477 | * big contiguous allocations, so instead of doing the expensive search |
| 7478 | * for free space, simply return ENOSPC with our max_extent_size so we |
| 7479 | * can go ahead and search for a more manageable chunk. |
| 7480 | * |
| 7481 | * If our max_extent_size is large enough for our allocation simply |
| 7482 | * disable clustering since we will likely not be able to find enough |
| 7483 | * space to create a cluster and induce latency trying. |
Josef Bacik | 6737773 | 2010-09-16 16:19:09 -0400 | [diff] [blame] | 7484 | */ |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7485 | if (unlikely(space_info->max_extent_size)) { |
| 7486 | spin_lock(&space_info->lock); |
| 7487 | if (space_info->max_extent_size && |
| 7488 | num_bytes > space_info->max_extent_size) { |
| 7489 | ins->offset = space_info->max_extent_size; |
| 7490 | spin_unlock(&space_info->lock); |
| 7491 | return -ENOSPC; |
| 7492 | } else if (space_info->max_extent_size) { |
| 7493 | use_cluster = false; |
| 7494 | } |
| 7495 | spin_unlock(&space_info->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7496 | } |
| 7497 | |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7498 | last_ptr = fetch_cluster_info(orig_root, space_info, &empty_cluster); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7499 | if (last_ptr) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7500 | spin_lock(&last_ptr->lock); |
| 7501 | if (last_ptr->block_group) |
| 7502 | hint_byte = last_ptr->window_start; |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7503 | if (last_ptr->fragmented) { |
| 7504 | /* |
| 7505 | * We still set window_start so we can keep track of the |
| 7506 | * last place we found an allocation to try and save |
| 7507 | * some time. |
| 7508 | */ |
| 7509 | hint_byte = last_ptr->window_start; |
| 7510 | use_cluster = false; |
| 7511 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7512 | spin_unlock(&last_ptr->lock); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7513 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7514 | |
Chris Mason | a061fc8 | 2008-05-07 11:43:44 -0400 | [diff] [blame] | 7515 | search_start = max(search_start, first_logical_byte(root, 0)); |
Chris Mason | 239b14b | 2008-03-24 15:02:07 -0400 | [diff] [blame] | 7516 | search_start = max(search_start, hint_byte); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7517 | if (search_start == hint_byte) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7518 | block_group = btrfs_lookup_block_group(root->fs_info, |
| 7519 | search_start); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7520 | /* |
| 7521 | * we don't want to use the block group if it doesn't match our |
| 7522 | * allocation bits, or if its not cached. |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7523 | * |
| 7524 | * However if we are re-searching with an ideal block group |
| 7525 | * 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] | 7526 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7527 | if (block_group && block_group_bits(block_group, flags) && |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7528 | block_group->cached != BTRFS_CACHE_NO) { |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7529 | down_read(&space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7530 | if (list_empty(&block_group->list) || |
| 7531 | block_group->ro) { |
| 7532 | /* |
| 7533 | * someone is removing this block group, |
| 7534 | * we can't jump into the have_block_group |
| 7535 | * target because our list pointers are not |
| 7536 | * valid |
| 7537 | */ |
| 7538 | btrfs_put_block_group(block_group); |
| 7539 | up_read(&space_info->groups_sem); |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7540 | } else { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7541 | index = get_block_group_index(block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7542 | btrfs_lock_block_group(block_group, delalloc); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7543 | goto have_block_group; |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7544 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7545 | } else if (block_group) { |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7546 | btrfs_put_block_group(block_group); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7547 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7548 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7549 | search: |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7550 | have_caching_bg = false; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7551 | if (index == 0 || index == __get_raid_index(flags)) |
| 7552 | full_search = true; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7553 | down_read(&space_info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7554 | list_for_each_entry(block_group, &space_info->block_groups[index], |
| 7555 | list) { |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7556 | u64 offset; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7557 | int cached; |
Chris Mason | 8a1413a | 2008-11-10 16:13:54 -0500 | [diff] [blame] | 7558 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7559 | btrfs_grab_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7560 | search_start = block_group->key.objectid; |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7561 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7562 | /* |
| 7563 | * this can happen if we end up cycling through all the |
| 7564 | * raid types, but we want to make sure we only allocate |
| 7565 | * for the proper type. |
| 7566 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7567 | if (!block_group_bits(block_group, flags)) { |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7568 | u64 extra = BTRFS_BLOCK_GROUP_DUP | |
| 7569 | BTRFS_BLOCK_GROUP_RAID1 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 7570 | BTRFS_BLOCK_GROUP_RAID5 | |
| 7571 | BTRFS_BLOCK_GROUP_RAID6 | |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7572 | BTRFS_BLOCK_GROUP_RAID10; |
| 7573 | |
| 7574 | /* |
| 7575 | * if they asked for extra copies and this block group |
| 7576 | * doesn't provide them, bail. This does allow us to |
| 7577 | * fill raid0 from raid1. |
| 7578 | */ |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7579 | if ((flags & extra) && !(block_group->flags & extra)) |
Chris Mason | 83a50de | 2010-12-13 15:06:46 -0500 | [diff] [blame] | 7580 | goto loop; |
| 7581 | } |
| 7582 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7583 | have_block_group: |
Josef Bacik | 291c7d2 | 2011-11-14 13:52:14 -0500 | [diff] [blame] | 7584 | cached = block_group_cache_done(block_group); |
| 7585 | if (unlikely(!cached)) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7586 | have_caching_bg = true; |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 7587 | ret = cache_block_group(block_group, 0); |
Chris Mason | 1d4284b | 2012-03-28 20:31:37 -0400 | [diff] [blame] | 7588 | BUG_ON(ret < 0); |
| 7589 | ret = 0; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7590 | } |
| 7591 | |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 7592 | if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) |
| 7593 | goto loop; |
Josef Bacik | ea6a478 | 2008-11-20 12:16:16 -0500 | [diff] [blame] | 7594 | if (unlikely(block_group->ro)) |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7595 | goto loop; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7596 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7597 | /* |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7598 | * Ok we want to try and use the cluster allocator, so |
| 7599 | * lets look there |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7600 | */ |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7601 | if (last_ptr && use_cluster) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7602 | struct btrfs_block_group_cache *used_block_group; |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7603 | unsigned long aligned_cluster; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7604 | /* |
| 7605 | * the refill lock keeps out other |
| 7606 | * people trying to start a new cluster |
| 7607 | */ |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7608 | used_block_group = btrfs_lock_cluster(block_group, |
| 7609 | last_ptr, |
| 7610 | delalloc); |
| 7611 | if (!used_block_group) |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7612 | goto refill_cluster; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 7613 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7614 | if (used_block_group != block_group && |
| 7615 | (used_block_group->ro || |
| 7616 | !block_group_bits(used_block_group, flags))) |
| 7617 | goto release_cluster; |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7618 | |
| 7619 | offset = btrfs_alloc_from_cluster(used_block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7620 | last_ptr, |
| 7621 | num_bytes, |
| 7622 | used_block_group->key.objectid, |
| 7623 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7624 | if (offset) { |
| 7625 | /* we have a block, we're done */ |
| 7626 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7627 | trace_btrfs_reserve_extent_cluster(root, |
Miao Xie | 89d4346 | 2014-01-15 20:00:57 +0800 | [diff] [blame] | 7628 | used_block_group, |
| 7629 | search_start, num_bytes); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7630 | if (used_block_group != block_group) { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7631 | btrfs_release_block_group(block_group, |
| 7632 | delalloc); |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7633 | block_group = used_block_group; |
| 7634 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7635 | goto checks; |
| 7636 | } |
| 7637 | |
Alexandre Oliva | 274bd4f | 2011-12-07 20:08:40 -0500 | [diff] [blame] | 7638 | WARN_ON(last_ptr->block_group != used_block_group); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7639 | release_cluster: |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7640 | /* If we are on LOOP_NO_EMPTY_SIZE, we can't |
| 7641 | * set up a new clusters, so lets just skip it |
| 7642 | * and let the allocator find whatever block |
| 7643 | * it can find. If we reach this point, we |
| 7644 | * will have tried the cluster allocator |
| 7645 | * plenty of times and not have found |
| 7646 | * anything, so we are likely way too |
| 7647 | * fragmented for the clustering stuff to find |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7648 | * anything. |
| 7649 | * |
| 7650 | * However, if the cluster is taken from the |
| 7651 | * current block group, release the cluster |
| 7652 | * first, so that we stand a better chance of |
| 7653 | * succeeding in the unclustered |
| 7654 | * allocation. */ |
| 7655 | if (loop >= LOOP_NO_EMPTY_SIZE && |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7656 | used_block_group != block_group) { |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7657 | spin_unlock(&last_ptr->refill_lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7658 | btrfs_release_block_group(used_block_group, |
| 7659 | delalloc); |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7660 | goto unclustered_alloc; |
| 7661 | } |
| 7662 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7663 | /* |
| 7664 | * this cluster didn't work out, free it and |
| 7665 | * start over |
| 7666 | */ |
| 7667 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
| 7668 | |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7669 | if (used_block_group != block_group) |
| 7670 | btrfs_release_block_group(used_block_group, |
| 7671 | delalloc); |
| 7672 | refill_cluster: |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7673 | if (loop >= LOOP_NO_EMPTY_SIZE) { |
| 7674 | spin_unlock(&last_ptr->refill_lock); |
| 7675 | goto unclustered_alloc; |
| 7676 | } |
| 7677 | |
Chris Mason | 8de972b | 2013-01-04 15:39:43 -0500 | [diff] [blame] | 7678 | aligned_cluster = max_t(unsigned long, |
| 7679 | empty_cluster + empty_size, |
| 7680 | block_group->full_stripe_len); |
| 7681 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7682 | /* allocate a cluster in this block group */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7683 | ret = btrfs_find_space_cluster(root, block_group, |
| 7684 | last_ptr, search_start, |
| 7685 | num_bytes, |
| 7686 | aligned_cluster); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7687 | if (ret == 0) { |
| 7688 | /* |
| 7689 | * now pull our allocation out of this |
| 7690 | * cluster |
| 7691 | */ |
| 7692 | offset = btrfs_alloc_from_cluster(block_group, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7693 | last_ptr, |
| 7694 | num_bytes, |
| 7695 | search_start, |
| 7696 | &max_extent_size); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7697 | if (offset) { |
| 7698 | /* we found one, proceed */ |
| 7699 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7700 | trace_btrfs_reserve_extent_cluster(root, |
| 7701 | block_group, search_start, |
| 7702 | num_bytes); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7703 | goto checks; |
| 7704 | } |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7705 | } else if (!cached && loop > LOOP_CACHING_NOWAIT |
| 7706 | && !failed_cluster_refill) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7707 | spin_unlock(&last_ptr->refill_lock); |
| 7708 | |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7709 | failed_cluster_refill = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7710 | wait_block_group_cache_progress(block_group, |
| 7711 | num_bytes + empty_cluster + empty_size); |
| 7712 | goto have_block_group; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7713 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7714 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7715 | /* |
| 7716 | * at this point we either didn't find a cluster |
| 7717 | * or we weren't able to allocate a block from our |
| 7718 | * cluster. Free the cluster we've been trying |
| 7719 | * to use, and go to the next block group |
| 7720 | */ |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7721 | btrfs_return_cluster_to_free_space(NULL, last_ptr); |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7722 | spin_unlock(&last_ptr->refill_lock); |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7723 | goto loop; |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7724 | } |
| 7725 | |
Alexandre Oliva | 062c05c | 2011-12-07 19:50:42 -0500 | [diff] [blame] | 7726 | unclustered_alloc: |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7727 | /* |
| 7728 | * We are doing an unclustered alloc, set the fragmented flag so |
| 7729 | * we don't bother trying to setup a cluster again until we get |
| 7730 | * more space. |
| 7731 | */ |
| 7732 | if (unlikely(last_ptr)) { |
| 7733 | spin_lock(&last_ptr->lock); |
| 7734 | last_ptr->fragmented = 1; |
| 7735 | spin_unlock(&last_ptr->lock); |
| 7736 | } |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7737 | spin_lock(&block_group->free_space_ctl->tree_lock); |
| 7738 | if (cached && |
| 7739 | block_group->free_space_ctl->free_space < |
| 7740 | num_bytes + empty_cluster + empty_size) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7741 | if (block_group->free_space_ctl->free_space > |
| 7742 | max_extent_size) |
| 7743 | max_extent_size = |
| 7744 | block_group->free_space_ctl->free_space; |
Alexandre Oliva | a5f6f71 | 2011-12-12 04:48:19 -0200 | [diff] [blame] | 7745 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 7746 | goto loop; |
| 7747 | } |
| 7748 | spin_unlock(&block_group->free_space_ctl->tree_lock); |
| 7749 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7750 | offset = btrfs_find_space_for_alloc(block_group, search_start, |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7751 | num_bytes, empty_size, |
| 7752 | &max_extent_size); |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7753 | /* |
| 7754 | * If we didn't find a chunk, and we haven't failed on this |
| 7755 | * block group before, and this block group is in the middle of |
| 7756 | * caching and we are ok with waiting, then go ahead and wait |
| 7757 | * for progress to be made, and set failed_alloc to true. |
| 7758 | * |
| 7759 | * If failed_alloc is true then we've already waited on this |
| 7760 | * block group once and should move on to the next block group. |
| 7761 | */ |
| 7762 | if (!offset && !failed_alloc && !cached && |
| 7763 | loop > LOOP_CACHING_NOWAIT) { |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7764 | wait_block_group_cache_progress(block_group, |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7765 | num_bytes + empty_size); |
| 7766 | failed_alloc = true; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7767 | goto have_block_group; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7768 | } else if (!offset) { |
| 7769 | goto loop; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7770 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7771 | checks: |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 7772 | search_start = ALIGN(offset, root->fs_info->stripesize); |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 7773 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7774 | /* move on to the next group */ |
| 7775 | if (search_start + num_bytes > |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7776 | block_group->key.objectid + block_group->key.offset) { |
| 7777 | btrfs_add_free_space(block_group, offset, num_bytes); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7778 | goto loop; |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7779 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7780 | |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7781 | if (offset < search_start) |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7782 | btrfs_add_free_space(block_group, offset, |
Josef Bacik | 6226cb0 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 7783 | search_start - offset); |
| 7784 | BUG_ON(offset > search_start); |
| 7785 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7786 | ret = btrfs_add_reserved_bytes(block_group, ram_bytes, |
| 7787 | num_bytes, delalloc); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7788 | if (ret == -EAGAIN) { |
Miao Xie | 215a63d | 2014-01-15 20:00:56 +0800 | [diff] [blame] | 7789 | btrfs_add_free_space(block_group, offset, num_bytes); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7790 | goto loop; |
| 7791 | } |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7792 | btrfs_inc_block_group_reservations(block_group); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7793 | |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7794 | /* we are all good, lets return */ |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 7795 | ins->objectid = search_start; |
| 7796 | ins->offset = num_bytes; |
| 7797 | |
Josef Bacik | 3f7de03 | 2011-11-10 08:29:20 -0500 | [diff] [blame] | 7798 | trace_btrfs_reserve_extent(orig_root, block_group, |
| 7799 | search_start, num_bytes); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7800 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7801 | break; |
| 7802 | loop: |
Josef Bacik | 0a24325 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 7803 | failed_cluster_refill = false; |
Josef Bacik | 1cdda9b | 2009-10-06 10:04:28 -0400 | [diff] [blame] | 7804 | failed_alloc = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7805 | BUG_ON(index != get_block_group_index(block_group)); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7806 | btrfs_release_block_group(block_group, delalloc); |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7807 | } |
| 7808 | up_read(&space_info->groups_sem); |
Chris Mason | f5a31e1 | 2008-11-10 11:47:09 -0500 | [diff] [blame] | 7809 | |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7810 | if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg |
| 7811 | && !orig_have_caching_bg) |
| 7812 | orig_have_caching_bg = true; |
| 7813 | |
Miao Xie | 60d2adb | 2011-09-09 17:34:35 +0800 | [diff] [blame] | 7814 | if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg) |
| 7815 | goto search; |
| 7816 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7817 | if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES) |
| 7818 | goto search; |
| 7819 | |
Josef Bacik | 285ff5a | 2012-01-13 15:27:45 -0500 | [diff] [blame] | 7820 | /* |
Josef Bacik | ccf0e72 | 2009-11-10 21:23:48 -0500 | [diff] [blame] | 7821 | * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking |
| 7822 | * caching kthreads as we move along |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7823 | * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching |
| 7824 | * LOOP_ALLOC_CHUNK, force a chunk allocation and try again |
| 7825 | * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try |
| 7826 | * again |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7827 | */ |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7828 | if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) { |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7829 | index = 0; |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7830 | if (loop == LOOP_CACHING_NOWAIT) { |
| 7831 | /* |
| 7832 | * We want to skip the LOOP_CACHING_WAIT step if we |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 7833 | * don't have any uncached bgs and we've already done a |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7834 | * full search through. |
| 7835 | */ |
chandan | 13a0db5 | 2015-11-02 13:59:46 +0530 | [diff] [blame] | 7836 | if (orig_have_caching_bg || !full_search) |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7837 | loop = LOOP_CACHING_WAIT; |
| 7838 | else |
| 7839 | loop = LOOP_ALLOC_CHUNK; |
| 7840 | } else { |
| 7841 | loop++; |
| 7842 | } |
| 7843 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 7844 | if (loop == LOOP_ALLOC_CHUNK) { |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7845 | struct btrfs_trans_handle *trans; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7846 | int exist = 0; |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7847 | |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7848 | trans = current->journal_info; |
| 7849 | if (trans) |
| 7850 | exist = 1; |
| 7851 | else |
| 7852 | trans = btrfs_join_transaction(root); |
| 7853 | |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7854 | if (IS_ERR(trans)) { |
| 7855 | ret = PTR_ERR(trans); |
| 7856 | goto out; |
| 7857 | } |
| 7858 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7859 | ret = do_chunk_alloc(trans, root, flags, |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7860 | CHUNK_ALLOC_FORCE); |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7861 | |
| 7862 | /* |
| 7863 | * If we can't allocate a new chunk we've already looped |
| 7864 | * through at least once, move on to the NO_EMPTY_SIZE |
| 7865 | * case. |
| 7866 | */ |
| 7867 | if (ret == -ENOSPC) |
| 7868 | loop = LOOP_NO_EMPTY_SIZE; |
| 7869 | |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7870 | /* |
| 7871 | * Do not bail out on ENOSPC since we |
| 7872 | * can do more things. |
| 7873 | */ |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7874 | if (ret < 0 && ret != -ENOSPC) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 7875 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7876 | else |
| 7877 | ret = 0; |
Wang Shilong | f017f15 | 2014-03-13 13:19:47 +0800 | [diff] [blame] | 7878 | if (!exist) |
| 7879 | btrfs_end_transaction(trans, root); |
Josef Bacik | 0036158 | 2013-08-14 14:02:47 -0400 | [diff] [blame] | 7880 | if (ret) |
Josef Bacik | ea658ba | 2012-09-11 16:57:25 -0400 | [diff] [blame] | 7881 | goto out; |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7882 | } |
| 7883 | |
| 7884 | if (loop == LOOP_NO_EMPTY_SIZE) { |
Josef Bacik | a5e681d | 2015-10-01 14:54:10 -0400 | [diff] [blame] | 7885 | /* |
| 7886 | * Don't loop again if we already have no empty_size and |
| 7887 | * no empty_cluster. |
| 7888 | */ |
| 7889 | if (empty_size == 0 && |
| 7890 | empty_cluster == 0) { |
| 7891 | ret = -ENOSPC; |
| 7892 | goto out; |
| 7893 | } |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 7894 | empty_size = 0; |
| 7895 | empty_cluster = 0; |
| 7896 | } |
Chris Mason | 42e70e7 | 2008-11-07 18:17:11 -0500 | [diff] [blame] | 7897 | |
Josef Bacik | 723bda2 | 2011-05-27 16:11:38 -0400 | [diff] [blame] | 7898 | goto search; |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7899 | } else if (!ins->objectid) { |
| 7900 | ret = -ENOSPC; |
Josef Bacik | d82a6f1d | 2011-05-11 15:26:06 -0400 | [diff] [blame] | 7901 | } else if (ins->objectid) { |
Josef Bacik | c759c4e | 2015-10-02 15:25:10 -0400 | [diff] [blame] | 7902 | if (!use_cluster && last_ptr) { |
| 7903 | spin_lock(&last_ptr->lock); |
| 7904 | last_ptr->window_start = ins->objectid; |
| 7905 | spin_unlock(&last_ptr->lock); |
| 7906 | } |
Josef Bacik | 2552d17 | 2009-04-03 10:14:19 -0400 | [diff] [blame] | 7907 | ret = 0; |
| 7908 | } |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 7909 | out: |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7910 | if (ret == -ENOSPC) { |
| 7911 | spin_lock(&space_info->lock); |
| 7912 | space_info->max_extent_size = max_extent_size; |
| 7913 | spin_unlock(&space_info->lock); |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7914 | ins->offset = max_extent_size; |
Josef Bacik | 4f4db21 | 2015-09-29 11:40:47 -0400 | [diff] [blame] | 7915 | } |
Chris Mason | 0f70abe | 2007-02-28 16:46:22 -0500 | [diff] [blame] | 7916 | return ret; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7917 | } |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 7918 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7919 | static void dump_space_info(struct btrfs_fs_info *fs_info, |
| 7920 | struct btrfs_space_info *info, u64 bytes, |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7921 | int dump_block_groups) |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7922 | { |
| 7923 | struct btrfs_block_group_cache *cache; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7924 | int index = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7925 | |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7926 | spin_lock(&info->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7927 | btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull", |
| 7928 | info->flags, |
| 7929 | info->total_bytes - info->bytes_used - info->bytes_pinned - |
| 7930 | info->bytes_reserved - info->bytes_readonly - |
| 7931 | info->bytes_may_use, (info->full) ? "" : "not "); |
| 7932 | btrfs_info(fs_info, |
| 7933 | "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu", |
| 7934 | info->total_bytes, info->bytes_used, info->bytes_pinned, |
| 7935 | info->bytes_reserved, info->bytes_may_use, |
| 7936 | info->bytes_readonly); |
Josef Bacik | 9ed74f2 | 2009-09-11 16:12:44 -0400 | [diff] [blame] | 7937 | spin_unlock(&info->lock); |
| 7938 | |
| 7939 | if (!dump_block_groups) |
| 7940 | return; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7941 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7942 | down_read(&info->groups_sem); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7943 | again: |
| 7944 | list_for_each_entry(cache, &info->block_groups[index], list) { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7945 | spin_lock(&cache->lock); |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7946 | btrfs_info(fs_info, |
| 7947 | "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s", |
| 7948 | cache->key.objectid, cache->key.offset, |
| 7949 | btrfs_block_group_used(&cache->item), cache->pinned, |
| 7950 | cache->reserved, cache->ro ? "[readonly]" : ""); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7951 | btrfs_dump_free_space(cache, bytes); |
| 7952 | spin_unlock(&cache->lock); |
| 7953 | } |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 7954 | if (++index < BTRFS_NR_RAID_TYPES) |
| 7955 | goto again; |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 7956 | up_read(&info->groups_sem); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7957 | } |
Zheng Yan | e856981 | 2008-09-26 10:05:48 -0400 | [diff] [blame] | 7958 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7959 | int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes, |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 7960 | u64 num_bytes, u64 min_alloc_size, |
| 7961 | u64 empty_size, u64 hint_byte, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 7962 | struct btrfs_key *ins, int is_data, int delalloc) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7963 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7964 | struct btrfs_fs_info *fs_info = root->fs_info; |
Josef Bacik | 36af4e0 | 2015-09-25 16:13:11 -0400 | [diff] [blame] | 7965 | bool final_tried = num_bytes == min_alloc_size; |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7966 | u64 flags; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 7967 | int ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7968 | |
David Sterba | b6919a5 | 2013-04-29 13:39:40 +0000 | [diff] [blame] | 7969 | flags = btrfs_get_alloc_profile(root, is_data); |
Chris Mason | 98d20f6 | 2008-04-14 09:46:10 -0400 | [diff] [blame] | 7970 | again: |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 7971 | WARN_ON(num_bytes < root->fs_info->sectorsize); |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7972 | ret = find_free_extent(root, ram_bytes, num_bytes, empty_size, |
| 7973 | hint_byte, ins, flags, delalloc); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7974 | if (!ret && !is_data) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7975 | btrfs_dec_block_group_reservations(fs_info, ins->objectid); |
Filipe Manana | 9cfa3e3 | 2016-04-26 15:39:32 +0100 | [diff] [blame] | 7976 | } else if (ret == -ENOSPC) { |
Miao Xie | a482039 | 2013-09-09 13:19:42 +0800 | [diff] [blame] | 7977 | if (!final_tried && ins->offset) { |
| 7978 | num_bytes = min(num_bytes >> 1, ins->offset); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 7979 | num_bytes = round_down(num_bytes, |
| 7980 | root->fs_info->sectorsize); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7981 | num_bytes = max(num_bytes, min_alloc_size); |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 7982 | ram_bytes = num_bytes; |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7983 | if (num_bytes == min_alloc_size) |
| 7984 | final_tried = true; |
| 7985 | goto again; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7986 | } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) { |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7987 | struct btrfs_space_info *sinfo; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7988 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7989 | sinfo = __find_space_info(fs_info, flags); |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 7990 | btrfs_err(root->fs_info, |
| 7991 | "allocation failed flags %llu, wanted %llu", |
| 7992 | flags, num_bytes); |
Jeff Mahoney | 5380428 | 2012-03-01 14:56:28 +0100 | [diff] [blame] | 7993 | if (sinfo) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 7994 | dump_space_info(fs_info, sinfo, num_bytes, 1); |
Miao Xie | 9e622d6 | 2012-01-26 15:01:12 -0500 | [diff] [blame] | 7995 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 7996 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 7997 | |
| 7998 | return ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 7999 | } |
| 8000 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8001 | static int __btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8002 | u64 start, u64 len, |
| 8003 | int pin, int delalloc) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8004 | { |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8005 | struct btrfs_block_group_cache *cache; |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8006 | int ret = 0; |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8007 | |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8008 | cache = btrfs_lookup_block_group(root->fs_info, start); |
| 8009 | if (!cache) { |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8010 | btrfs_err(root->fs_info, "Unable to find block group for %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8011 | start); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8012 | return -ENOSPC; |
| 8013 | } |
Liu Hui | 1f3c79a | 2009-01-05 15:57:51 -0500 | [diff] [blame] | 8014 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8015 | if (pin) |
| 8016 | pin_down_extent(root, cache, start, len, 1); |
| 8017 | else { |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 8018 | if (btrfs_test_opt(root->fs_info, DISCARD)) |
Filipe Manana | dcc82f4 | 2015-03-23 14:07:40 +0000 | [diff] [blame] | 8019 | ret = btrfs_discard_extent(root, start, len, NULL); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8020 | btrfs_add_free_space(cache, start, len); |
Wang Xiaoguang | 4824f1f | 2016-07-25 15:51:39 +0800 | [diff] [blame] | 8021 | btrfs_free_reserved_bytes(cache, len, delalloc); |
Josef Bacik | 31bada7 | 2016-03-25 13:25:58 -0400 | [diff] [blame] | 8022 | trace_btrfs_reserved_extent_free(root, start, len); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8023 | } |
Dongsheng Yang | 3119321 | 2014-12-12 16:44:35 +0800 | [diff] [blame] | 8024 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 8025 | btrfs_put_block_group(cache); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8026 | return ret; |
| 8027 | } |
| 8028 | |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8029 | int btrfs_free_reserved_extent(struct btrfs_root *root, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8030 | u64 start, u64 len, int delalloc) |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8031 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8032 | return __btrfs_free_reserved_extent(root, start, len, 0, delalloc); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8033 | } |
| 8034 | |
| 8035 | int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root, |
| 8036 | u64 start, u64 len) |
| 8037 | { |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8038 | return __btrfs_free_reserved_extent(root, start, len, 1, 0); |
Chris Mason | e688b725 | 2011-10-31 20:52:39 -0400 | [diff] [blame] | 8039 | } |
| 8040 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8041 | static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 8042 | struct btrfs_root *root, |
| 8043 | u64 parent, u64 root_objectid, |
| 8044 | u64 flags, u64 owner, u64 offset, |
| 8045 | struct btrfs_key *ins, int ref_mod) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8046 | { |
| 8047 | int ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8048 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8049 | struct btrfs_extent_item *extent_item; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8050 | struct btrfs_extent_inline_ref *iref; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8051 | struct btrfs_path *path; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8052 | struct extent_buffer *leaf; |
| 8053 | int type; |
| 8054 | u32 size; |
Chris Mason | f2654de | 2007-06-26 12:20:46 -0400 | [diff] [blame] | 8055 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8056 | if (parent > 0) |
| 8057 | type = BTRFS_SHARED_DATA_REF_KEY; |
| 8058 | else |
| 8059 | type = BTRFS_EXTENT_DATA_REF_KEY; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 8060 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8061 | size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8062 | |
| 8063 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 8064 | if (!path) |
| 8065 | return -ENOMEM; |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8066 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 8067 | path->leave_spinning = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8068 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8069 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8070 | if (ret) { |
| 8071 | btrfs_free_path(path); |
| 8072 | return ret; |
| 8073 | } |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 8074 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8075 | leaf = path->nodes[0]; |
| 8076 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8077 | struct btrfs_extent_item); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8078 | btrfs_set_extent_refs(leaf, extent_item, ref_mod); |
| 8079 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8080 | btrfs_set_extent_flags(leaf, extent_item, |
| 8081 | flags | BTRFS_EXTENT_FLAG_DATA); |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8082 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8083 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
| 8084 | btrfs_set_extent_inline_ref_type(leaf, iref, type); |
| 8085 | if (parent > 0) { |
| 8086 | struct btrfs_shared_data_ref *ref; |
| 8087 | ref = (struct btrfs_shared_data_ref *)(iref + 1); |
| 8088 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8089 | btrfs_set_shared_data_ref_count(leaf, ref, ref_mod); |
| 8090 | } else { |
| 8091 | struct btrfs_extent_data_ref *ref; |
| 8092 | ref = (struct btrfs_extent_data_ref *)(&iref->offset); |
| 8093 | btrfs_set_extent_data_ref_root(leaf, ref, root_objectid); |
| 8094 | btrfs_set_extent_data_ref_objectid(leaf, ref, owner); |
| 8095 | btrfs_set_extent_data_ref_offset(leaf, ref, offset); |
| 8096 | btrfs_set_extent_data_ref_count(leaf, ref, ref_mod); |
| 8097 | } |
Chris Mason | 47e4bb9 | 2008-02-01 14:51:59 -0500 | [diff] [blame] | 8098 | |
| 8099 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 8100 | btrfs_free_path(path); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 8101 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8102 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8103 | ins->offset); |
| 8104 | if (ret) |
| 8105 | return ret; |
| 8106 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 8107 | ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8108 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8109 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8110 | ins->objectid, ins->offset); |
Chris Mason | f594706 | 2008-02-04 10:10:13 -0500 | [diff] [blame] | 8111 | BUG(); |
| 8112 | } |
Jeff Mahoney | 2b2e27e | 2016-06-22 18:54:27 -0400 | [diff] [blame] | 8113 | trace_btrfs_reserved_extent_alloc(fs_info->extent_root, |
| 8114 | ins->objectid, ins->offset); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8115 | return ret; |
| 8116 | } |
| 8117 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8118 | static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans, |
| 8119 | struct btrfs_root *root, |
| 8120 | u64 parent, u64 root_objectid, |
| 8121 | u64 flags, struct btrfs_disk_key *key, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8122 | int level, struct btrfs_key *ins) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8123 | { |
| 8124 | int ret; |
| 8125 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 8126 | struct btrfs_extent_item *extent_item; |
| 8127 | struct btrfs_tree_block_info *block_info; |
| 8128 | struct btrfs_extent_inline_ref *iref; |
| 8129 | struct btrfs_path *path; |
| 8130 | struct extent_buffer *leaf; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8131 | u32 size = sizeof(*extent_item) + sizeof(*iref); |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 8132 | u64 num_bytes = ins->offset; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8133 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 8134 | SKINNY_METADATA); |
| 8135 | |
| 8136 | if (!skinny_metadata) |
| 8137 | size += sizeof(*block_info); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8138 | |
| 8139 | path = btrfs_alloc_path(); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8140 | if (!path) { |
| 8141 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 8142 | root->fs_info->nodesize); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 8143 | return -ENOMEM; |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8144 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8145 | |
| 8146 | path->leave_spinning = 1; |
| 8147 | ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path, |
| 8148 | ins, size); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8149 | if (ret) { |
Chris Mason | dd82525 | 2015-04-01 08:36:05 -0700 | [diff] [blame] | 8150 | btrfs_free_path(path); |
Josef Bacik | 857cc2f | 2013-10-07 15:21:08 -0400 | [diff] [blame] | 8151 | btrfs_free_and_pin_reserved_extent(root, ins->objectid, |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 8152 | root->fs_info->nodesize); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8153 | return ret; |
| 8154 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8155 | |
| 8156 | leaf = path->nodes[0]; |
| 8157 | extent_item = btrfs_item_ptr(leaf, path->slots[0], |
| 8158 | struct btrfs_extent_item); |
| 8159 | btrfs_set_extent_refs(leaf, extent_item, 1); |
| 8160 | btrfs_set_extent_generation(leaf, extent_item, trans->transid); |
| 8161 | btrfs_set_extent_flags(leaf, extent_item, |
| 8162 | flags | BTRFS_EXTENT_FLAG_TREE_BLOCK); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8163 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8164 | if (skinny_metadata) { |
| 8165 | iref = (struct btrfs_extent_inline_ref *)(extent_item + 1); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 8166 | num_bytes = root->fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8167 | } else { |
| 8168 | block_info = (struct btrfs_tree_block_info *)(extent_item + 1); |
| 8169 | btrfs_set_tree_block_key(leaf, block_info, key); |
| 8170 | btrfs_set_tree_block_level(leaf, block_info, level); |
| 8171 | iref = (struct btrfs_extent_inline_ref *)(block_info + 1); |
| 8172 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8173 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8174 | if (parent > 0) { |
| 8175 | BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 8176 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8177 | BTRFS_SHARED_BLOCK_REF_KEY); |
| 8178 | btrfs_set_extent_inline_ref_offset(leaf, iref, parent); |
| 8179 | } else { |
| 8180 | btrfs_set_extent_inline_ref_type(leaf, iref, |
| 8181 | BTRFS_TREE_BLOCK_REF_KEY); |
| 8182 | btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid); |
| 8183 | } |
| 8184 | |
| 8185 | btrfs_mark_buffer_dirty(leaf); |
| 8186 | btrfs_free_path(path); |
| 8187 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 8188 | ret = remove_from_free_space_tree(trans, fs_info, ins->objectid, |
| 8189 | num_bytes); |
| 8190 | if (ret) |
| 8191 | return ret; |
| 8192 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 8193 | ret = update_block_group(trans, fs_info, ins->objectid, |
| 8194 | fs_info->nodesize, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8195 | if (ret) { /* -ENOENT, logic error */ |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8196 | btrfs_err(fs_info, "update block group failed for %llu %llu", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 8197 | ins->objectid, ins->offset); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8198 | BUG(); |
| 8199 | } |
Josef Bacik | 0be5dc6 | 2013-10-07 15:18:52 -0400 | [diff] [blame] | 8200 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 8201 | trace_btrfs_reserved_extent_alloc(root, ins->objectid, |
| 8202 | root->fs_info->nodesize); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8203 | return ret; |
| 8204 | } |
| 8205 | |
| 8206 | int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans, |
| 8207 | struct btrfs_root *root, |
| 8208 | u64 root_objectid, u64 owner, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 8209 | u64 offset, u64 ram_bytes, |
| 8210 | struct btrfs_key *ins) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8211 | { |
| 8212 | int ret; |
Chris Mason | 1c2308f8 | 2008-09-23 13:14:13 -0400 | [diff] [blame] | 8213 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8214 | BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID); |
Chris Mason | 56bec29 | 2009-03-13 10:10:06 -0400 | [diff] [blame] | 8215 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8216 | ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid, |
| 8217 | ins->offset, 0, |
| 8218 | root_objectid, owner, offset, |
Qu Wenruo | 5846a3c | 2015-10-26 14:11:18 +0800 | [diff] [blame] | 8219 | ram_bytes, BTRFS_ADD_DELAYED_EXTENT, |
| 8220 | NULL); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 8221 | return ret; |
| 8222 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8223 | |
| 8224 | /* |
| 8225 | * this is used by the tree logging recovery code. It records that |
| 8226 | * an extent has been allocated and makes sure to clear the free |
| 8227 | * space cache bits as well |
| 8228 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8229 | int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans, |
| 8230 | struct btrfs_root *root, |
| 8231 | u64 root_objectid, u64 owner, u64 offset, |
| 8232 | struct btrfs_key *ins) |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8233 | { |
| 8234 | int ret; |
| 8235 | struct btrfs_block_group_cache *block_group; |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8236 | struct btrfs_space_info *space_info; |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8237 | |
| 8238 | /* |
| 8239 | * 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] | 8240 | * need to do the exclude dance if this fs isn't mixed. |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8241 | */ |
| 8242 | if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) { |
| 8243 | ret = __exclude_logged_extent(root, ins->objectid, ins->offset); |
| 8244 | if (ret) |
| 8245 | return ret; |
| 8246 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8247 | |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8248 | block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid); |
Josef Bacik | 8c2a1a3 | 2013-06-06 13:19:32 -0400 | [diff] [blame] | 8249 | if (!block_group) |
| 8250 | return -EINVAL; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 8251 | |
Wang Xiaoguang | ed7a694 | 2016-08-26 11:33:14 +0800 | [diff] [blame] | 8252 | space_info = block_group->space_info; |
| 8253 | spin_lock(&space_info->lock); |
| 8254 | spin_lock(&block_group->lock); |
| 8255 | space_info->bytes_reserved += ins->offset; |
| 8256 | block_group->reserved += ins->offset; |
| 8257 | spin_unlock(&block_group->lock); |
| 8258 | spin_unlock(&space_info->lock); |
| 8259 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8260 | ret = alloc_reserved_file_extent(trans, root, 0, root_objectid, |
| 8261 | 0, owner, offset, ins, 1); |
Josef Bacik | b50c6e2 | 2013-04-25 15:55:30 -0400 | [diff] [blame] | 8262 | btrfs_put_block_group(block_group); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 8263 | return ret; |
| 8264 | } |
| 8265 | |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 8266 | static struct extent_buffer * |
| 8267 | 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] | 8268 | u64 bytenr, int level) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8269 | { |
| 8270 | struct extent_buffer *buf; |
| 8271 | |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 8272 | buf = btrfs_find_create_tree_block(root, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8273 | if (IS_ERR(buf)) |
| 8274 | return buf; |
| 8275 | |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8276 | btrfs_set_header_generation(buf, trans->transid); |
Chris Mason | 85d4e46 | 2011-07-26 16:11:19 -0400 | [diff] [blame] | 8277 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8278 | btrfs_tree_lock(buf); |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 8279 | clean_tree_block(trans, root->fs_info, buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 8280 | clear_bit(EXTENT_BUFFER_STALE, &buf->bflags); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8281 | |
| 8282 | btrfs_set_lock_blocking(buf); |
David Sterba | 4db8c52 | 2015-12-03 13:06:46 +0100 | [diff] [blame] | 8283 | set_extent_buffer_uptodate(buf); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8284 | |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8285 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8286 | buf->log_index = root->log_transid % 2; |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8287 | /* |
| 8288 | * we allow two log transactions at a time, use different |
| 8289 | * EXENT bit to differentiate dirty pages. |
| 8290 | */ |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8291 | if (buf->log_index == 0) |
Yan, Zheng | 8cef4e1 | 2009-11-12 09:33:26 +0000 | [diff] [blame] | 8292 | set_extent_dirty(&root->dirty_log_pages, buf->start, |
| 8293 | buf->start + buf->len - 1, GFP_NOFS); |
| 8294 | else |
| 8295 | set_extent_new(&root->dirty_log_pages, buf->start, |
David Sterba | 3744dbe | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 8296 | buf->start + buf->len - 1); |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8297 | } else { |
Filipe Manana | 656f30d | 2014-09-26 12:25:56 +0100 | [diff] [blame] | 8298 | buf->log_index = -1; |
Chris Mason | d0c803c | 2008-09-11 16:17:57 -0400 | [diff] [blame] | 8299 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, |
| 8300 | buf->start + buf->len - 1, GFP_NOFS); |
| 8301 | } |
Jeff Mahoney | 64c1292 | 2016-06-08 00:36:38 -0400 | [diff] [blame] | 8302 | trans->dirty = true; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 8303 | /* this returns a buffer locked for blocking */ |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 8304 | return buf; |
| 8305 | } |
| 8306 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8307 | static struct btrfs_block_rsv * |
| 8308 | use_block_rsv(struct btrfs_trans_handle *trans, |
| 8309 | struct btrfs_root *root, u32 blocksize) |
| 8310 | { |
| 8311 | struct btrfs_block_rsv *block_rsv; |
Josef Bacik | 68a8227 | 2011-01-24 21:43:20 +0000 | [diff] [blame] | 8312 | struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8313 | int ret; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8314 | bool global_updated = false; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8315 | |
| 8316 | block_rsv = get_block_rsv(trans, root); |
| 8317 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8318 | if (unlikely(block_rsv->size == 0)) |
| 8319 | goto try_reserve; |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8320 | again: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8321 | ret = block_rsv_use_bytes(block_rsv, blocksize); |
| 8322 | if (!ret) |
| 8323 | return block_rsv; |
| 8324 | |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8325 | if (block_rsv->failfast) |
| 8326 | return ERR_PTR(ret); |
| 8327 | |
Miao Xie | d88033d | 2013-05-13 13:55:12 +0000 | [diff] [blame] | 8328 | if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) { |
| 8329 | global_updated = true; |
| 8330 | update_global_block_rsv(root->fs_info); |
| 8331 | goto again; |
| 8332 | } |
| 8333 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 8334 | if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8335 | static DEFINE_RATELIMIT_STATE(_rs, |
| 8336 | DEFAULT_RATELIMIT_INTERVAL * 10, |
| 8337 | /*DEFAULT_RATELIMIT_BURST*/ 1); |
| 8338 | if (__ratelimit(&_rs)) |
| 8339 | WARN(1, KERN_DEBUG |
Frank Holton | efe120a | 2013-12-20 11:37:06 -0500 | [diff] [blame] | 8340 | "BTRFS: block rsv returned %d\n", ret); |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8341 | } |
| 8342 | try_reserve: |
| 8343 | ret = reserve_metadata_bytes(root, block_rsv, blocksize, |
| 8344 | BTRFS_RESERVE_NO_FLUSH); |
| 8345 | if (!ret) |
| 8346 | return block_rsv; |
| 8347 | /* |
| 8348 | * If we couldn't reserve metadata bytes try and use some from |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8349 | * the global reserve if its space type is the same as the global |
| 8350 | * reservation. |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8351 | */ |
Miao Xie | 5881cfc | 2013-05-13 13:55:11 +0000 | [diff] [blame] | 8352 | if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL && |
| 8353 | block_rsv->space_info == global_rsv->space_info) { |
Miao Xie | b586b32 | 2013-05-13 13:55:10 +0000 | [diff] [blame] | 8354 | ret = block_rsv_use_bytes(global_rsv, blocksize); |
| 8355 | if (!ret) |
| 8356 | return global_rsv; |
| 8357 | } |
| 8358 | return ERR_PTR(ret); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8359 | } |
| 8360 | |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8361 | static void unuse_block_rsv(struct btrfs_fs_info *fs_info, |
| 8362 | struct btrfs_block_rsv *block_rsv, u32 blocksize) |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8363 | { |
| 8364 | block_rsv_add_bytes(block_rsv, blocksize, 0); |
Josef Bacik | 8c2a3ca | 2012-01-10 10:31:31 -0500 | [diff] [blame] | 8365 | block_rsv_release_bytes(fs_info, block_rsv, NULL, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8366 | } |
| 8367 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8368 | /* |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8369 | * 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] | 8370 | * returns the tree buffer or an ERR_PTR on error. |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8371 | */ |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 8372 | struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans, |
| 8373 | struct btrfs_root *root, |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8374 | u64 parent, u64 root_objectid, |
| 8375 | struct btrfs_disk_key *key, int level, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8376 | u64 hint, u64 empty_size) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8377 | { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 8378 | struct btrfs_key ins; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8379 | struct btrfs_block_rsv *block_rsv; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 8380 | struct extent_buffer *buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8381 | struct btrfs_delayed_extent_op *extent_op; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8382 | u64 flags = 0; |
| 8383 | int ret; |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 8384 | u32 blocksize = root->fs_info->nodesize; |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8385 | bool skinny_metadata = btrfs_fs_incompat(root->fs_info, |
| 8386 | SKINNY_METADATA); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8387 | |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8388 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 8389 | if (btrfs_is_testing(root->fs_info)) { |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8390 | buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr, |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8391 | level); |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 8392 | if (!IS_ERR(buf)) |
| 8393 | root->alloc_bytenr += blocksize; |
| 8394 | return buf; |
| 8395 | } |
David Sterba | 05653ef | 2016-07-15 15:23:37 +0200 | [diff] [blame] | 8396 | #endif |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 8397 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8398 | block_rsv = use_block_rsv(trans, root, blocksize); |
| 8399 | if (IS_ERR(block_rsv)) |
| 8400 | return ERR_CAST(block_rsv); |
| 8401 | |
Wang Xiaoguang | 1851309 | 2016-07-25 15:51:40 +0800 | [diff] [blame] | 8402 | ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize, |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 8403 | empty_size, hint, &ins, 0, 0); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8404 | if (ret) |
| 8405 | goto out_unuse; |
Chris Mason | 55c6907 | 2008-01-09 15:55:33 -0500 | [diff] [blame] | 8406 | |
David Sterba | fe86457 | 2014-06-15 02:28:42 +0200 | [diff] [blame] | 8407 | buf = btrfs_init_new_buffer(trans, root, ins.objectid, level); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8408 | if (IS_ERR(buf)) { |
| 8409 | ret = PTR_ERR(buf); |
| 8410 | goto out_free_reserved; |
| 8411 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8412 | |
| 8413 | if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) { |
| 8414 | if (parent == 0) |
| 8415 | parent = ins.objectid; |
| 8416 | flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8417 | } else |
| 8418 | BUG_ON(parent > 0); |
| 8419 | |
| 8420 | if (root_objectid != BTRFS_TREE_LOG_OBJECTID) { |
Miao Xie | 78a6184 | 2012-11-21 02:21:28 +0000 | [diff] [blame] | 8421 | extent_op = btrfs_alloc_delayed_extent_op(); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8422 | if (!extent_op) { |
| 8423 | ret = -ENOMEM; |
| 8424 | goto out_free_buf; |
| 8425 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8426 | if (key) |
| 8427 | memcpy(&extent_op->key, key, sizeof(extent_op->key)); |
| 8428 | else |
| 8429 | memset(&extent_op->key, 0, sizeof(extent_op->key)); |
| 8430 | extent_op->flags_to_set = flags; |
David Sterba | 35b3ad5 | 2015-11-30 16:51:29 +0100 | [diff] [blame] | 8431 | extent_op->update_key = skinny_metadata ? false : true; |
| 8432 | extent_op->update_flags = true; |
| 8433 | extent_op->is_data = false; |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8434 | extent_op->level = level; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8435 | |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8436 | ret = btrfs_add_delayed_tree_ref(root->fs_info, trans, |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8437 | ins.objectid, ins.offset, |
| 8438 | parent, root_objectid, level, |
| 8439 | BTRFS_ADD_DELAYED_EXTENT, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8440 | extent_op); |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8441 | if (ret) |
| 8442 | goto out_free_delayed; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8443 | } |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8444 | return buf; |
Omar Sandoval | 67b7859 | 2015-02-24 02:47:04 -0800 | [diff] [blame] | 8445 | |
| 8446 | out_free_delayed: |
| 8447 | btrfs_free_delayed_extent_op(extent_op); |
| 8448 | out_free_buf: |
| 8449 | free_extent_buffer(buf); |
| 8450 | out_free_reserved: |
| 8451 | btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0); |
| 8452 | out_unuse: |
| 8453 | unuse_block_rsv(root->fs_info, block_rsv, blocksize); |
| 8454 | return ERR_PTR(ret); |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 8455 | } |
Chris Mason | a28ec19 | 2007-03-06 20:08:01 -0500 | [diff] [blame] | 8456 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8457 | struct walk_control { |
| 8458 | u64 refs[BTRFS_MAX_LEVEL]; |
| 8459 | u64 flags[BTRFS_MAX_LEVEL]; |
| 8460 | struct btrfs_key update_progress; |
| 8461 | int stage; |
| 8462 | int level; |
| 8463 | int shared_level; |
| 8464 | int update_ref; |
| 8465 | int keep_locks; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8466 | int reada_slot; |
| 8467 | int reada_count; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8468 | int for_reloc; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8469 | }; |
| 8470 | |
| 8471 | #define DROP_REFERENCE 1 |
| 8472 | #define UPDATE_BACKREF 2 |
| 8473 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8474 | static noinline void reada_walk_down(struct btrfs_trans_handle *trans, |
| 8475 | struct btrfs_root *root, |
| 8476 | struct walk_control *wc, |
| 8477 | struct btrfs_path *path) |
| 8478 | { |
| 8479 | u64 bytenr; |
| 8480 | u64 generation; |
| 8481 | u64 refs; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8482 | u64 flags; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8483 | u32 nritems; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8484 | struct btrfs_key key; |
| 8485 | struct extent_buffer *eb; |
| 8486 | int ret; |
| 8487 | int slot; |
| 8488 | int nread = 0; |
| 8489 | |
| 8490 | if (path->slots[wc->level] < wc->reada_slot) { |
| 8491 | wc->reada_count = wc->reada_count * 2 / 3; |
| 8492 | wc->reada_count = max(wc->reada_count, 2); |
| 8493 | } else { |
| 8494 | wc->reada_count = wc->reada_count * 3 / 2; |
| 8495 | wc->reada_count = min_t(int, wc->reada_count, |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 8496 | BTRFS_NODEPTRS_PER_BLOCK(root->fs_info)); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8497 | } |
| 8498 | |
| 8499 | eb = path->nodes[wc->level]; |
| 8500 | nritems = btrfs_header_nritems(eb); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8501 | |
| 8502 | for (slot = path->slots[wc->level]; slot < nritems; slot++) { |
| 8503 | if (nread >= wc->reada_count) |
| 8504 | break; |
| 8505 | |
| 8506 | cond_resched(); |
| 8507 | bytenr = btrfs_node_blockptr(eb, slot); |
| 8508 | generation = btrfs_node_ptr_generation(eb, slot); |
| 8509 | |
| 8510 | if (slot == path->slots[wc->level]) |
| 8511 | goto reada; |
| 8512 | |
| 8513 | if (wc->stage == UPDATE_BACKREF && |
| 8514 | generation <= root->root_key.offset) |
| 8515 | continue; |
| 8516 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8517 | /* We don't lock the tree block, it's OK to be racy here */ |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8518 | ret = btrfs_lookup_extent_info(trans, root, bytenr, |
| 8519 | wc->level - 1, 1, &refs, |
| 8520 | &flags); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8521 | /* We don't care about errors in readahead. */ |
| 8522 | if (ret < 0) |
| 8523 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8524 | BUG_ON(refs == 0); |
| 8525 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8526 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8527 | if (refs == 1) |
| 8528 | goto reada; |
| 8529 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8530 | if (wc->level == 1 && |
| 8531 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8532 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8533 | if (!wc->update_ref || |
| 8534 | generation <= root->root_key.offset) |
| 8535 | continue; |
| 8536 | btrfs_node_key_to_cpu(eb, &key, slot); |
| 8537 | ret = btrfs_comp_cpu_keys(&key, |
| 8538 | &wc->update_progress); |
| 8539 | if (ret < 0) |
| 8540 | continue; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8541 | } else { |
| 8542 | if (wc->level == 1 && |
| 8543 | (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8544 | continue; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8545 | } |
| 8546 | reada: |
David Sterba | d3e46fe | 2014-06-15 02:04:19 +0200 | [diff] [blame] | 8547 | readahead_tree_block(root, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8548 | nread++; |
| 8549 | } |
| 8550 | wc->reada_slot = slot; |
| 8551 | } |
| 8552 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8553 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8554 | * helper to process tree block while walking down the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8555 | * |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8556 | * when wc->stage == UPDATE_BACKREF, this function updates |
| 8557 | * back refs for pointers in the block. |
| 8558 | * |
| 8559 | * NOTE: return value 1 means we should stop walking down. |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8560 | */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8561 | static noinline int walk_down_proc(struct btrfs_trans_handle *trans, |
| 8562 | struct btrfs_root *root, |
| 8563 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8564 | struct walk_control *wc, int lookup_info) |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8565 | { |
| 8566 | int level = wc->level; |
| 8567 | struct extent_buffer *eb = path->nodes[level]; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8568 | u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 8569 | int ret; |
| 8570 | |
| 8571 | if (wc->stage == UPDATE_BACKREF && |
| 8572 | btrfs_header_owner(eb) != root->root_key.objectid) |
| 8573 | return 1; |
| 8574 | |
| 8575 | /* |
| 8576 | * when reference count of tree block is 1, it won't increase |
| 8577 | * again. once full backref flag is set, we never clear it. |
| 8578 | */ |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8579 | if (lookup_info && |
| 8580 | ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) || |
| 8581 | (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8582 | BUG_ON(!path->locks[level]); |
| 8583 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8584 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8585 | &wc->refs[level], |
| 8586 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8587 | BUG_ON(ret == -ENOMEM); |
| 8588 | if (ret) |
| 8589 | return ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8590 | BUG_ON(wc->refs[level] == 0); |
| 8591 | } |
| 8592 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8593 | if (wc->stage == DROP_REFERENCE) { |
| 8594 | if (wc->refs[level] > 1) |
| 8595 | return 1; |
| 8596 | |
| 8597 | if (path->locks[level] && !wc->keep_locks) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8598 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8599 | path->locks[level] = 0; |
| 8600 | } |
| 8601 | return 0; |
| 8602 | } |
| 8603 | |
| 8604 | /* wc->stage == UPDATE_BACKREF */ |
| 8605 | if (!(wc->flags[level] & flag)) { |
| 8606 | BUG_ON(!path->locks[level]); |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8607 | ret = btrfs_inc_ref(trans, root, eb, 1); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8608 | BUG_ON(ret); /* -ENOMEM */ |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8609 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8610 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8611 | ret = btrfs_set_disk_extent_flags(trans, root, eb->start, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 8612 | eb->len, flag, |
| 8613 | btrfs_header_level(eb), 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8614 | BUG_ON(ret); /* -ENOMEM */ |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8615 | wc->flags[level] |= flag; |
| 8616 | } |
| 8617 | |
| 8618 | /* |
| 8619 | * the block is shared by multiple trees, so it's not good to |
| 8620 | * keep the tree lock |
| 8621 | */ |
| 8622 | if (path->locks[level] && level > 0) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8623 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8624 | path->locks[level] = 0; |
| 8625 | } |
| 8626 | return 0; |
| 8627 | } |
| 8628 | |
| 8629 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8630 | * helper to process tree block pointer. |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8631 | * |
| 8632 | * when wc->stage == DROP_REFERENCE, this function checks |
| 8633 | * reference count of the block pointed to. if the block |
| 8634 | * is shared and we need update back refs for the subtree |
| 8635 | * rooted at the block, this function changes wc->stage to |
| 8636 | * UPDATE_BACKREF. if the block is shared and there is no |
| 8637 | * need to update back, this function drops the reference |
| 8638 | * to the block. |
| 8639 | * |
| 8640 | * NOTE: return value 1 means we should stop walking down. |
| 8641 | */ |
| 8642 | static noinline int do_walk_down(struct btrfs_trans_handle *trans, |
| 8643 | struct btrfs_root *root, |
| 8644 | struct btrfs_path *path, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8645 | struct walk_control *wc, int *lookup_info) |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8646 | { |
| 8647 | u64 bytenr; |
| 8648 | u64 generation; |
| 8649 | u64 parent; |
| 8650 | u32 blocksize; |
| 8651 | struct btrfs_key key; |
| 8652 | struct extent_buffer *next; |
| 8653 | int level = wc->level; |
| 8654 | int reada = 0; |
| 8655 | int ret = 0; |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8656 | bool need_account = false; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8657 | |
| 8658 | generation = btrfs_node_ptr_generation(path->nodes[level], |
| 8659 | path->slots[level]); |
| 8660 | /* |
| 8661 | * if the lower level block was created before the snapshot |
| 8662 | * was created, we know there is no need to update back refs |
| 8663 | * for the subtree |
| 8664 | */ |
| 8665 | if (wc->stage == UPDATE_BACKREF && |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8666 | generation <= root->root_key.offset) { |
| 8667 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8668 | return 1; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8669 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8670 | |
| 8671 | bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]); |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 8672 | blocksize = root->fs_info->nodesize; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8673 | |
David Sterba | 62d1f9f | 2016-11-08 23:21:05 +0100 | [diff] [blame] | 8674 | next = find_extent_buffer(root->fs_info, bytenr); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8675 | if (!next) { |
David Sterba | a83fffb | 2014-06-15 02:39:54 +0200 | [diff] [blame] | 8676 | next = btrfs_find_create_tree_block(root, bytenr); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 8677 | if (IS_ERR(next)) |
| 8678 | return PTR_ERR(next); |
| 8679 | |
Josef Bacik | b2aaaa3 | 2013-07-05 17:05:38 -0400 | [diff] [blame] | 8680 | btrfs_set_buffer_lockdep_class(root->root_key.objectid, next, |
| 8681 | level - 1); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8682 | reada = 1; |
| 8683 | } |
| 8684 | btrfs_tree_lock(next); |
| 8685 | btrfs_set_lock_blocking(next); |
| 8686 | |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8687 | ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8688 | &wc->refs[level - 1], |
| 8689 | &wc->flags[level - 1]); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8690 | if (ret < 0) |
| 8691 | goto out_unlock; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8692 | |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8693 | if (unlikely(wc->refs[level - 1] == 0)) { |
| 8694 | btrfs_err(root->fs_info, "Missing references."); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8695 | ret = -EIO; |
| 8696 | goto out_unlock; |
Simon Kirby | c2cf52e | 2013-03-19 22:41:23 +0000 | [diff] [blame] | 8697 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8698 | *lookup_info = 0; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8699 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8700 | if (wc->stage == DROP_REFERENCE) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8701 | if (wc->refs[level - 1] > 1) { |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8702 | need_account = true; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8703 | if (level == 1 && |
| 8704 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8705 | goto skip; |
| 8706 | |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8707 | if (!wc->update_ref || |
| 8708 | generation <= root->root_key.offset) |
| 8709 | goto skip; |
| 8710 | |
| 8711 | btrfs_node_key_to_cpu(path->nodes[level], &key, |
| 8712 | path->slots[level]); |
| 8713 | ret = btrfs_comp_cpu_keys(&key, &wc->update_progress); |
| 8714 | if (ret < 0) |
| 8715 | goto skip; |
| 8716 | |
| 8717 | wc->stage = UPDATE_BACKREF; |
| 8718 | wc->shared_level = level - 1; |
| 8719 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8720 | } else { |
| 8721 | if (level == 1 && |
| 8722 | (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF)) |
| 8723 | goto skip; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8724 | } |
| 8725 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 8726 | if (!btrfs_buffer_uptodate(next, generation, 0)) { |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8727 | btrfs_tree_unlock(next); |
| 8728 | free_extent_buffer(next); |
| 8729 | next = NULL; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8730 | *lookup_info = 1; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8731 | } |
| 8732 | |
| 8733 | if (!next) { |
| 8734 | if (reada && level == 1) |
| 8735 | reada_walk_down(trans, root, wc, path); |
David Sterba | ce86cd5 | 2014-06-15 01:07:32 +0200 | [diff] [blame] | 8736 | next = read_tree_block(root, bytenr, generation); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 8737 | if (IS_ERR(next)) { |
| 8738 | return PTR_ERR(next); |
| 8739 | } else if (!extent_buffer_uptodate(next)) { |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8740 | free_extent_buffer(next); |
Tsutomu Itoh | 97d9a8a | 2011-03-24 06:33:21 +0000 | [diff] [blame] | 8741 | return -EIO; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 8742 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8743 | btrfs_tree_lock(next); |
| 8744 | btrfs_set_lock_blocking(next); |
| 8745 | } |
| 8746 | |
| 8747 | level--; |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8748 | ASSERT(level == btrfs_header_level(next)); |
| 8749 | if (level != btrfs_header_level(next)) { |
| 8750 | btrfs_err(root->fs_info, "mismatched level"); |
| 8751 | ret = -EIO; |
| 8752 | goto out_unlock; |
| 8753 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8754 | path->nodes[level] = next; |
| 8755 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8756 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8757 | wc->level = level; |
| 8758 | if (wc->level == 1) |
| 8759 | wc->reada_slot = 0; |
| 8760 | return 0; |
| 8761 | skip: |
| 8762 | wc->refs[level - 1] = 0; |
| 8763 | wc->flags[level - 1] = 0; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8764 | if (wc->stage == DROP_REFERENCE) { |
| 8765 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 8766 | parent = path->nodes[level]->start; |
| 8767 | } else { |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8768 | ASSERT(root->root_key.objectid == |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8769 | btrfs_header_owner(path->nodes[level])); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8770 | if (root->root_key.objectid != |
| 8771 | btrfs_header_owner(path->nodes[level])) { |
| 8772 | btrfs_err(root->fs_info, |
| 8773 | "mismatched block owner"); |
| 8774 | ret = -EIO; |
| 8775 | goto out_unlock; |
| 8776 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8777 | parent = 0; |
| 8778 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8779 | |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8780 | if (need_account) { |
Qu Wenruo | 33d1f05 | 2016-10-18 09:31:28 +0800 | [diff] [blame] | 8781 | ret = btrfs_qgroup_trace_subtree(trans, root, next, |
| 8782 | generation, level - 1); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8783 | if (ret) { |
David Sterba | 9464732 | 2015-10-08 11:01:36 +0200 | [diff] [blame] | 8784 | btrfs_err_rl(root->fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8785 | "Error %d accounting shared subtree. Quota is out of sync, rescan required.", |
| 8786 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8787 | } |
| 8788 | } |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8789 | ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, |
Filipe Manana | b06c4bf | 2015-10-23 07:52:54 +0100 | [diff] [blame] | 8790 | root->root_key.objectid, level - 1, 0); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8791 | if (ret) |
| 8792 | goto out_unlock; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8793 | } |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8794 | |
| 8795 | *lookup_info = 1; |
| 8796 | ret = 1; |
| 8797 | |
| 8798 | out_unlock: |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8799 | btrfs_tree_unlock(next); |
| 8800 | free_extent_buffer(next); |
Josef Bacik | 4867268 | 2016-09-23 13:23:28 +0200 | [diff] [blame] | 8801 | |
| 8802 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8803 | } |
| 8804 | |
| 8805 | /* |
Liu Bo | 2c016dc | 2012-12-26 15:32:17 +0800 | [diff] [blame] | 8806 | * helper to process tree block while walking up the tree. |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8807 | * |
| 8808 | * when wc->stage == DROP_REFERENCE, this function drops |
| 8809 | * reference count on the block. |
| 8810 | * |
| 8811 | * when wc->stage == UPDATE_BACKREF, this function changes |
| 8812 | * wc->stage back to DROP_REFERENCE if we changed wc->stage |
| 8813 | * to UPDATE_BACKREF previously while processing the block. |
| 8814 | * |
| 8815 | * NOTE: return value 1 means we should stop walking up. |
| 8816 | */ |
| 8817 | static noinline int walk_up_proc(struct btrfs_trans_handle *trans, |
| 8818 | struct btrfs_root *root, |
| 8819 | struct btrfs_path *path, |
| 8820 | struct walk_control *wc) |
| 8821 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8822 | int ret; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8823 | int level = wc->level; |
| 8824 | struct extent_buffer *eb = path->nodes[level]; |
| 8825 | u64 parent = 0; |
| 8826 | |
| 8827 | if (wc->stage == UPDATE_BACKREF) { |
| 8828 | BUG_ON(wc->shared_level < level); |
| 8829 | if (level < wc->shared_level) |
| 8830 | goto out; |
| 8831 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8832 | ret = find_next_key(path, level + 1, &wc->update_progress); |
| 8833 | if (ret > 0) |
| 8834 | wc->update_ref = 0; |
| 8835 | |
| 8836 | wc->stage = DROP_REFERENCE; |
| 8837 | wc->shared_level = -1; |
| 8838 | path->slots[level] = 0; |
| 8839 | |
| 8840 | /* |
| 8841 | * check reference count again if the block isn't locked. |
| 8842 | * we should start walking down the tree again if reference |
| 8843 | * count is one. |
| 8844 | */ |
| 8845 | if (!path->locks[level]) { |
| 8846 | BUG_ON(level == 0); |
| 8847 | btrfs_tree_lock(eb); |
| 8848 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8849 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8850 | |
| 8851 | ret = btrfs_lookup_extent_info(trans, root, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 8852 | eb->start, level, 1, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8853 | &wc->refs[level], |
| 8854 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8855 | if (ret < 0) { |
| 8856 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8857 | path->locks[level] = 0; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8858 | return ret; |
| 8859 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8860 | BUG_ON(wc->refs[level] == 0); |
| 8861 | if (wc->refs[level] == 1) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8862 | btrfs_tree_unlock_rw(eb, path->locks[level]); |
Liu Bo | 3268a24 | 2012-12-28 09:33:19 +0000 | [diff] [blame] | 8863 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8864 | return 1; |
| 8865 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8866 | } |
| 8867 | } |
| 8868 | |
| 8869 | /* wc->stage == DROP_REFERENCE */ |
| 8870 | BUG_ON(wc->refs[level] > 1 && !path->locks[level]); |
| 8871 | |
| 8872 | if (wc->refs[level] == 1) { |
| 8873 | if (level == 0) { |
| 8874 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8875 | ret = btrfs_dec_ref(trans, root, eb, 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8876 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 8877 | ret = btrfs_dec_ref(trans, root, eb, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 8878 | BUG_ON(ret); /* -ENOMEM */ |
Qu Wenruo | 33d1f05 | 2016-10-18 09:31:28 +0800 | [diff] [blame] | 8879 | ret = btrfs_qgroup_trace_leaf_items(trans, root, eb); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8880 | if (ret) { |
David Sterba | 9464732 | 2015-10-08 11:01:36 +0200 | [diff] [blame] | 8881 | btrfs_err_rl(root->fs_info, |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 8882 | "error %d accounting leaf items. Quota is out of sync, rescan required.", |
| 8883 | ret); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 8884 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8885 | } |
| 8886 | /* make block locked assertion in clean_tree_block happy */ |
| 8887 | if (!path->locks[level] && |
| 8888 | btrfs_header_generation(eb) == trans->transid) { |
| 8889 | btrfs_tree_lock(eb); |
| 8890 | btrfs_set_lock_blocking(eb); |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8891 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8892 | } |
Daniel Dressler | 01d5847 | 2014-11-21 17:15:07 +0900 | [diff] [blame] | 8893 | clean_tree_block(trans, root->fs_info, eb); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8894 | } |
| 8895 | |
| 8896 | if (eb == root->node) { |
| 8897 | if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8898 | parent = eb->start; |
| 8899 | else |
| 8900 | BUG_ON(root->root_key.objectid != |
| 8901 | btrfs_header_owner(eb)); |
| 8902 | } else { |
| 8903 | if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF) |
| 8904 | parent = path->nodes[level + 1]->start; |
| 8905 | else |
| 8906 | BUG_ON(root->root_key.objectid != |
| 8907 | btrfs_header_owner(path->nodes[level + 1])); |
| 8908 | } |
| 8909 | |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 8910 | btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8911 | out: |
| 8912 | wc->refs[level] = 0; |
| 8913 | wc->flags[level] = 0; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 8914 | return 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8915 | } |
| 8916 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 8917 | static noinline int walk_down_tree(struct btrfs_trans_handle *trans, |
| 8918 | struct btrfs_root *root, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8919 | struct btrfs_path *path, |
| 8920 | struct walk_control *wc) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8921 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8922 | int level = wc->level; |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8923 | int lookup_info = 1; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8924 | int ret; |
| 8925 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8926 | while (level >= 0) { |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8927 | ret = walk_down_proc(trans, root, path, wc, lookup_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8928 | if (ret > 0) |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8929 | break; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8930 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8931 | if (level == 0) |
| 8932 | break; |
| 8933 | |
Yan, Zheng | 7a7965f | 2010-02-01 02:41:17 +0000 | [diff] [blame] | 8934 | if (path->slots[level] >= |
| 8935 | btrfs_header_nritems(path->nodes[level])) |
| 8936 | break; |
| 8937 | |
Yan, Zheng | 94fcca9 | 2009-10-09 09:25:16 -0400 | [diff] [blame] | 8938 | ret = do_walk_down(trans, root, path, wc, &lookup_info); |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8939 | if (ret > 0) { |
| 8940 | path->slots[level]++; |
| 8941 | continue; |
Miao Xie | 90d2c51d | 2010-03-25 12:37:12 +0000 | [diff] [blame] | 8942 | } else if (ret < 0) |
| 8943 | return ret; |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 8944 | level = wc->level; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8945 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8946 | return 0; |
| 8947 | } |
| 8948 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 8949 | static noinline int walk_up_tree(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 8950 | struct btrfs_root *root, |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8951 | struct btrfs_path *path, |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8952 | struct walk_control *wc, int max_level) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8953 | { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8954 | int level = wc->level; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8955 | int ret; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 8956 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8957 | path->slots[level] = btrfs_header_nritems(path->nodes[level]); |
| 8958 | while (level < max_level && path->nodes[level]) { |
| 8959 | wc->level = level; |
| 8960 | if (path->slots[level] + 1 < |
| 8961 | btrfs_header_nritems(path->nodes[level])) { |
| 8962 | path->slots[level]++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8963 | return 0; |
| 8964 | } else { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8965 | ret = walk_up_proc(trans, root, path, wc); |
| 8966 | if (ret > 0) |
| 8967 | return 0; |
Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 8968 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8969 | if (path->locks[level]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 8970 | btrfs_tree_unlock_rw(path->nodes[level], |
| 8971 | path->locks[level]); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8972 | path->locks[level] = 0; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 8973 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8974 | free_extent_buffer(path->nodes[level]); |
| 8975 | path->nodes[level] = NULL; |
| 8976 | level++; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8977 | } |
| 8978 | } |
| 8979 | return 1; |
| 8980 | } |
| 8981 | |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8982 | /* |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 8983 | * drop a subvolume tree. |
| 8984 | * |
| 8985 | * this function traverses the tree freeing any blocks that only |
| 8986 | * referenced by the tree. |
| 8987 | * |
| 8988 | * when a shared tree block is found. this function decreases its |
| 8989 | * reference count by one. if update_ref is true, this function |
| 8990 | * also make sure backrefs for the shared block and all lower level |
| 8991 | * blocks are properly updated. |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 8992 | * |
| 8993 | * If called with for_reloc == 0, may exit early with -EAGAIN |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 8994 | */ |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 8995 | int btrfs_drop_snapshot(struct btrfs_root *root, |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 8996 | struct btrfs_block_rsv *block_rsv, int update_ref, |
| 8997 | int for_reloc) |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 8998 | { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 8999 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9000 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9001 | struct btrfs_trans_handle *trans; |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9002 | struct btrfs_root *tree_root = fs_info->tree_root; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9003 | struct btrfs_root_item *root_item = &root->root_item; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9004 | struct walk_control *wc; |
| 9005 | struct btrfs_key key; |
| 9006 | int err = 0; |
| 9007 | int ret; |
| 9008 | int level; |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9009 | bool root_dropped = false; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9010 | |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9011 | btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid); |
Mark Fasheh | 1152651 | 2014-07-17 12:39:01 -0700 | [diff] [blame] | 9012 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9013 | path = btrfs_alloc_path(); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9014 | if (!path) { |
| 9015 | err = -ENOMEM; |
| 9016 | goto out; |
| 9017 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9018 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9019 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9020 | if (!wc) { |
| 9021 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9022 | err = -ENOMEM; |
| 9023 | goto out; |
Mark Fasheh | 38a1a91 | 2011-07-13 10:59:59 -0700 | [diff] [blame] | 9024 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9025 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9026 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9027 | if (IS_ERR(trans)) { |
| 9028 | err = PTR_ERR(trans); |
| 9029 | goto out_free; |
| 9030 | } |
Tsutomu Itoh | 98d5dc1 | 2011-01-20 06:19:37 +0000 | [diff] [blame] | 9031 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9032 | if (block_rsv) |
| 9033 | trans->block_rsv = block_rsv; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9034 | |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9035 | if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9036 | level = btrfs_header_level(root->node); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9037 | path->nodes[level] = btrfs_lock_root_node(root); |
| 9038 | btrfs_set_lock_blocking(path->nodes[level]); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9039 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9040 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9041 | memset(&wc->update_progress, 0, |
| 9042 | sizeof(wc->update_progress)); |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9043 | } else { |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9044 | btrfs_disk_key_to_cpu(&key, &root_item->drop_progress); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9045 | memcpy(&wc->update_progress, &key, |
| 9046 | sizeof(wc->update_progress)); |
| 9047 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9048 | level = root_item->drop_level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9049 | BUG_ON(level == 0); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 9050 | path->lowest_level = level; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9051 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 9052 | path->lowest_level = 0; |
| 9053 | if (ret < 0) { |
| 9054 | err = ret; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9055 | goto out_end_trans; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 9056 | } |
Yan, Zheng | 1c4850e | 2009-09-21 15:55:59 -0400 | [diff] [blame] | 9057 | WARN_ON(ret > 0); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9058 | |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9059 | /* |
| 9060 | * unlock our path, this is safe because only this |
| 9061 | * function is allowed to delete this snapshot |
| 9062 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9063 | btrfs_unlock_up_safe(path, 0); |
Chris Mason | 9aca1d5 | 2007-03-13 11:09:37 -0400 | [diff] [blame] | 9064 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9065 | level = btrfs_header_level(root->node); |
| 9066 | while (1) { |
| 9067 | btrfs_tree_lock(path->nodes[level]); |
| 9068 | btrfs_set_lock_blocking(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9069 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9070 | |
| 9071 | ret = btrfs_lookup_extent_info(trans, root, |
| 9072 | path->nodes[level]->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 9073 | level, 1, &wc->refs[level], |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9074 | &wc->flags[level]); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9075 | if (ret < 0) { |
| 9076 | err = ret; |
| 9077 | goto out_end_trans; |
| 9078 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9079 | BUG_ON(wc->refs[level] == 0); |
| 9080 | |
| 9081 | if (level == root_item->drop_level) |
| 9082 | break; |
| 9083 | |
| 9084 | btrfs_tree_unlock(path->nodes[level]); |
Josef Bacik | fec386a | 2013-07-15 12:41:42 -0400 | [diff] [blame] | 9085 | path->locks[level] = 0; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9086 | WARN_ON(wc->refs[level] != 1); |
| 9087 | level--; |
| 9088 | } |
| 9089 | } |
| 9090 | |
| 9091 | wc->level = level; |
| 9092 | wc->shared_level = -1; |
| 9093 | wc->stage = DROP_REFERENCE; |
| 9094 | wc->update_ref = update_ref; |
| 9095 | wc->keep_locks = 0; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9096 | wc->for_reloc = for_reloc; |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 9097 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root->fs_info); |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9098 | |
| 9099 | while (1) { |
David Sterba | 9d1a2a3 | 2013-03-12 15:13:28 +0000 | [diff] [blame] | 9100 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9101 | ret = walk_down_tree(trans, root, path, wc); |
| 9102 | if (ret < 0) { |
| 9103 | err = ret; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 9104 | break; |
| 9105 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9106 | |
| 9107 | ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL); |
| 9108 | if (ret < 0) { |
| 9109 | err = ret; |
| 9110 | break; |
| 9111 | } |
| 9112 | |
| 9113 | if (ret > 0) { |
| 9114 | BUG_ON(wc->stage != DROP_REFERENCE); |
| 9115 | break; |
| 9116 | } |
| 9117 | |
| 9118 | if (wc->stage == DROP_REFERENCE) { |
| 9119 | level = wc->level; |
| 9120 | btrfs_node_key(path->nodes[level], |
| 9121 | &root_item->drop_progress, |
| 9122 | path->slots[level]); |
| 9123 | root_item->drop_level = level; |
| 9124 | } |
| 9125 | |
| 9126 | BUG_ON(wc->level == 0); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9127 | if (btrfs_should_end_transaction(trans, tree_root) || |
| 9128 | (!for_reloc && btrfs_need_cleaner_sleep(root))) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9129 | ret = btrfs_update_root(trans, tree_root, |
| 9130 | &root->root_key, |
| 9131 | root_item); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9132 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9133 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9134 | err = ret; |
| 9135 | goto out_end_trans; |
| 9136 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9137 | |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9138 | btrfs_end_transaction_throttle(trans, tree_root); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9139 | if (!for_reloc && btrfs_need_cleaner_sleep(root)) { |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9140 | btrfs_debug(fs_info, |
| 9141 | "drop snapshot early exit"); |
Josef Bacik | 3c8f242 | 2013-07-15 11:57:06 -0400 | [diff] [blame] | 9142 | err = -EAGAIN; |
| 9143 | goto out_free; |
| 9144 | } |
| 9145 | |
Yan, Zheng | a22285a | 2010-05-16 10:48:46 -0400 | [diff] [blame] | 9146 | trans = btrfs_start_transaction(tree_root, 0); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9147 | if (IS_ERR(trans)) { |
| 9148 | err = PTR_ERR(trans); |
| 9149 | goto out_free; |
| 9150 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9151 | if (block_rsv) |
| 9152 | trans->block_rsv = block_rsv; |
Chris Mason | c3e69d5 | 2009-03-13 10:17:05 -0400 | [diff] [blame] | 9153 | } |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9154 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 9155 | btrfs_release_path(path); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9156 | if (err) |
| 9157 | goto out_end_trans; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9158 | |
| 9159 | ret = btrfs_del_root(trans, tree_root, &root->root_key); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9160 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9161 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9162 | goto out_end_trans; |
| 9163 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9164 | |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9165 | if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) { |
Miao Xie | cb517ea | 2013-05-15 07:48:19 +0000 | [diff] [blame] | 9166 | ret = btrfs_find_root(tree_root, &root->root_key, path, |
| 9167 | NULL, NULL); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9168 | if (ret < 0) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 9169 | btrfs_abort_transaction(trans, ret); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9170 | err = ret; |
| 9171 | goto out_end_trans; |
| 9172 | } else if (ret > 0) { |
Josef Bacik | 84cd948 | 2010-12-08 12:24:01 -0500 | [diff] [blame] | 9173 | /* if we fail to delete the orphan item this time |
| 9174 | * around, it'll get picked up the next time. |
| 9175 | * |
| 9176 | * The most common failure here is just -ENOENT. |
| 9177 | */ |
| 9178 | btrfs_del_orphan_item(trans, tree_root, |
| 9179 | root->root_key.objectid); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9180 | } |
| 9181 | } |
| 9182 | |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 9183 | if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) { |
Josef Bacik | 2b9dbef | 2015-09-15 10:07:04 -0400 | [diff] [blame] | 9184 | btrfs_add_dropped_root(trans, root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9185 | } else { |
| 9186 | free_extent_buffer(root->node); |
| 9187 | free_extent_buffer(root->commit_root); |
Miao Xie | b0feb9d | 2013-05-15 07:48:20 +0000 | [diff] [blame] | 9188 | btrfs_put_fs_root(root); |
Yan, Zheng | 76dda93 | 2009-09-21 16:00:26 -0400 | [diff] [blame] | 9189 | } |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9190 | root_dropped = true; |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9191 | out_end_trans: |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 9192 | btrfs_end_transaction_throttle(trans, tree_root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9193 | out_free: |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9194 | kfree(wc); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 9195 | btrfs_free_path(path); |
Tsutomu Itoh | cb1b69f | 2011-08-09 07:11:13 +0000 | [diff] [blame] | 9196 | out: |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9197 | /* |
| 9198 | * So if we need to stop dropping the snapshot for whatever reason we |
| 9199 | * need to make sure to add it back to the dead root list so that we |
| 9200 | * keep trying to do the work later. This also cleans up roots if we |
| 9201 | * don't have it in the radix (like when we recover after a power fail |
| 9202 | * or unmount) so we don't leak memory. |
| 9203 | */ |
Josef Bacik | b37b39c | 2013-07-23 16:57:15 -0400 | [diff] [blame] | 9204 | if (!for_reloc && root_dropped == false) |
Josef Bacik | d29a9f6 | 2013-07-17 19:30:20 -0400 | [diff] [blame] | 9205 | btrfs_add_dead_root(root); |
Wang Shilong | 90515e7 | 2014-01-07 17:26:58 +0800 | [diff] [blame] | 9206 | if (err && err != -EAGAIN) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9207 | btrfs_handle_fs_error(fs_info, err, NULL); |
Jeff Mahoney | 2c53679 | 2011-10-03 23:22:41 -0400 | [diff] [blame] | 9208 | return err; |
Chris Mason | 20524f0 | 2007-03-10 06:35:47 -0500 | [diff] [blame] | 9209 | } |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9210 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9211 | /* |
| 9212 | * drop subtree rooted at tree block 'node'. |
| 9213 | * |
| 9214 | * NOTE: this function will unlock and release tree block 'node' |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9215 | * only used by relocation code |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9216 | */ |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9217 | int btrfs_drop_subtree(struct btrfs_trans_handle *trans, |
| 9218 | struct btrfs_root *root, |
| 9219 | struct extent_buffer *node, |
| 9220 | struct extent_buffer *parent) |
| 9221 | { |
| 9222 | struct btrfs_path *path; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9223 | struct walk_control *wc; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9224 | int level; |
| 9225 | int parent_level; |
| 9226 | int ret = 0; |
| 9227 | int wret; |
| 9228 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9229 | BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID); |
| 9230 | |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9231 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9232 | if (!path) |
| 9233 | return -ENOMEM; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9234 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9235 | wc = kzalloc(sizeof(*wc), GFP_NOFS); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 9236 | if (!wc) { |
| 9237 | btrfs_free_path(path); |
| 9238 | return -ENOMEM; |
| 9239 | } |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9240 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9241 | btrfs_assert_tree_locked(parent); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9242 | parent_level = btrfs_header_level(parent); |
| 9243 | extent_buffer_get(parent); |
| 9244 | path->nodes[parent_level] = parent; |
| 9245 | path->slots[parent_level] = btrfs_header_nritems(parent); |
| 9246 | |
Chris Mason | b9447ef | 2009-03-09 11:45:38 -0400 | [diff] [blame] | 9247 | btrfs_assert_tree_locked(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9248 | level = btrfs_header_level(node); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9249 | path->nodes[level] = node; |
| 9250 | path->slots[level] = 0; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 9251 | path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9252 | |
| 9253 | wc->refs[parent_level] = 1; |
| 9254 | wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 9255 | wc->level = level; |
| 9256 | wc->shared_level = -1; |
| 9257 | wc->stage = DROP_REFERENCE; |
| 9258 | wc->update_ref = 0; |
| 9259 | wc->keep_locks = 1; |
Arne Jansen | 66d7e7f | 2011-09-12 15:26:38 +0200 | [diff] [blame] | 9260 | wc->for_reloc = 1; |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 9261 | wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root->fs_info); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9262 | |
| 9263 | while (1) { |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9264 | wret = walk_down_tree(trans, root, path, wc); |
| 9265 | if (wret < 0) { |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9266 | ret = wret; |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9267 | break; |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9268 | } |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9269 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9270 | wret = walk_up_tree(trans, root, path, wc, parent_level); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9271 | if (wret < 0) |
| 9272 | ret = wret; |
| 9273 | if (wret != 0) |
| 9274 | break; |
| 9275 | } |
| 9276 | |
Yan Zheng | 2c47e605 | 2009-06-27 21:07:35 -0400 | [diff] [blame] | 9277 | kfree(wc); |
Yan Zheng | f82d02d | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9278 | btrfs_free_path(path); |
| 9279 | return ret; |
| 9280 | } |
| 9281 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 9282 | 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] | 9283 | { |
| 9284 | u64 num_devices; |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9285 | u64 stripped; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9286 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9287 | /* |
| 9288 | * if restripe for this chunk_type is on pick target profile and |
| 9289 | * return, otherwise do the usual balance |
| 9290 | */ |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 9291 | stripped = get_restripe_target(fs_info, flags); |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9292 | if (stripped) |
| 9293 | return extended_to_chunk(stripped); |
Ilya Dryomov | e4d8ec0 | 2012-01-16 22:04:48 +0200 | [diff] [blame] | 9294 | |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 9295 | num_devices = fs_info->fs_devices->rw_devices; |
Chris Mason | cd02dca | 2010-12-13 14:56:23 -0500 | [diff] [blame] | 9296 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9297 | stripped = BTRFS_BLOCK_GROUP_RAID0 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 9298 | BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 | |
Ilya Dryomov | fc67c45 | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9299 | BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10; |
| 9300 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9301 | if (num_devices == 1) { |
| 9302 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9303 | stripped = flags & ~stripped; |
| 9304 | |
| 9305 | /* turn raid0 into single device chunks */ |
| 9306 | if (flags & BTRFS_BLOCK_GROUP_RAID0) |
| 9307 | return stripped; |
| 9308 | |
| 9309 | /* turn mirroring into duplication */ |
| 9310 | if (flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9311 | BTRFS_BLOCK_GROUP_RAID10)) |
| 9312 | return stripped | BTRFS_BLOCK_GROUP_DUP; |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9313 | } else { |
| 9314 | /* they already had raid on here, just return */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9315 | if (flags & stripped) |
| 9316 | return flags; |
| 9317 | |
| 9318 | stripped |= BTRFS_BLOCK_GROUP_DUP; |
| 9319 | stripped = flags & ~stripped; |
| 9320 | |
| 9321 | /* switch duplicated blocks with raid1 */ |
| 9322 | if (flags & BTRFS_BLOCK_GROUP_DUP) |
| 9323 | return stripped | BTRFS_BLOCK_GROUP_RAID1; |
| 9324 | |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9325 | /* this is drive concat, leave it alone */ |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9326 | } |
Ilya Dryomov | e3176ca | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 9327 | |
Chris Mason | ec44a35 | 2008-04-28 15:29:52 -0400 | [diff] [blame] | 9328 | return flags; |
| 9329 | } |
| 9330 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9331 | 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] | 9332 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9333 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9334 | u64 num_bytes; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9335 | u64 min_allocable_bytes; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9336 | int ret = -ENOSPC; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9337 | |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9338 | /* |
| 9339 | * We need some metadata space and system metadata space for |
| 9340 | * allocating chunks in some corner cases until we force to set |
| 9341 | * it to be readonly. |
| 9342 | */ |
| 9343 | if ((sinfo->flags & |
| 9344 | (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) && |
| 9345 | !force) |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 9346 | min_allocable_bytes = SZ_1M; |
Miao Xie | 199c36e | 2011-07-15 10:34:36 +0000 | [diff] [blame] | 9347 | else |
| 9348 | min_allocable_bytes = 0; |
| 9349 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9350 | spin_lock(&sinfo->lock); |
| 9351 | spin_lock(&cache->lock); |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9352 | |
| 9353 | if (cache->ro) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9354 | cache->ro++; |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9355 | ret = 0; |
| 9356 | goto out; |
| 9357 | } |
| 9358 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9359 | num_bytes = cache->key.offset - cache->reserved - cache->pinned - |
| 9360 | cache->bytes_super - btrfs_block_group_used(&cache->item); |
Chris Mason | 7d9eb12 | 2008-07-08 14:19:17 -0400 | [diff] [blame] | 9361 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9362 | if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned + |
Josef Bacik | 37be25b | 2011-08-05 10:25:38 -0400 | [diff] [blame] | 9363 | sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes + |
| 9364 | min_allocable_bytes <= sinfo->total_bytes) { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9365 | sinfo->bytes_readonly += num_bytes; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9366 | cache->ro++; |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9367 | list_add_tail(&cache->ro_list, &sinfo->ro_bgs); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9368 | ret = 0; |
| 9369 | } |
WuBo | 61cfea9 | 2011-07-26 03:30:11 +0000 | [diff] [blame] | 9370 | out: |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9371 | spin_unlock(&cache->lock); |
| 9372 | spin_unlock(&sinfo->lock); |
| 9373 | return ret; |
Chris Mason | 0ef3e66 | 2008-05-24 14:04:53 -0400 | [diff] [blame] | 9374 | } |
| 9375 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9376 | int btrfs_inc_block_group_ro(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9377 | struct btrfs_block_group_cache *cache) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9378 | |
| 9379 | { |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9380 | struct btrfs_trans_handle *trans; |
| 9381 | u64 alloc_flags; |
| 9382 | int ret; |
| 9383 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9384 | again: |
Josef Bacik | 7a7eaa4 | 2011-04-13 12:54:33 -0400 | [diff] [blame] | 9385 | trans = btrfs_join_transaction(root); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 9386 | if (IS_ERR(trans)) |
| 9387 | return PTR_ERR(trans); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9388 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9389 | /* |
| 9390 | * we're not allowed to set block groups readonly after the dirty |
| 9391 | * block groups cache has started writing. If it already started, |
| 9392 | * back off and let this transaction commit |
| 9393 | */ |
| 9394 | mutex_lock(&root->fs_info->ro_block_group_mutex); |
Josef Bacik | 3204d33 | 2015-09-24 10:46:10 -0400 | [diff] [blame] | 9395 | if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9396 | u64 transid = trans->transid; |
| 9397 | |
| 9398 | mutex_unlock(&root->fs_info->ro_block_group_mutex); |
| 9399 | btrfs_end_transaction(trans, root); |
| 9400 | |
| 9401 | ret = btrfs_wait_for_commit(root, transid); |
| 9402 | if (ret) |
| 9403 | return ret; |
| 9404 | goto again; |
| 9405 | } |
| 9406 | |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9407 | /* |
| 9408 | * if we are changing raid levels, try to allocate a corresponding |
| 9409 | * block group with the new raid level. |
| 9410 | */ |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 9411 | alloc_flags = update_block_group_flags(root->fs_info, cache->flags); |
Chris Mason | 153c35b | 2015-05-19 18:54:41 -0700 | [diff] [blame] | 9412 | if (alloc_flags != cache->flags) { |
| 9413 | ret = do_chunk_alloc(trans, root, alloc_flags, |
| 9414 | CHUNK_ALLOC_FORCE); |
| 9415 | /* |
| 9416 | * ENOSPC is allowed here, we may have enough space |
| 9417 | * already allocated at the new raid level to |
| 9418 | * carry on |
| 9419 | */ |
| 9420 | if (ret == -ENOSPC) |
| 9421 | ret = 0; |
| 9422 | if (ret < 0) |
| 9423 | goto out; |
| 9424 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9425 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9426 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9427 | if (!ret) |
| 9428 | goto out; |
| 9429 | alloc_flags = get_alloc_profile(root, cache->space_info->flags); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 9430 | ret = do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 9431 | CHUNK_ALLOC_FORCE); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9432 | if (ret < 0) |
| 9433 | goto out; |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9434 | ret = inc_block_group_ro(cache, 0); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9435 | out: |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9436 | if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) { |
Jeff Mahoney | 6202df6 | 2016-06-22 18:54:22 -0400 | [diff] [blame^] | 9437 | alloc_flags = update_block_group_flags(root->fs_info, |
| 9438 | cache->flags); |
Jeff Mahoney | 3796d33 | 2016-06-16 11:30:29 -0400 | [diff] [blame] | 9439 | lock_chunks(root->fs_info); |
Filipe Manana | 4617ea3 | 2015-06-09 17:48:21 +0100 | [diff] [blame] | 9440 | check_system_chunk(trans, root, alloc_flags); |
Jeff Mahoney | 3796d33 | 2016-06-16 11:30:29 -0400 | [diff] [blame] | 9441 | unlock_chunks(root->fs_info); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9442 | } |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 9443 | mutex_unlock(&root->fs_info->ro_block_group_mutex); |
Shaohua Li | 2f08108 | 2015-01-09 10:40:15 -0800 | [diff] [blame] | 9444 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9445 | btrfs_end_transaction(trans, root); |
| 9446 | return ret; |
| 9447 | } |
| 9448 | |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9449 | int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, |
| 9450 | struct btrfs_root *root, u64 type) |
| 9451 | { |
| 9452 | u64 alloc_flags = get_alloc_profile(root, type); |
Josef Bacik | 698d008 | 2012-09-12 14:08:47 -0400 | [diff] [blame] | 9453 | return do_chunk_alloc(trans, root, alloc_flags, |
Chris Mason | 0e4f8f8 | 2011-04-15 16:05:44 -0400 | [diff] [blame] | 9454 | CHUNK_ALLOC_FORCE); |
Chris Mason | c87f08c | 2011-02-16 13:57:04 -0500 | [diff] [blame] | 9455 | } |
| 9456 | |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9457 | /* |
| 9458 | * 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] | 9459 | * space_info. takes mirrors into account. |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9460 | */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9461 | 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] | 9462 | { |
| 9463 | struct btrfs_block_group_cache *block_group; |
| 9464 | u64 free_bytes = 0; |
| 9465 | int factor; |
| 9466 | |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 9467 | /* It's df, we don't care if it's racy */ |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9468 | if (list_empty(&sinfo->ro_bgs)) |
| 9469 | return 0; |
| 9470 | |
| 9471 | spin_lock(&sinfo->lock); |
| 9472 | list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) { |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9473 | spin_lock(&block_group->lock); |
| 9474 | |
| 9475 | if (!block_group->ro) { |
| 9476 | spin_unlock(&block_group->lock); |
| 9477 | continue; |
| 9478 | } |
| 9479 | |
| 9480 | if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 | |
| 9481 | BTRFS_BLOCK_GROUP_RAID10 | |
| 9482 | BTRFS_BLOCK_GROUP_DUP)) |
| 9483 | factor = 2; |
| 9484 | else |
| 9485 | factor = 1; |
| 9486 | |
| 9487 | free_bytes += (block_group->key.offset - |
| 9488 | btrfs_block_group_used(&block_group->item)) * |
| 9489 | factor; |
| 9490 | |
| 9491 | spin_unlock(&block_group->lock); |
| 9492 | } |
Miao Xie | 6d07bce | 2011-01-05 10:07:31 +0000 | [diff] [blame] | 9493 | spin_unlock(&sinfo->lock); |
| 9494 | |
| 9495 | return free_bytes; |
| 9496 | } |
| 9497 | |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9498 | void btrfs_dec_block_group_ro(struct btrfs_root *root, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9499 | struct btrfs_block_group_cache *cache) |
| 9500 | { |
| 9501 | struct btrfs_space_info *sinfo = cache->space_info; |
| 9502 | u64 num_bytes; |
| 9503 | |
| 9504 | BUG_ON(!cache->ro); |
| 9505 | |
| 9506 | spin_lock(&sinfo->lock); |
| 9507 | spin_lock(&cache->lock); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 9508 | if (!--cache->ro) { |
| 9509 | num_bytes = cache->key.offset - cache->reserved - |
| 9510 | cache->pinned - cache->bytes_super - |
| 9511 | btrfs_block_group_used(&cache->item); |
| 9512 | sinfo->bytes_readonly -= num_bytes; |
| 9513 | list_del_init(&cache->ro_list); |
| 9514 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9515 | spin_unlock(&cache->lock); |
| 9516 | spin_unlock(&sinfo->lock); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 9517 | } |
| 9518 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9519 | /* |
| 9520 | * checks to see if its even possible to relocate this block group. |
| 9521 | * |
| 9522 | * @return - -1 if it's not a good idea to relocate this block group, 0 if its |
| 9523 | * ok to go ahead and try. |
| 9524 | */ |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9525 | int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9526 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9527 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9528 | struct btrfs_block_group_cache *block_group; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9529 | struct btrfs_space_info *space_info; |
| 9530 | struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices; |
| 9531 | struct btrfs_device *device; |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9532 | struct btrfs_trans_handle *trans; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9533 | u64 min_free; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9534 | u64 dev_min = 1; |
| 9535 | u64 dev_nr = 0; |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9536 | u64 target; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9537 | int debug; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9538 | int index; |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9539 | int full = 0; |
| 9540 | int ret = 0; |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9541 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 9542 | debug = btrfs_test_opt(root->fs_info, ENOSPC_DEBUG); |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9543 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9544 | block_group = btrfs_lookup_block_group(root->fs_info, bytenr); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9545 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9546 | /* odd, couldn't find the block group, leave it alone */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9547 | if (!block_group) { |
| 9548 | if (debug) |
| 9549 | btrfs_warn(root->fs_info, |
| 9550 | "can't find block group for bytenr %llu", |
| 9551 | bytenr); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9552 | return -1; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9553 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9554 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9555 | min_free = btrfs_block_group_used(&block_group->item); |
| 9556 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9557 | /* no bytes used, we're good */ |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9558 | if (!min_free) |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9559 | goto out; |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9560 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9561 | space_info = block_group->space_info; |
| 9562 | spin_lock(&space_info->lock); |
Chris Mason | 323da79 | 2008-05-09 11:46:48 -0400 | [diff] [blame] | 9563 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9564 | full = space_info->full; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9565 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9566 | /* |
| 9567 | * 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] | 9568 | * relocate it unless we're able to allocate a new chunk below. |
| 9569 | * |
| 9570 | * Otherwise, we need to make sure we have room in the space to handle |
| 9571 | * 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] | 9572 | */ |
Chris Mason | 7ce618d | 2009-09-22 14:48:44 -0400 | [diff] [blame] | 9573 | if ((space_info->total_bytes != block_group->key.offset) && |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9574 | (space_info->bytes_used + space_info->bytes_reserved + |
| 9575 | space_info->bytes_pinned + space_info->bytes_readonly + |
| 9576 | min_free < space_info->total_bytes)) { |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9577 | spin_unlock(&space_info->lock); |
| 9578 | goto out; |
| 9579 | } |
| 9580 | spin_unlock(&space_info->lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9581 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9582 | /* |
| 9583 | * ok we don't have enough space, but maybe we have free space on our |
| 9584 | * devices to allocate new chunks for relocation, so loop through our |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9585 | * alloc devices and guess if we have enough space. if this block |
| 9586 | * group is going to be restriped, run checks against the target |
| 9587 | * profile instead of the current one. |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9588 | */ |
| 9589 | ret = -1; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 9590 | |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9591 | /* |
| 9592 | * index: |
| 9593 | * 0: raid10 |
| 9594 | * 1: raid1 |
| 9595 | * 2: dup |
| 9596 | * 3: raid0 |
| 9597 | * 4: single |
| 9598 | */ |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9599 | target = get_restripe_target(root->fs_info, block_group->flags); |
| 9600 | if (target) { |
Liu Bo | 31e5022 | 2012-11-21 14:18:10 +0000 | [diff] [blame] | 9601 | index = __get_raid_index(extended_to_chunk(target)); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9602 | } else { |
| 9603 | /* |
| 9604 | * this is just a balance, so if we were marked as full |
| 9605 | * we know there is no space for a new chunk |
| 9606 | */ |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9607 | if (full) { |
| 9608 | if (debug) |
| 9609 | btrfs_warn(root->fs_info, |
| 9610 | "no space to alloc new chunk for block group %llu", |
| 9611 | block_group->key.objectid); |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9612 | goto out; |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9613 | } |
Ilya Dryomov | 4a5e98f | 2012-03-27 17:09:17 +0300 | [diff] [blame] | 9614 | |
| 9615 | index = get_block_group_index(block_group); |
| 9616 | } |
| 9617 | |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9618 | if (index == BTRFS_RAID_RAID10) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9619 | dev_min = 4; |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9620 | /* Divide by 2 */ |
| 9621 | min_free >>= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9622 | } else if (index == BTRFS_RAID_RAID1) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9623 | dev_min = 2; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9624 | } else if (index == BTRFS_RAID_DUP) { |
Josef Bacik | 6719db6 | 2011-08-20 08:29:51 -0400 | [diff] [blame] | 9625 | /* Multiply by 2 */ |
| 9626 | min_free <<= 1; |
Miao Xie | e6ec716 | 2013-01-17 05:38:51 +0000 | [diff] [blame] | 9627 | } else if (index == BTRFS_RAID_RAID0) { |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9628 | dev_min = fs_devices->rw_devices; |
David Sterba | 47c5713 | 2015-02-20 18:43:47 +0100 | [diff] [blame] | 9629 | min_free = div64_u64(min_free, dev_min); |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9630 | } |
| 9631 | |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9632 | /* We need to do this so that we can look at pending chunks */ |
| 9633 | trans = btrfs_join_transaction(root); |
| 9634 | if (IS_ERR(trans)) { |
| 9635 | ret = PTR_ERR(trans); |
| 9636 | goto out; |
| 9637 | } |
| 9638 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9639 | mutex_lock(&root->fs_info->chunk_mutex); |
| 9640 | list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) { |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9641 | u64 dev_offset; |
Chris Mason | ea8c281 | 2008-08-04 23:17:27 -0400 | [diff] [blame] | 9642 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9643 | /* |
| 9644 | * check to make sure we can actually find a chunk with enough |
| 9645 | * space to fit our block group in. |
| 9646 | */ |
Stefan Behrens | 63a212a | 2012-11-05 18:29:28 +0100 | [diff] [blame] | 9647 | if (device->total_bytes > device->bytes_used + min_free && |
| 9648 | !device->is_tgtdev_for_dev_replace) { |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9649 | ret = find_free_dev_extent(trans, device, min_free, |
Miao Xie | 7bfc837 | 2011-01-05 10:07:26 +0000 | [diff] [blame] | 9650 | &dev_offset, NULL); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9651 | if (!ret) |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9652 | dev_nr++; |
| 9653 | |
| 9654 | if (dev_nr >= dev_min) |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9655 | break; |
liubo | cdcb725 | 2011-08-03 10:15:25 +0000 | [diff] [blame] | 9656 | |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9657 | ret = -1; |
Yan | 73e48b2 | 2008-01-03 14:14:39 -0500 | [diff] [blame] | 9658 | } |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9659 | } |
Qu Wenruo | 0305bc2 | 2016-03-23 11:38:17 +0800 | [diff] [blame] | 9660 | if (debug && ret == -1) |
| 9661 | btrfs_warn(root->fs_info, |
| 9662 | "no space to allocate a new chunk for block group %llu", |
| 9663 | block_group->key.objectid); |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9664 | mutex_unlock(&root->fs_info->chunk_mutex); |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 9665 | btrfs_end_transaction(trans, root); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9666 | out: |
Josef Bacik | ba1bf48 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9667 | btrfs_put_block_group(block_group); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 9668 | return ret; |
| 9669 | } |
| 9670 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9671 | static int find_first_block_group(struct btrfs_fs_info *fs_info, |
| 9672 | struct btrfs_path *path, |
| 9673 | struct btrfs_key *key) |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9674 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9675 | struct btrfs_root *root = fs_info->extent_root; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9676 | int ret = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9677 | struct btrfs_key found_key; |
| 9678 | struct extent_buffer *leaf; |
| 9679 | int slot; |
| 9680 | |
| 9681 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 9682 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9683 | goto out; |
| 9684 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9685 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9686 | slot = path->slots[0]; |
| 9687 | leaf = path->nodes[0]; |
| 9688 | if (slot >= btrfs_header_nritems(leaf)) { |
| 9689 | ret = btrfs_next_leaf(root, path); |
| 9690 | if (ret == 0) |
| 9691 | continue; |
| 9692 | if (ret < 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9693 | goto out; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9694 | break; |
| 9695 | } |
| 9696 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
| 9697 | |
| 9698 | if (found_key.objectid >= key->objectid && |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9699 | found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) { |
Liu Bo | 6fb37b7 | 2016-06-22 18:31:27 -0700 | [diff] [blame] | 9700 | struct extent_map_tree *em_tree; |
| 9701 | struct extent_map *em; |
| 9702 | |
| 9703 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 9704 | read_lock(&em_tree->lock); |
| 9705 | em = lookup_extent_mapping(em_tree, found_key.objectid, |
| 9706 | found_key.offset); |
| 9707 | read_unlock(&em_tree->lock); |
| 9708 | if (!em) { |
| 9709 | btrfs_err(root->fs_info, |
| 9710 | "logical %llu len %llu found bg but no related chunk", |
| 9711 | found_key.objectid, found_key.offset); |
| 9712 | ret = -ENOENT; |
| 9713 | } else { |
| 9714 | ret = 0; |
| 9715 | } |
Josef Bacik | 187ee58 | 2016-08-18 15:30:06 -0400 | [diff] [blame] | 9716 | free_extent_map(em); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9717 | goto out; |
| 9718 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9719 | path->slots[0]++; |
| 9720 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 9721 | out: |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9722 | return ret; |
| 9723 | } |
| 9724 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9725 | void btrfs_put_block_group_cache(struct btrfs_fs_info *info) |
| 9726 | { |
| 9727 | struct btrfs_block_group_cache *block_group; |
| 9728 | u64 last = 0; |
| 9729 | |
| 9730 | while (1) { |
| 9731 | struct inode *inode; |
| 9732 | |
| 9733 | block_group = btrfs_lookup_first_block_group(info, last); |
| 9734 | while (block_group) { |
| 9735 | spin_lock(&block_group->lock); |
| 9736 | if (block_group->iref) |
| 9737 | break; |
| 9738 | spin_unlock(&block_group->lock); |
| 9739 | block_group = next_block_group(info->tree_root, |
| 9740 | block_group); |
| 9741 | } |
| 9742 | if (!block_group) { |
| 9743 | if (last == 0) |
| 9744 | break; |
| 9745 | last = 0; |
| 9746 | continue; |
| 9747 | } |
| 9748 | |
| 9749 | inode = block_group->inode; |
| 9750 | block_group->iref = 0; |
| 9751 | block_group->inode = NULL; |
| 9752 | spin_unlock(&block_group->lock); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9753 | ASSERT(block_group->io_ctl.inode == NULL); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9754 | iput(inode); |
| 9755 | last = block_group->key.objectid + block_group->key.offset; |
| 9756 | btrfs_put_block_group(block_group); |
| 9757 | } |
| 9758 | } |
| 9759 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9760 | int btrfs_free_block_groups(struct btrfs_fs_info *info) |
| 9761 | { |
| 9762 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9763 | struct btrfs_space_info *space_info; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9764 | struct btrfs_caching_control *caching_ctl; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9765 | struct rb_node *n; |
| 9766 | |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9767 | down_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9768 | while (!list_empty(&info->caching_block_groups)) { |
| 9769 | caching_ctl = list_entry(info->caching_block_groups.next, |
| 9770 | struct btrfs_caching_control, list); |
| 9771 | list_del(&caching_ctl->list); |
| 9772 | put_caching_control(caching_ctl); |
| 9773 | } |
Josef Bacik | 9e351cc | 2014-03-13 15:42:13 -0400 | [diff] [blame] | 9774 | up_write(&info->commit_root_sem); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9775 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9776 | spin_lock(&info->unused_bgs_lock); |
| 9777 | while (!list_empty(&info->unused_bgs)) { |
| 9778 | block_group = list_first_entry(&info->unused_bgs, |
| 9779 | struct btrfs_block_group_cache, |
| 9780 | bg_list); |
| 9781 | list_del_init(&block_group->bg_list); |
| 9782 | btrfs_put_block_group(block_group); |
| 9783 | } |
| 9784 | spin_unlock(&info->unused_bgs_lock); |
| 9785 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9786 | spin_lock(&info->block_group_cache_lock); |
| 9787 | while ((n = rb_last(&info->block_group_cache_tree)) != NULL) { |
| 9788 | block_group = rb_entry(n, struct btrfs_block_group_cache, |
| 9789 | cache_node); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9790 | rb_erase(&block_group->cache_node, |
| 9791 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 9792 | RB_CLEAR_NODE(&block_group->cache_node); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9793 | spin_unlock(&info->block_group_cache_lock); |
| 9794 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9795 | down_write(&block_group->space_info->groups_sem); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9796 | list_del(&block_group->list); |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 9797 | up_write(&block_group->space_info->groups_sem); |
Yan Zheng | d2fb343 | 2008-12-11 16:30:39 -0500 | [diff] [blame] | 9798 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9799 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 9800 | wait_block_group_cache_done(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9801 | |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9802 | /* |
| 9803 | * We haven't cached this block group, which means we could |
| 9804 | * possibly have excluded extents on this block group. |
| 9805 | */ |
Josef Bacik | 36cce92 | 2013-08-05 11:15:21 -0400 | [diff] [blame] | 9806 | if (block_group->cached == BTRFS_CACHE_NO || |
| 9807 | block_group->cached == BTRFS_CACHE_ERROR) |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 9808 | free_excluded_extents(info->extent_root, block_group); |
| 9809 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9810 | btrfs_remove_free_space_cache(block_group); |
Liu Bo | f3bca80 | 2016-07-20 17:33:44 -0700 | [diff] [blame] | 9811 | ASSERT(list_empty(&block_group->dirty_list)); |
| 9812 | ASSERT(list_empty(&block_group->io_list)); |
| 9813 | ASSERT(list_empty(&block_group->bg_list)); |
| 9814 | ASSERT(atomic_read(&block_group->count) == 1); |
Josef Bacik | 11dfe35 | 2009-11-13 20:12:59 +0000 | [diff] [blame] | 9815 | btrfs_put_block_group(block_group); |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 9816 | |
| 9817 | spin_lock(&info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9818 | } |
| 9819 | spin_unlock(&info->block_group_cache_lock); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9820 | |
| 9821 | /* now that all the block groups are freed, go through and |
| 9822 | * free all the space_info structs. This is only called during |
| 9823 | * the final stages of unmount, and so we know nobody is |
| 9824 | * using them. We call synchronize_rcu() once before we start, |
| 9825 | * just to be on the safe side. |
| 9826 | */ |
| 9827 | synchronize_rcu(); |
| 9828 | |
Yan, Zheng | 8929ecfa | 2010-05-16 10:49:58 -0400 | [diff] [blame] | 9829 | release_global_block_rsv(info); |
| 9830 | |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 9831 | while (!list_empty(&info->space_info)) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9832 | int i; |
| 9833 | |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9834 | space_info = list_entry(info->space_info.next, |
| 9835 | struct btrfs_space_info, |
| 9836 | list); |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 9837 | |
| 9838 | /* |
| 9839 | * Do not hide this behind enospc_debug, this is actually |
| 9840 | * important and indicates a real bug if this happens. |
| 9841 | */ |
| 9842 | if (WARN_ON(space_info->bytes_pinned > 0 || |
David Sterba | b069e0c | 2013-02-08 21:28:17 +0000 | [diff] [blame] | 9843 | space_info->bytes_reserved > 0 || |
Josef Bacik | d555b6c | 2016-03-25 13:25:51 -0400 | [diff] [blame] | 9844 | space_info->bytes_may_use > 0)) |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9845 | dump_space_info(info, space_info, 0, 0); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9846 | list_del(&space_info->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9847 | for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) { |
| 9848 | struct kobject *kobj; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9849 | kobj = space_info->block_group_kobjs[i]; |
| 9850 | space_info->block_group_kobjs[i] = NULL; |
| 9851 | if (kobj) { |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9852 | kobject_del(kobj); |
| 9853 | kobject_put(kobj); |
| 9854 | } |
| 9855 | } |
| 9856 | kobject_del(&space_info->kobj); |
| 9857 | kobject_put(&space_info->kobj); |
Chris Mason | 4184ea7 | 2009-03-10 12:39:20 -0400 | [diff] [blame] | 9858 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 9859 | return 0; |
| 9860 | } |
| 9861 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9862 | static void __link_block_group(struct btrfs_space_info *space_info, |
| 9863 | struct btrfs_block_group_cache *cache) |
| 9864 | { |
| 9865 | int index = get_block_group_index(cache); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9866 | bool first = false; |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9867 | |
| 9868 | down_write(&space_info->groups_sem); |
Jeff Mahoney | ed55b6a | 2014-03-26 14:11:26 -0400 | [diff] [blame] | 9869 | if (list_empty(&space_info->block_groups[index])) |
| 9870 | first = true; |
| 9871 | list_add_tail(&cache->list, &space_info->block_groups[index]); |
| 9872 | up_write(&space_info->groups_sem); |
| 9873 | |
| 9874 | if (first) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9875 | struct raid_kobject *rkobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9876 | int ret; |
| 9877 | |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9878 | rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS); |
| 9879 | if (!rkobj) |
| 9880 | goto out_err; |
| 9881 | rkobj->raid_type = index; |
| 9882 | kobject_init(&rkobj->kobj, &btrfs_raid_ktype); |
| 9883 | ret = kobject_add(&rkobj->kobj, &space_info->kobj, |
| 9884 | "%s", get_raid_name(index)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9885 | if (ret) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9886 | kobject_put(&rkobj->kobj); |
| 9887 | goto out_err; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9888 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9889 | space_info->block_group_kobjs[index] = &rkobj->kobj; |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 9890 | } |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 9891 | |
| 9892 | return; |
| 9893 | out_err: |
Jeff Mahoney | ab8d0fc | 2016-09-20 10:05:02 -0400 | [diff] [blame] | 9894 | btrfs_warn(cache->fs_info, |
| 9895 | "failed to add kobject for block cache, ignoring"); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9896 | } |
| 9897 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9898 | static struct btrfs_block_group_cache * |
| 9899 | btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size) |
| 9900 | { |
| 9901 | struct btrfs_block_group_cache *cache; |
| 9902 | |
| 9903 | cache = kzalloc(sizeof(*cache), GFP_NOFS); |
| 9904 | if (!cache) |
| 9905 | return NULL; |
| 9906 | |
| 9907 | cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl), |
| 9908 | GFP_NOFS); |
| 9909 | if (!cache->free_space_ctl) { |
| 9910 | kfree(cache); |
| 9911 | return NULL; |
| 9912 | } |
| 9913 | |
| 9914 | cache->key.objectid = start; |
| 9915 | cache->key.offset = size; |
| 9916 | cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
| 9917 | |
Jeff Mahoney | da17066 | 2016-06-15 09:22:56 -0400 | [diff] [blame] | 9918 | cache->sectorsize = root->fs_info->sectorsize; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9919 | cache->fs_info = root->fs_info; |
| 9920 | cache->full_stripe_len = btrfs_full_stripe_len(root, |
| 9921 | &root->fs_info->mapping_tree, |
| 9922 | start); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 9923 | set_free_space_tree_thresholds(cache); |
| 9924 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9925 | atomic_set(&cache->count, 1); |
| 9926 | spin_lock_init(&cache->lock); |
Miao Xie | e570fd2 | 2014-06-19 10:42:50 +0800 | [diff] [blame] | 9927 | init_rwsem(&cache->data_rwsem); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9928 | INIT_LIST_HEAD(&cache->list); |
| 9929 | INIT_LIST_HEAD(&cache->cluster_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 9930 | INIT_LIST_HEAD(&cache->bg_list); |
Josef Bacik | 633c0aa | 2014-10-31 09:49:34 -0400 | [diff] [blame] | 9931 | INIT_LIST_HEAD(&cache->ro_list); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 9932 | INIT_LIST_HEAD(&cache->dirty_list); |
Chris Mason | c9dc4c6 | 2015-04-04 17:14:42 -0700 | [diff] [blame] | 9933 | INIT_LIST_HEAD(&cache->io_list); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9934 | btrfs_init_free_space_ctl(cache); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 9935 | atomic_set(&cache->trimming, 0); |
Omar Sandoval | a5ed918 | 2015-09-29 20:50:35 -0700 | [diff] [blame] | 9936 | mutex_init(&cache->free_space_lock); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9937 | |
| 9938 | return cache; |
| 9939 | } |
| 9940 | |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 9941 | int btrfs_read_block_groups(struct btrfs_fs_info *info) |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9942 | { |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 9943 | struct btrfs_root *root = info->extent_root; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9944 | struct btrfs_path *path; |
| 9945 | int ret; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9946 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 9947 | struct btrfs_space_info *space_info; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9948 | struct btrfs_key key; |
| 9949 | struct btrfs_key found_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9950 | struct extent_buffer *leaf; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9951 | int need_clear = 0; |
| 9952 | u64 cache_gen; |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 9953 | u64 feature; |
| 9954 | int mixed; |
| 9955 | |
| 9956 | feature = btrfs_super_incompat_flags(info->super_copy); |
| 9957 | mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS); |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 9958 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9959 | key.objectid = 0; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9960 | key.offset = 0; |
David Sterba | 962a298 | 2014-06-04 18:41:45 +0200 | [diff] [blame] | 9961 | key.type = BTRFS_BLOCK_GROUP_ITEM_KEY; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9962 | path = btrfs_alloc_path(); |
| 9963 | if (!path) |
| 9964 | return -ENOMEM; |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 9965 | path->reada = READA_FORWARD; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9966 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9967 | cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy); |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 9968 | if (btrfs_test_opt(root->fs_info, SPACE_CACHE) && |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 9969 | btrfs_super_generation(root->fs_info->super_copy) != cache_gen) |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9970 | need_clear = 1; |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 9971 | if (btrfs_test_opt(root->fs_info, CLEAR_CACHE)) |
Josef Bacik | 88c2ba3 | 2010-09-21 14:21:34 -0400 | [diff] [blame] | 9972 | need_clear = 1; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 9973 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 9974 | while (1) { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 9975 | ret = find_first_block_group(info, path, &key); |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 9976 | if (ret > 0) |
| 9977 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9978 | if (ret != 0) |
| 9979 | goto error; |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9980 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 9981 | leaf = path->nodes[0]; |
| 9982 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 9983 | |
| 9984 | cache = btrfs_create_block_group_cache(root, found_key.objectid, |
| 9985 | found_key.offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9986 | if (!cache) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 9987 | ret = -ENOMEM; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 9988 | goto error; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 9989 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 9990 | |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 9991 | if (need_clear) { |
| 9992 | /* |
| 9993 | * When we mount with old space cache, we need to |
| 9994 | * set BTRFS_DC_CLEAR and set dirty flag. |
| 9995 | * |
| 9996 | * a) Setting 'BTRFS_DC_CLEAR' makes sure that we |
| 9997 | * truncate the old free space cache inode and |
| 9998 | * setup a new one. |
| 9999 | * b) Setting 'dirty flag' makes sure that we flush |
| 10000 | * the new space cache info onto disk. |
| 10001 | */ |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 10002 | if (btrfs_test_opt(root->fs_info, SPACE_CACHE)) |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10003 | cache->disk_cache_state = BTRFS_DC_CLEAR; |
Liu Bo | cf7c1ef | 2012-07-06 03:31:34 -0600 | [diff] [blame] | 10004 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10005 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 10006 | read_extent_buffer(leaf, &cache->item, |
| 10007 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 10008 | sizeof(cache->item)); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10009 | cache->flags = btrfs_block_group_flags(&cache->item); |
Liu Bo | 4930338 | 2016-08-25 18:08:27 -0700 | [diff] [blame] | 10010 | if (!mixed && |
| 10011 | ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) && |
| 10012 | (cache->flags & BTRFS_BLOCK_GROUP_DATA))) { |
| 10013 | btrfs_err(info, |
| 10014 | "bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups", |
| 10015 | cache->key.objectid); |
| 10016 | ret = -EINVAL; |
| 10017 | goto error; |
| 10018 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 10019 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 10020 | key.objectid = found_key.objectid + found_key.offset; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10021 | btrfs_release_path(path); |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10022 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10023 | /* |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10024 | * We need to exclude the super stripes now so that the space |
| 10025 | * info has super bytes accounted for, otherwise we'll think |
| 10026 | * we have more space than we actually do. |
| 10027 | */ |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10028 | ret = exclude_super_stripes(root, cache); |
| 10029 | if (ret) { |
| 10030 | /* |
| 10031 | * We may have excluded something, so call this just in |
| 10032 | * case. |
| 10033 | */ |
| 10034 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10035 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10036 | goto error; |
| 10037 | } |
Josef Bacik | 3c14874 | 2011-02-02 15:53:47 +0000 | [diff] [blame] | 10038 | |
| 10039 | /* |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10040 | * check for two cases, either we are full, and therefore |
| 10041 | * don't need to bother with the caching work since we won't |
| 10042 | * find any space, or we are empty, and we can just add all |
| 10043 | * the space in and be done with it. This saves us _alot_ of |
| 10044 | * time, particularly in the full case. |
| 10045 | */ |
| 10046 | if (found_key.offset == btrfs_block_group_used(&cache->item)) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10047 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10048 | cache->cached = BTRFS_CACHE_FINISHED; |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10049 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10050 | } else if (btrfs_block_group_used(&cache->item) == 0) { |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10051 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10052 | cache->cached = BTRFS_CACHE_FINISHED; |
| 10053 | add_new_free_space(cache, root->fs_info, |
| 10054 | found_key.objectid, |
| 10055 | found_key.objectid + |
| 10056 | found_key.offset); |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10057 | free_excluded_extents(root, cache); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10058 | } |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 10059 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10060 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 10061 | if (ret) { |
| 10062 | btrfs_remove_free_space_cache(cache); |
| 10063 | btrfs_put_block_group(cache); |
| 10064 | goto error; |
| 10065 | } |
| 10066 | |
Josef Bacik | c83f8ef | 2016-03-25 13:25:52 -0400 | [diff] [blame] | 10067 | trace_btrfs_add_block_group(root->fs_info, cache, 0); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10068 | ret = update_space_info(info, cache->flags, found_key.offset, |
| 10069 | btrfs_block_group_used(&cache->item), |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10070 | cache->bytes_super, &space_info); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10071 | if (ret) { |
| 10072 | btrfs_remove_free_space_cache(cache); |
| 10073 | spin_lock(&info->block_group_cache_lock); |
| 10074 | rb_erase(&cache->cache_node, |
| 10075 | &info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10076 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10077 | spin_unlock(&info->block_group_cache_lock); |
| 10078 | btrfs_put_block_group(cache); |
| 10079 | goto error; |
| 10080 | } |
| 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 | |
Chris Mason | 75ccf47 | 2008-09-30 19:24:06 -0400 | [diff] [blame] | 10086 | set_avail_alloc_bits(root->fs_info, cache->flags); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10087 | if (btrfs_chunk_readonly(root, 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 | |
| 10101 | list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) { |
| 10102 | if (!(get_alloc_profile(root, space_info->flags) & |
| 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, |
| 10131 | struct btrfs_root *root) |
| 10132 | { |
| 10133 | struct btrfs_block_group_cache *block_group, *tmp; |
| 10134 | struct btrfs_root *extent_root = root->fs_info->extent_root; |
| 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 | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10154 | ret = btrfs_finish_chunk_alloc(trans, extent_root->fs_info, |
Josef Bacik | 6df9a95 | 2013-06-27 13:22:46 -0400 | [diff] [blame] | 10155 | key.objectid, key.offset); |
| 10156 | if (ret) |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 10157 | btrfs_abort_transaction(trans, ret); |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10158 | add_block_group_free_space(trans, root->fs_info, block_group); |
| 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, |
| 10167 | struct btrfs_root *root, 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 | { |
| 10171 | int ret; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10172 | struct btrfs_root *extent_root; |
| 10173 | struct btrfs_block_group_cache *cache; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10174 | extent_root = root->fs_info->extent_root; |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10175 | |
Miao Xie | 995946d | 2014-04-02 19:51:06 +0800 | [diff] [blame] | 10176 | btrfs_set_log_full_commit(root->fs_info, trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 10177 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10178 | cache = btrfs_create_block_group_cache(root, chunk_offset, size); |
Josef Bacik | 0f9dd46 | 2008-09-23 13:14:11 -0400 | [diff] [blame] | 10179 | if (!cache) |
| 10180 | return -ENOMEM; |
Li Zefan | 34d52cb | 2011-03-29 13:46:06 +0800 | [diff] [blame] | 10181 | |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10182 | btrfs_set_block_group_used(&cache->item, bytes_used); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10183 | btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10184 | btrfs_set_block_group_flags(&cache->item, type); |
| 10185 | |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10186 | cache->flags = type; |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10187 | cache->last_byte_to_unpin = (u64)-1; |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10188 | cache->cached = BTRFS_CACHE_FINISHED; |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10189 | cache->needs_free_space = 1; |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10190 | ret = exclude_super_stripes(root, cache); |
| 10191 | if (ret) { |
| 10192 | /* |
| 10193 | * We may have excluded something, so call this just in |
| 10194 | * case. |
| 10195 | */ |
| 10196 | free_excluded_extents(root, cache); |
Miao Xie | 920e4a5 | 2014-01-15 20:00:55 +0800 | [diff] [blame] | 10197 | btrfs_put_block_group(cache); |
Josef Bacik | 835d974 | 2013-03-19 12:13:25 -0400 | [diff] [blame] | 10198 | return ret; |
| 10199 | } |
Josef Bacik | 9630308 | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10200 | |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10201 | add_new_free_space(cache, root->fs_info, chunk_offset, |
| 10202 | chunk_offset + size); |
| 10203 | |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10204 | free_excluded_extents(root, cache); |
| 10205 | |
Josef Bacik | d0bd456 | 2015-09-23 14:54:14 -0400 | [diff] [blame] | 10206 | #ifdef CONFIG_BTRFS_DEBUG |
| 10207 | if (btrfs_should_fragment_free_space(root, cache)) { |
| 10208 | u64 new_bytes_used = size - bytes_used; |
| 10209 | |
| 10210 | bytes_used += new_bytes_used >> 1; |
| 10211 | fragment_free_space(root, cache); |
| 10212 | } |
| 10213 | #endif |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10214 | /* |
| 10215 | * Call to ensure the corresponding space_info object is created and |
| 10216 | * assigned to our block group, but don't update its counters just yet. |
| 10217 | * We want our bg to be added to the rbtree with its ->space_info set. |
| 10218 | */ |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10219 | ret = update_space_info(root->fs_info, cache->flags, 0, 0, 0, |
Filipe Manana | 2e6e518 | 2015-05-12 00:28:11 +0100 | [diff] [blame] | 10220 | &cache->space_info); |
| 10221 | if (ret) { |
| 10222 | btrfs_remove_free_space_cache(cache); |
| 10223 | btrfs_put_block_group(cache); |
| 10224 | return ret; |
| 10225 | } |
| 10226 | |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10227 | ret = btrfs_add_block_group_cache(root->fs_info, cache); |
| 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 | */ |
Josef Bacik | c83f8ef | 2016-03-25 13:25:52 -0400 | [diff] [blame] | 10238 | trace_btrfs_add_block_group(root->fs_info, cache, 1); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10239 | ret = update_space_info(root->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); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10241 | if (ret) { |
| 10242 | btrfs_remove_free_space_cache(cache); |
| 10243 | spin_lock(&root->fs_info->block_group_cache_lock); |
| 10244 | rb_erase(&cache->cache_node, |
| 10245 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 01eacb2 | 2014-12-04 18:38:30 +0000 | [diff] [blame] | 10246 | RB_CLEAR_NODE(&cache->cache_node); |
Josef Bacik | 8c579fe | 2013-04-02 12:40:42 -0400 | [diff] [blame] | 10247 | spin_unlock(&root->fs_info->block_group_cache_lock); |
| 10248 | btrfs_put_block_group(cache); |
| 10249 | return ret; |
| 10250 | } |
Li Zefan | c7c144d | 2011-12-07 10:39:22 +0800 | [diff] [blame] | 10251 | update_global_block_rsv(root->fs_info); |
Josef Bacik | 1b2da37 | 2009-09-11 16:11:20 -0400 | [diff] [blame] | 10252 | |
Yan, Zheng | b742bb8 | 2010-05-16 10:46:24 -0400 | [diff] [blame] | 10253 | __link_block_group(cache->space_info, cache); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10254 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10255 | list_add_tail(&cache->bg_list, &trans->new_bgs); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10256 | |
Chris Mason | d18a2c4 | 2008-04-04 15:40:00 -0400 | [diff] [blame] | 10257 | set_avail_alloc_bits(extent_root->fs_info, type); |
Chris Mason | 6324fbf | 2008-03-24 15:01:59 -0400 | [diff] [blame] | 10258 | return 0; |
| 10259 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10260 | |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10261 | static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags) |
| 10262 | { |
Ilya Dryomov | 899c81e | 2012-03-27 17:09:16 +0300 | [diff] [blame] | 10263 | u64 extra_flags = chunk_to_extended(flags) & |
| 10264 | BTRFS_EXTENDED_PROFILE_MASK; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10265 | |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10266 | write_seqlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10267 | if (flags & BTRFS_BLOCK_GROUP_DATA) |
| 10268 | fs_info->avail_data_alloc_bits &= ~extra_flags; |
| 10269 | if (flags & BTRFS_BLOCK_GROUP_METADATA) |
| 10270 | fs_info->avail_metadata_alloc_bits &= ~extra_flags; |
| 10271 | if (flags & BTRFS_BLOCK_GROUP_SYSTEM) |
| 10272 | fs_info->avail_system_alloc_bits &= ~extra_flags; |
Miao Xie | de98ced | 2013-01-29 10:13:12 +0000 | [diff] [blame] | 10273 | write_sequnlock(&fs_info->profiles_lock); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10274 | } |
| 10275 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10276 | int btrfs_remove_block_group(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10277 | struct btrfs_fs_info *fs_info, u64 group_start, |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10278 | struct extent_map *em) |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10279 | { |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10280 | struct btrfs_root *root = fs_info->extent_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10281 | struct btrfs_path *path; |
| 10282 | struct btrfs_block_group_cache *block_group; |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10283 | struct btrfs_free_cluster *cluster; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10284 | struct btrfs_root *tree_root = root->fs_info->tree_root; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10285 | struct btrfs_key key; |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10286 | struct inode *inode; |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10287 | struct kobject *kobj = NULL; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10288 | int ret; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10289 | int index; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10290 | int factor; |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10291 | struct btrfs_caching_control *caching_ctl = NULL; |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10292 | bool remove_em; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10293 | |
Jeff Mahoney | 6bccf3a | 2016-06-21 21:16:51 -0400 | [diff] [blame] | 10294 | block_group = btrfs_lookup_block_group(fs_info, group_start); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10295 | BUG_ON(!block_group); |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10296 | BUG_ON(!block_group->ro); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10297 | |
liubo | 9f7c43c | 2011-03-07 02:13:33 +0000 | [diff] [blame] | 10298 | /* |
| 10299 | * Free the reserved super bytes from this block group before |
| 10300 | * remove it. |
| 10301 | */ |
| 10302 | free_excluded_extents(root, block_group); |
| 10303 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10304 | memcpy(&key, &block_group->key, sizeof(key)); |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10305 | index = get_block_group_index(block_group); |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10306 | if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP | |
| 10307 | BTRFS_BLOCK_GROUP_RAID1 | |
| 10308 | BTRFS_BLOCK_GROUP_RAID10)) |
| 10309 | factor = 2; |
| 10310 | else |
| 10311 | factor = 1; |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10312 | |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10313 | /* make sure this block group isn't part of an allocation cluster */ |
| 10314 | cluster = &root->fs_info->data_alloc_cluster; |
| 10315 | spin_lock(&cluster->refill_lock); |
| 10316 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10317 | spin_unlock(&cluster->refill_lock); |
| 10318 | |
| 10319 | /* |
| 10320 | * make sure this block group isn't part of a metadata |
| 10321 | * allocation cluster |
| 10322 | */ |
| 10323 | cluster = &root->fs_info->meta_alloc_cluster; |
| 10324 | spin_lock(&cluster->refill_lock); |
| 10325 | btrfs_return_cluster_to_free_space(block_group, cluster); |
| 10326 | spin_unlock(&cluster->refill_lock); |
| 10327 | |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10328 | path = btrfs_alloc_path(); |
Mark Fasheh | d8926bb | 2011-07-13 10:38:47 -0700 | [diff] [blame] | 10329 | if (!path) { |
| 10330 | ret = -ENOMEM; |
| 10331 | goto out; |
| 10332 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10333 | |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10334 | /* |
| 10335 | * get the inode first so any iput calls done for the io_list |
| 10336 | * aren't the final iput (no unlinks allowed now) |
| 10337 | */ |
Ilya Dryomov | 10b2f34 | 2011-10-02 13:56:53 +0300 | [diff] [blame] | 10338 | inode = lookup_free_space_inode(tree_root, block_group, path); |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10339 | |
| 10340 | mutex_lock(&trans->transaction->cache_write_mutex); |
| 10341 | /* |
| 10342 | * make sure our free spache cache IO is done before remove the |
| 10343 | * free space inode |
| 10344 | */ |
| 10345 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10346 | if (!list_empty(&block_group->io_list)) { |
| 10347 | list_del_init(&block_group->io_list); |
| 10348 | |
| 10349 | WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode); |
| 10350 | |
| 10351 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 10352 | btrfs_wait_cache_io(root, trans, block_group, |
| 10353 | &block_group->io_ctl, path, |
| 10354 | block_group->key.objectid); |
| 10355 | btrfs_put_block_group(block_group); |
| 10356 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10357 | } |
| 10358 | |
| 10359 | if (!list_empty(&block_group->dirty_list)) { |
| 10360 | list_del_init(&block_group->dirty_list); |
| 10361 | btrfs_put_block_group(block_group); |
| 10362 | } |
| 10363 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
| 10364 | mutex_unlock(&trans->transaction->cache_write_mutex); |
| 10365 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10366 | if (!IS_ERR(inode)) { |
Tsutomu Itoh | b532402 | 2011-07-19 07:27:20 +0000 | [diff] [blame] | 10367 | ret = btrfs_orphan_add(trans, inode); |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 10368 | if (ret) { |
| 10369 | btrfs_add_delayed_iput(inode); |
| 10370 | goto out; |
| 10371 | } |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10372 | clear_nlink(inode); |
| 10373 | /* One for the block groups ref */ |
| 10374 | spin_lock(&block_group->lock); |
| 10375 | if (block_group->iref) { |
| 10376 | block_group->iref = 0; |
| 10377 | block_group->inode = NULL; |
| 10378 | spin_unlock(&block_group->lock); |
| 10379 | iput(inode); |
| 10380 | } else { |
| 10381 | spin_unlock(&block_group->lock); |
| 10382 | } |
| 10383 | /* One for our lookup ref */ |
Josef Bacik | 455757c | 2011-09-19 12:26:24 -0400 | [diff] [blame] | 10384 | btrfs_add_delayed_iput(inode); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10385 | } |
| 10386 | |
| 10387 | key.objectid = BTRFS_FREE_SPACE_OBJECTID; |
| 10388 | key.offset = block_group->key.objectid; |
| 10389 | key.type = 0; |
| 10390 | |
| 10391 | ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); |
| 10392 | if (ret < 0) |
| 10393 | goto out; |
| 10394 | if (ret > 0) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10395 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10396 | if (ret == 0) { |
| 10397 | ret = btrfs_del_item(trans, tree_root, path); |
| 10398 | if (ret) |
| 10399 | goto out; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 10400 | btrfs_release_path(path); |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10401 | } |
| 10402 | |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 10403 | spin_lock(&root->fs_info->block_group_cache_lock); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10404 | rb_erase(&block_group->cache_node, |
| 10405 | &root->fs_info->block_group_cache_tree); |
Filipe Manana | 292cbd5 | 2014-11-26 15:28:50 +0000 | [diff] [blame] | 10406 | RB_CLEAR_NODE(&block_group->cache_node); |
Liu Bo | a1897fd | 2012-12-27 09:01:23 +0000 | [diff] [blame] | 10407 | |
| 10408 | if (root->fs_info->first_logical_byte == block_group->key.objectid) |
| 10409 | root->fs_info->first_logical_byte = (u64)-1; |
Yan Zheng | 3dfdb93 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 10410 | spin_unlock(&root->fs_info->block_group_cache_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10411 | |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10412 | down_write(&block_group->space_info->groups_sem); |
Chris Mason | 44fb551 | 2009-06-04 15:34:51 -0400 | [diff] [blame] | 10413 | /* |
| 10414 | * we must use list_del_init so people can check to see if they |
| 10415 | * are still on the list after taking the semaphore |
| 10416 | */ |
| 10417 | list_del_init(&block_group->list); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10418 | if (list_empty(&block_group->space_info->block_groups[index])) { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10419 | kobj = block_group->space_info->block_group_kobjs[index]; |
| 10420 | block_group->space_info->block_group_kobjs[index] = NULL; |
Ilya Dryomov | 10ea00f | 2012-01-16 22:04:47 +0200 | [diff] [blame] | 10421 | clear_avail_alloc_bits(root->fs_info, block_group->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 10422 | } |
Josef Bacik | 80eb234 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 10423 | up_write(&block_group->space_info->groups_sem); |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 10424 | if (kobj) { |
| 10425 | kobject_del(kobj); |
| 10426 | kobject_put(kobj); |
| 10427 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10428 | |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10429 | if (block_group->has_caching_ctl) |
| 10430 | caching_ctl = get_caching_control(block_group); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10431 | if (block_group->cached == BTRFS_CACHE_STARTED) |
Yan Zheng | 11833d6 | 2009-09-11 16:11:19 -0400 | [diff] [blame] | 10432 | wait_block_group_cache_done(block_group); |
Filipe Manana | 4f69cb9 | 2014-11-26 15:28:51 +0000 | [diff] [blame] | 10433 | if (block_group->has_caching_ctl) { |
| 10434 | down_write(&root->fs_info->commit_root_sem); |
| 10435 | if (!caching_ctl) { |
| 10436 | struct btrfs_caching_control *ctl; |
| 10437 | |
| 10438 | list_for_each_entry(ctl, |
| 10439 | &root->fs_info->caching_block_groups, list) |
| 10440 | if (ctl->block_group == block_group) { |
| 10441 | caching_ctl = ctl; |
| 10442 | atomic_inc(&caching_ctl->count); |
| 10443 | break; |
| 10444 | } |
| 10445 | } |
| 10446 | if (caching_ctl) |
| 10447 | list_del_init(&caching_ctl->list); |
| 10448 | up_write(&root->fs_info->commit_root_sem); |
| 10449 | if (caching_ctl) { |
| 10450 | /* Once for the caching bgs list and once for us. */ |
| 10451 | put_caching_control(caching_ctl); |
| 10452 | put_caching_control(caching_ctl); |
| 10453 | } |
| 10454 | } |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10455 | |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10456 | spin_lock(&trans->transaction->dirty_bgs_lock); |
| 10457 | if (!list_empty(&block_group->dirty_list)) { |
Chris Mason | 1bbc621 | 2015-04-06 12:46:08 -0700 | [diff] [blame] | 10458 | WARN_ON(1); |
| 10459 | } |
| 10460 | if (!list_empty(&block_group->io_list)) { |
| 10461 | WARN_ON(1); |
Josef Bacik | ce93ec5 | 2014-11-17 15:45:48 -0500 | [diff] [blame] | 10462 | } |
| 10463 | spin_unlock(&trans->transaction->dirty_bgs_lock); |
Josef Bacik | 817d52f | 2009-07-13 21:29:25 -0400 | [diff] [blame] | 10464 | btrfs_remove_free_space_cache(block_group); |
| 10465 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10466 | spin_lock(&block_group->space_info->lock); |
Filipe Manana | 75c68e9 | 2015-01-16 13:24:40 +0000 | [diff] [blame] | 10467 | list_del_init(&block_group->ro_list); |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10468 | |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 10469 | if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) { |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10470 | WARN_ON(block_group->space_info->total_bytes |
| 10471 | < block_group->key.offset); |
| 10472 | WARN_ON(block_group->space_info->bytes_readonly |
| 10473 | < block_group->key.offset); |
| 10474 | WARN_ON(block_group->space_info->disk_total |
| 10475 | < block_group->key.offset * factor); |
| 10476 | } |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10477 | block_group->space_info->total_bytes -= block_group->key.offset; |
| 10478 | block_group->space_info->bytes_readonly -= block_group->key.offset; |
Josef Bacik | 89a5589 | 2010-10-14 14:52:27 -0400 | [diff] [blame] | 10479 | block_group->space_info->disk_total -= block_group->key.offset * factor; |
Zhao Lei | 18d018a | 2015-02-24 20:07:44 +0800 | [diff] [blame] | 10480 | |
Yan Zheng | c146afa | 2008-11-12 14:34:12 -0500 | [diff] [blame] | 10481 | spin_unlock(&block_group->space_info->lock); |
Chris Mason | 283bb19 | 2009-07-24 16:30:55 -0400 | [diff] [blame] | 10482 | |
Josef Bacik | 0af3d00 | 2010-06-21 14:48:16 -0400 | [diff] [blame] | 10483 | memcpy(&key, &block_group->key, sizeof(key)); |
| 10484 | |
Jeff Mahoney | 3796d33 | 2016-06-16 11:30:29 -0400 | [diff] [blame] | 10485 | lock_chunks(root->fs_info); |
Filipe Manana | 495e64f | 2014-12-02 18:07:30 +0000 | [diff] [blame] | 10486 | if (!list_empty(&em->list)) { |
| 10487 | /* We're in the transaction->pending_chunks list. */ |
| 10488 | free_extent_map(em); |
| 10489 | } |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10490 | spin_lock(&block_group->lock); |
| 10491 | block_group->removed = 1; |
| 10492 | /* |
| 10493 | * At this point trimming can't start on this block group, because we |
| 10494 | * removed the block group from the tree fs_info->block_group_cache_tree |
| 10495 | * so no one can't find it anymore and even if someone already got this |
| 10496 | * block group before we removed it from the rbtree, they have already |
| 10497 | * incremented block_group->trimming - if they didn't, they won't find |
| 10498 | * any free space entries because we already removed them all when we |
| 10499 | * called btrfs_remove_free_space_cache(). |
| 10500 | * |
| 10501 | * And we must not remove the extent map from the fs_info->mapping_tree |
| 10502 | * to prevent the same logical address range and physical device space |
| 10503 | * ranges from being reused for a new block group. This is because our |
| 10504 | * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is |
| 10505 | * completely transactionless, so while it is trimming a range the |
| 10506 | * currently running transaction might finish and a new one start, |
| 10507 | * allowing for new block groups to be created that can reuse the same |
| 10508 | * physical device locations unless we take this special care. |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10509 | * |
| 10510 | * There may also be an implicit trim operation if the file system |
| 10511 | * is mounted with -odiscard. The same protections must remain |
| 10512 | * in place until the extents have been discarded completely when |
| 10513 | * the transaction commit has completed. |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10514 | */ |
| 10515 | remove_em = (atomic_read(&block_group->trimming) == 0); |
| 10516 | /* |
| 10517 | * Make sure a trimmer task always sees the em in the pinned_chunks list |
| 10518 | * if it sees block_group->removed == 1 (needs to lock block_group->lock |
| 10519 | * before checking block_group->removed). |
| 10520 | */ |
| 10521 | if (!remove_em) { |
| 10522 | /* |
| 10523 | * Our em might be in trans->transaction->pending_chunks which |
| 10524 | * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks), |
| 10525 | * and so is the fs_info->pinned_chunks list. |
| 10526 | * |
| 10527 | * So at this point we must be holding the chunk_mutex to avoid |
| 10528 | * any races with chunk allocation (more specifically at |
| 10529 | * volumes.c:contains_pending_extent()), to ensure it always |
| 10530 | * sees the em, either in the pending_chunks list or in the |
| 10531 | * pinned_chunks list. |
| 10532 | */ |
| 10533 | list_move_tail(&em->list, &root->fs_info->pinned_chunks); |
| 10534 | } |
| 10535 | spin_unlock(&block_group->lock); |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10536 | |
| 10537 | if (remove_em) { |
| 10538 | struct extent_map_tree *em_tree; |
| 10539 | |
| 10540 | em_tree = &root->fs_info->mapping_tree.map_tree; |
| 10541 | write_lock(&em_tree->lock); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10542 | /* |
| 10543 | * The em might be in the pending_chunks list, so make sure the |
| 10544 | * chunk mutex is locked, since remove_extent_mapping() will |
| 10545 | * delete us from that list. |
| 10546 | */ |
Filipe Manana | 0421682 | 2014-11-27 21:14:15 +0000 | [diff] [blame] | 10547 | remove_extent_mapping(em_tree, em); |
| 10548 | write_unlock(&em_tree->lock); |
| 10549 | /* once for the tree */ |
| 10550 | free_extent_map(em); |
| 10551 | } |
| 10552 | |
Jeff Mahoney | 3796d33 | 2016-06-16 11:30:29 -0400 | [diff] [blame] | 10553 | unlock_chunks(root->fs_info); |
Filipe Manana | 8dbcd10 | 2014-12-02 18:07:49 +0000 | [diff] [blame] | 10554 | |
Omar Sandoval | 1e144fb | 2015-09-29 20:50:37 -0700 | [diff] [blame] | 10555 | ret = remove_block_group_free_space(trans, root->fs_info, block_group); |
| 10556 | if (ret) |
| 10557 | goto out; |
| 10558 | |
Chris Mason | fa9c0d79 | 2009-04-03 09:47:43 -0400 | [diff] [blame] | 10559 | btrfs_put_block_group(block_group); |
| 10560 | btrfs_put_block_group(block_group); |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 10561 | |
| 10562 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
| 10563 | if (ret > 0) |
| 10564 | ret = -EIO; |
| 10565 | if (ret < 0) |
| 10566 | goto out; |
| 10567 | |
| 10568 | ret = btrfs_del_item(trans, root, path); |
| 10569 | out: |
| 10570 | btrfs_free_path(path); |
| 10571 | return ret; |
| 10572 | } |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10573 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10574 | struct btrfs_trans_handle * |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10575 | btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info, |
| 10576 | const u64 chunk_offset) |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10577 | { |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10578 | struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree; |
| 10579 | struct extent_map *em; |
| 10580 | struct map_lookup *map; |
| 10581 | unsigned int num_items; |
| 10582 | |
| 10583 | read_lock(&em_tree->lock); |
| 10584 | em = lookup_extent_mapping(em_tree, chunk_offset, 1); |
| 10585 | read_unlock(&em_tree->lock); |
| 10586 | ASSERT(em && em->start == chunk_offset); |
| 10587 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10588 | /* |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10589 | * We need to reserve 3 + N units from the metadata space info in order |
| 10590 | * to remove a block group (done at btrfs_remove_chunk() and at |
| 10591 | * btrfs_remove_block_group()), which are used for: |
| 10592 | * |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10593 | * 1 unit for adding the free space inode's orphan (located in the tree |
| 10594 | * of tree roots). |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10595 | * 1 unit for deleting the block group item (located in the extent |
| 10596 | * tree). |
| 10597 | * 1 unit for deleting the free space item (located in tree of tree |
| 10598 | * roots). |
| 10599 | * N units for deleting N device extent items corresponding to each |
| 10600 | * stripe (located in the device tree). |
| 10601 | * |
| 10602 | * In order to remove a block group we also need to reserve units in the |
| 10603 | * system space info in order to update the chunk tree (update one or |
| 10604 | * more device items and remove one chunk item), but this is done at |
| 10605 | * btrfs_remove_chunk() through a call to check_system_chunk(). |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10606 | */ |
Jeff Mahoney | 95617d6 | 2015-06-03 10:55:48 -0400 | [diff] [blame] | 10607 | map = em->map_lookup; |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10608 | num_items = 3 + map->num_stripes; |
| 10609 | free_extent_map(em); |
| 10610 | |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10611 | return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root, |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10612 | num_items, 1); |
Filipe Manana | 8eab77f | 2015-11-13 23:57:16 +0000 | [diff] [blame] | 10613 | } |
| 10614 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10615 | /* |
| 10616 | * Process the unused_bgs list and remove any that don't have any allocated |
| 10617 | * space inside of them. |
| 10618 | */ |
| 10619 | void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info) |
| 10620 | { |
| 10621 | struct btrfs_block_group_cache *block_group; |
| 10622 | struct btrfs_space_info *space_info; |
| 10623 | struct btrfs_root *root = fs_info->extent_root; |
| 10624 | struct btrfs_trans_handle *trans; |
| 10625 | int ret = 0; |
| 10626 | |
Josef Bacik | afcdd12 | 2016-09-02 15:40:02 -0400 | [diff] [blame] | 10627 | if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags)) |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10628 | return; |
| 10629 | |
| 10630 | spin_lock(&fs_info->unused_bgs_lock); |
| 10631 | while (!list_empty(&fs_info->unused_bgs)) { |
| 10632 | u64 start, end; |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10633 | int trimming; |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10634 | |
| 10635 | block_group = list_first_entry(&fs_info->unused_bgs, |
| 10636 | struct btrfs_block_group_cache, |
| 10637 | bg_list); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10638 | list_del_init(&block_group->bg_list); |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10639 | |
| 10640 | space_info = block_group->space_info; |
| 10641 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10642 | if (ret || btrfs_mixed_space_info(space_info)) { |
| 10643 | btrfs_put_block_group(block_group); |
| 10644 | continue; |
| 10645 | } |
| 10646 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10647 | |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10648 | mutex_lock(&fs_info->delete_unused_bgs_mutex); |
Filipe Manana | 67c5e7d | 2015-06-11 00:58:53 +0100 | [diff] [blame] | 10649 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10650 | /* Don't want to race with allocators so take the groups_sem */ |
| 10651 | down_write(&space_info->groups_sem); |
| 10652 | spin_lock(&block_group->lock); |
| 10653 | if (block_group->reserved || |
| 10654 | btrfs_block_group_used(&block_group->item) || |
Chris Mason | 19c4d2f | 2016-10-10 13:43:31 -0700 | [diff] [blame] | 10655 | block_group->ro || |
Zhao Lei | aefbe9a | 2015-09-29 21:03:54 +0800 | [diff] [blame] | 10656 | list_is_singular(&block_group->list)) { |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10657 | /* |
| 10658 | * We want to bail if we made new allocations or have |
| 10659 | * outstanding allocations in this block group. We do |
| 10660 | * the ro check in case balance is currently acting on |
| 10661 | * this block group. |
| 10662 | */ |
| 10663 | spin_unlock(&block_group->lock); |
| 10664 | up_write(&space_info->groups_sem); |
| 10665 | goto next; |
| 10666 | } |
| 10667 | spin_unlock(&block_group->lock); |
| 10668 | |
| 10669 | /* 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] | 10670 | ret = inc_block_group_ro(block_group, 0); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10671 | up_write(&space_info->groups_sem); |
| 10672 | if (ret < 0) { |
| 10673 | ret = 0; |
| 10674 | goto next; |
| 10675 | } |
| 10676 | |
| 10677 | /* |
| 10678 | * Want to do this before we do anything else so we can recover |
| 10679 | * properly if we fail to join the transaction. |
| 10680 | */ |
Filipe Manana | 7fd0118 | 2015-11-13 23:57:17 +0000 | [diff] [blame] | 10681 | trans = btrfs_start_trans_remove_block_group(fs_info, |
| 10682 | block_group->key.objectid); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10683 | if (IS_ERR(trans)) { |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10684 | btrfs_dec_block_group_ro(root, block_group); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10685 | ret = PTR_ERR(trans); |
| 10686 | goto next; |
| 10687 | } |
| 10688 | |
| 10689 | /* |
| 10690 | * We could have pending pinned extents for this block group, |
| 10691 | * just delete them, we don't care about them anymore. |
| 10692 | */ |
| 10693 | start = block_group->key.objectid; |
| 10694 | end = start + block_group->key.offset - 1; |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10695 | /* |
| 10696 | * Hold the unused_bg_unpin_mutex lock to avoid racing with |
| 10697 | * btrfs_finish_extent_commit(). If we are at transaction N, |
| 10698 | * another task might be running finish_extent_commit() for the |
| 10699 | * previous transaction N - 1, and have seen a range belonging |
| 10700 | * to the block group in freed_extents[] before we were able to |
| 10701 | * clear the whole block group range from freed_extents[]. This |
| 10702 | * means that task can lookup for the block group after we |
| 10703 | * unpinned it from freed_extents[] and removed it, leading to |
| 10704 | * a BUG_ON() at btrfs_unpin_extent_range(). |
| 10705 | */ |
| 10706 | mutex_lock(&fs_info->unused_bg_unpin_mutex); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10707 | ret = clear_extent_bits(&fs_info->freed_extents[0], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10708 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10709 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10710 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10711 | btrfs_dec_block_group_ro(root, block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10712 | goto end_trans; |
| 10713 | } |
| 10714 | ret = clear_extent_bits(&fs_info->freed_extents[1], start, end, |
David Sterba | 9116621 | 2016-04-26 23:54:39 +0200 | [diff] [blame] | 10715 | EXTENT_DIRTY); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10716 | if (ret) { |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10717 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Zhaolei | 868f401 | 2015-08-05 16:43:27 +0800 | [diff] [blame] | 10718 | btrfs_dec_block_group_ro(root, block_group); |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10719 | goto end_trans; |
| 10720 | } |
Filipe Manana | d4b450c | 2015-01-29 19:18:25 +0000 | [diff] [blame] | 10721 | mutex_unlock(&fs_info->unused_bg_unpin_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10722 | |
| 10723 | /* Reset pinned so btrfs_put_block_group doesn't complain */ |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10724 | spin_lock(&space_info->lock); |
| 10725 | spin_lock(&block_group->lock); |
| 10726 | |
| 10727 | space_info->bytes_pinned -= block_group->pinned; |
| 10728 | space_info->bytes_readonly += block_group->pinned; |
| 10729 | percpu_counter_add(&space_info->total_bytes_pinned, |
| 10730 | -block_group->pinned); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10731 | block_group->pinned = 0; |
| 10732 | |
Zhao Lei | c30666d | 2015-02-25 14:17:20 +0800 | [diff] [blame] | 10733 | spin_unlock(&block_group->lock); |
| 10734 | spin_unlock(&space_info->lock); |
| 10735 | |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10736 | /* DISCARD can flip during remount */ |
Jeff Mahoney | 3cdde22 | 2016-06-09 21:38:35 -0400 | [diff] [blame] | 10737 | trimming = btrfs_test_opt(root->fs_info, DISCARD); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10738 | |
| 10739 | /* Implicit trim during transaction commit. */ |
| 10740 | if (trimming) |
| 10741 | btrfs_get_block_group_trimming(block_group); |
| 10742 | |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10743 | /* |
| 10744 | * Btrfs_remove_chunk will abort the transaction if things go |
| 10745 | * horribly wrong. |
| 10746 | */ |
Jeff Mahoney | 5b4aace | 2016-06-21 10:40:19 -0400 | [diff] [blame] | 10747 | ret = btrfs_remove_chunk(trans, fs_info, |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10748 | block_group->key.objectid); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10749 | |
| 10750 | if (ret) { |
| 10751 | if (trimming) |
| 10752 | btrfs_put_block_group_trimming(block_group); |
| 10753 | goto end_trans; |
| 10754 | } |
| 10755 | |
| 10756 | /* |
| 10757 | * If we're not mounted with -odiscard, we can just forget |
| 10758 | * about this block group. Otherwise we'll need to wait |
| 10759 | * until transaction commit to do the actual discard. |
| 10760 | */ |
| 10761 | if (trimming) { |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10762 | spin_lock(&fs_info->unused_bgs_lock); |
| 10763 | /* |
| 10764 | * A concurrent scrub might have added us to the list |
| 10765 | * fs_info->unused_bgs, so use a list_move operation |
| 10766 | * to add the block group to the deleted_bgs list. |
| 10767 | */ |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10768 | list_move(&block_group->bg_list, |
| 10769 | &trans->transaction->deleted_bgs); |
Filipe Manana | 348a001 | 2015-11-27 12:16:16 +0000 | [diff] [blame] | 10770 | spin_unlock(&fs_info->unused_bgs_lock); |
Jeff Mahoney | e33e17e | 2015-06-15 09:41:19 -0400 | [diff] [blame] | 10771 | btrfs_get_block_group(block_group); |
| 10772 | } |
Filipe Manana | 758eb51 | 2014-11-03 14:08:39 +0000 | [diff] [blame] | 10773 | end_trans: |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10774 | btrfs_end_transaction(trans, root); |
| 10775 | next: |
Zhao Lei | d5f2e33 | 2015-10-08 18:46:44 +0800 | [diff] [blame] | 10776 | mutex_unlock(&fs_info->delete_unused_bgs_mutex); |
Josef Bacik | 47ab2a6 | 2014-09-18 11:20:02 -0400 | [diff] [blame] | 10777 | btrfs_put_block_group(block_group); |
| 10778 | spin_lock(&fs_info->unused_bgs_lock); |
| 10779 | } |
| 10780 | spin_unlock(&fs_info->unused_bgs_lock); |
| 10781 | } |
| 10782 | |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10783 | int btrfs_init_space_info(struct btrfs_fs_info *fs_info) |
| 10784 | { |
| 10785 | struct btrfs_space_info *space_info; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10786 | struct btrfs_super_block *disk_super; |
| 10787 | u64 features; |
| 10788 | u64 flags; |
| 10789 | int mixed = 0; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10790 | int ret; |
| 10791 | |
David Sterba | 6c41761 | 2011-04-13 15:41:04 +0200 | [diff] [blame] | 10792 | disk_super = fs_info->super_copy; |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10793 | if (!btrfs_super_root(disk_super)) |
Dan Carpenter | 0dc924c5 | 2016-01-13 15:21:17 +0300 | [diff] [blame] | 10794 | return -EINVAL; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10795 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10796 | features = btrfs_super_incompat_flags(disk_super); |
| 10797 | if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) |
| 10798 | mixed = 1; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10799 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10800 | flags = BTRFS_BLOCK_GROUP_SYSTEM; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10801 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10802 | if (ret) |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10803 | goto out; |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10804 | |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10805 | if (mixed) { |
| 10806 | flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10807 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10808 | } else { |
| 10809 | flags = BTRFS_BLOCK_GROUP_METADATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10810 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10811 | if (ret) |
| 10812 | goto out; |
| 10813 | |
| 10814 | flags = BTRFS_BLOCK_GROUP_DATA; |
Josef Bacik | e40edf2 | 2016-03-25 13:25:47 -0400 | [diff] [blame] | 10815 | ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info); |
liubo | 1aba86d | 2011-04-08 08:44:37 +0000 | [diff] [blame] | 10816 | } |
| 10817 | out: |
liubo | c59021f | 2011-03-07 02:13:14 +0000 | [diff] [blame] | 10818 | return ret; |
| 10819 | } |
| 10820 | |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10821 | int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end) |
| 10822 | { |
Filipe Manana | 678886b | 2014-12-07 21:31:47 +0000 | [diff] [blame] | 10823 | return unpin_extent_range(root, start, end, false); |
liubo | acce952 | 2011-01-06 19:30:25 +0800 | [diff] [blame] | 10824 | } |
| 10825 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10826 | /* |
| 10827 | * It used to be that old block groups would be left around forever. |
| 10828 | * Iterating over them would be enough to trim unused space. Since we |
| 10829 | * now automatically remove them, we also need to iterate over unallocated |
| 10830 | * space. |
| 10831 | * |
| 10832 | * We don't want a transaction for this since the discard may take a |
| 10833 | * substantial amount of time. We don't require that a transaction be |
| 10834 | * running, but we do need to take a running transaction into account |
| 10835 | * to ensure that we're not discarding chunks that were released in |
| 10836 | * the current transaction. |
| 10837 | * |
| 10838 | * Holding the chunks lock will prevent other threads from allocating |
| 10839 | * or releasing chunks, but it won't prevent a running transaction |
| 10840 | * from committing and releasing the memory that the pending chunks |
| 10841 | * list head uses. For that, we need to take a reference to the |
| 10842 | * transaction. |
| 10843 | */ |
| 10844 | static int btrfs_trim_free_extents(struct btrfs_device *device, |
| 10845 | u64 minlen, u64 *trimmed) |
| 10846 | { |
| 10847 | u64 start = 0, len = 0; |
| 10848 | int ret; |
| 10849 | |
| 10850 | *trimmed = 0; |
| 10851 | |
| 10852 | /* Not writeable = nothing to do. */ |
| 10853 | if (!device->writeable) |
| 10854 | return 0; |
| 10855 | |
| 10856 | /* No free space = nothing to do. */ |
| 10857 | if (device->total_bytes <= device->bytes_used) |
| 10858 | return 0; |
| 10859 | |
| 10860 | ret = 0; |
| 10861 | |
| 10862 | while (1) { |
Jeff Mahoney | fb45625 | 2016-06-22 18:54:56 -0400 | [diff] [blame] | 10863 | struct btrfs_fs_info *fs_info = device->fs_info; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10864 | struct btrfs_transaction *trans; |
| 10865 | u64 bytes; |
| 10866 | |
| 10867 | ret = mutex_lock_interruptible(&fs_info->chunk_mutex); |
| 10868 | if (ret) |
| 10869 | return ret; |
| 10870 | |
| 10871 | down_read(&fs_info->commit_root_sem); |
| 10872 | |
| 10873 | spin_lock(&fs_info->trans_lock); |
| 10874 | trans = fs_info->running_transaction; |
| 10875 | if (trans) |
| 10876 | atomic_inc(&trans->use_count); |
| 10877 | spin_unlock(&fs_info->trans_lock); |
| 10878 | |
| 10879 | ret = find_free_dev_extent_start(trans, device, minlen, start, |
| 10880 | &start, &len); |
| 10881 | if (trans) |
| 10882 | btrfs_put_transaction(trans); |
| 10883 | |
| 10884 | if (ret) { |
| 10885 | up_read(&fs_info->commit_root_sem); |
| 10886 | mutex_unlock(&fs_info->chunk_mutex); |
| 10887 | if (ret == -ENOSPC) |
| 10888 | ret = 0; |
| 10889 | break; |
| 10890 | } |
| 10891 | |
| 10892 | ret = btrfs_issue_discard(device->bdev, start, len, &bytes); |
| 10893 | up_read(&fs_info->commit_root_sem); |
| 10894 | mutex_unlock(&fs_info->chunk_mutex); |
| 10895 | |
| 10896 | if (ret) |
| 10897 | break; |
| 10898 | |
| 10899 | start += len; |
| 10900 | *trimmed += bytes; |
| 10901 | |
| 10902 | if (fatal_signal_pending(current)) { |
| 10903 | ret = -ERESTARTSYS; |
| 10904 | break; |
| 10905 | } |
| 10906 | |
| 10907 | cond_resched(); |
| 10908 | } |
| 10909 | |
| 10910 | return ret; |
| 10911 | } |
| 10912 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10913 | int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range) |
| 10914 | { |
| 10915 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 10916 | struct btrfs_block_group_cache *cache = NULL; |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10917 | struct btrfs_device *device; |
| 10918 | struct list_head *devices; |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10919 | u64 group_trimmed; |
| 10920 | u64 start; |
| 10921 | u64 end; |
| 10922 | u64 trimmed = 0; |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10923 | u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10924 | int ret = 0; |
| 10925 | |
Liu Bo | 2cac13e | 2012-02-09 18:17:41 +0800 | [diff] [blame] | 10926 | /* |
| 10927 | * try to trim all FS space, our block group may start from non-zero. |
| 10928 | */ |
| 10929 | if (range->len == total_bytes) |
| 10930 | cache = btrfs_lookup_first_block_group(fs_info, range->start); |
| 10931 | else |
| 10932 | cache = btrfs_lookup_block_group(fs_info, range->start); |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10933 | |
| 10934 | while (cache) { |
| 10935 | if (cache->key.objectid >= (range->start + range->len)) { |
| 10936 | btrfs_put_block_group(cache); |
| 10937 | break; |
| 10938 | } |
| 10939 | |
| 10940 | start = max(range->start, cache->key.objectid); |
| 10941 | end = min(range->start + range->len, |
| 10942 | cache->key.objectid + cache->key.offset); |
| 10943 | |
| 10944 | if (end - start >= range->minlen) { |
| 10945 | if (!block_group_cache_done(cache)) { |
Liu Bo | f6373bf | 2012-12-27 09:01:18 +0000 | [diff] [blame] | 10946 | ret = cache_block_group(cache, 0); |
Josef Bacik | 1be41b7 | 2013-06-12 13:56:06 -0400 | [diff] [blame] | 10947 | if (ret) { |
| 10948 | btrfs_put_block_group(cache); |
| 10949 | break; |
| 10950 | } |
| 10951 | ret = wait_block_group_cache_done(cache); |
| 10952 | if (ret) { |
| 10953 | btrfs_put_block_group(cache); |
| 10954 | break; |
| 10955 | } |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10956 | } |
| 10957 | ret = btrfs_trim_block_group(cache, |
| 10958 | &group_trimmed, |
| 10959 | start, |
| 10960 | end, |
| 10961 | range->minlen); |
| 10962 | |
| 10963 | trimmed += group_trimmed; |
| 10964 | if (ret) { |
| 10965 | btrfs_put_block_group(cache); |
| 10966 | break; |
| 10967 | } |
| 10968 | } |
| 10969 | |
| 10970 | cache = next_block_group(fs_info->tree_root, cache); |
| 10971 | } |
| 10972 | |
Jeff Mahoney | 499f377 | 2015-06-15 09:41:17 -0400 | [diff] [blame] | 10973 | mutex_lock(&root->fs_info->fs_devices->device_list_mutex); |
| 10974 | devices = &root->fs_info->fs_devices->alloc_list; |
| 10975 | list_for_each_entry(device, devices, dev_alloc_list) { |
| 10976 | ret = btrfs_trim_free_extents(device, range->minlen, |
| 10977 | &group_trimmed); |
| 10978 | if (ret) |
| 10979 | break; |
| 10980 | |
| 10981 | trimmed += group_trimmed; |
| 10982 | } |
| 10983 | mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); |
| 10984 | |
Li Dongyang | f7039b1 | 2011-03-24 10:24:28 +0000 | [diff] [blame] | 10985 | range->len = trimmed; |
| 10986 | return ret; |
| 10987 | } |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10988 | |
| 10989 | /* |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10990 | * btrfs_{start,end}_write_no_snapshoting() are similar to |
| 10991 | * mnt_{want,drop}_write(), they are used to prevent some tasks from writing |
| 10992 | * data into the page cache through nocow before the subvolume is snapshoted, |
| 10993 | * but flush the data into disk after the snapshot creation, or to prevent |
| 10994 | * operations while snapshoting is ongoing and that cause the snapshot to be |
| 10995 | * inconsistent (writes followed by expanding truncates for example). |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10996 | */ |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 10997 | void btrfs_end_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 10998 | { |
| 10999 | percpu_counter_dec(&root->subv_writers->counter); |
| 11000 | /* |
David Sterba | a83342a | 2015-02-16 19:36:47 +0100 | [diff] [blame] | 11001 | * Make sure counter is updated before we wake up waiters. |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11002 | */ |
| 11003 | smp_mb(); |
| 11004 | if (waitqueue_active(&root->subv_writers->wait)) |
| 11005 | wake_up(&root->subv_writers->wait); |
| 11006 | } |
| 11007 | |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11008 | int btrfs_start_write_no_snapshoting(struct btrfs_root *root) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11009 | { |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 11010 | if (atomic_read(&root->will_be_snapshoted)) |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11011 | return 0; |
| 11012 | |
| 11013 | percpu_counter_inc(&root->subv_writers->counter); |
| 11014 | /* |
| 11015 | * Make sure counter is updated before we check for snapshot creation. |
| 11016 | */ |
| 11017 | smp_mb(); |
David Sterba | ee39b43 | 2014-09-30 01:33:33 +0200 | [diff] [blame] | 11018 | if (atomic_read(&root->will_be_snapshoted)) { |
Filipe Manana | 9ea24bb | 2014-10-29 11:57:59 +0000 | [diff] [blame] | 11019 | btrfs_end_write_no_snapshoting(root); |
Miao Xie | 8257b2d | 2014-03-06 13:38:19 +0800 | [diff] [blame] | 11020 | return 0; |
| 11021 | } |
| 11022 | return 1; |
| 11023 | } |
Zhao Lei | 0bc19f90 | 2016-01-06 18:56:36 +0800 | [diff] [blame] | 11024 | |
| 11025 | static int wait_snapshoting_atomic_t(atomic_t *a) |
| 11026 | { |
| 11027 | schedule(); |
| 11028 | return 0; |
| 11029 | } |
| 11030 | |
| 11031 | void btrfs_wait_for_snapshot_creation(struct btrfs_root *root) |
| 11032 | { |
| 11033 | while (true) { |
| 11034 | int ret; |
| 11035 | |
| 11036 | ret = btrfs_start_write_no_snapshoting(root); |
| 11037 | if (ret) |
| 11038 | break; |
| 11039 | wait_on_atomic_t(&root->will_be_snapshoted, |
| 11040 | wait_snapshoting_atomic_t, |
| 11041 | TASK_UNINTERRUPTIBLE); |
| 11042 | } |
| 11043 | } |