blob: f74cb39a64e5e2df017ffde47716fa27827636da [file] [log] [blame]
Josef Bacik0f9dd462008-09-23 13:14:11 -04001/*
2 * Copyright (C) 2008 Red Hat. 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 */
18
Josef Bacik96303082009-07-13 21:29:25 -040019#include <linux/pagemap.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040020#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Josef Bacik96303082009-07-13 21:29:25 -040022#include <linux/math64.h>
Josef Bacik6ab60602011-08-08 08:24:46 -040023#include <linux/ratelimit.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040024#include "ctree.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040025#include "free-space-cache.h"
26#include "transaction.h"
Josef Bacik0af3d002010-06-21 14:48:16 -040027#include "disk-io.h"
Josef Bacik43be2142011-04-01 14:55:00 +000028#include "extent_io.h"
Li Zefan581bb052011-04-20 10:06:11 +080029#include "inode-map.h"
Filipe Manana04216822014-11-27 21:14:15 +000030#include "volumes.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040031
Feifei Xu0ef64472016-06-01 19:18:24 +080032#define BITS_PER_BITMAP (PAGE_SIZE * 8UL)
Byongho Leeee221842015-12-15 01:42:10 +090033#define MAX_CACHE_BYTES_PER_GIG SZ_32K
Josef Bacik96303082009-07-13 21:29:25 -040034
Filipe Manana55507ce2014-12-01 17:04:09 +000035struct btrfs_trim_range {
36 u64 start;
37 u64 bytes;
38 struct list_head list;
39};
40
Li Zefan34d52cb2011-03-29 13:46:06 +080041static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040042 struct btrfs_free_space *info);
Josef Bacikcd023e72012-05-14 10:06:40 -040043static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
44 struct btrfs_free_space *info);
Josef Bacik0cb59c92010-07-02 12:14:14 -040045
Li Zefan0414efa2011-04-20 10:20:14 +080046static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
47 struct btrfs_path *path,
48 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040049{
50 struct btrfs_key key;
51 struct btrfs_key location;
52 struct btrfs_disk_key disk_key;
53 struct btrfs_free_space_header *header;
54 struct extent_buffer *leaf;
55 struct inode *inode = NULL;
56 int ret;
57
Josef Bacik0af3d002010-06-21 14:48:16 -040058 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080059 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040060 key.type = 0;
61
62 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
63 if (ret < 0)
64 return ERR_PTR(ret);
65 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020066 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040067 return ERR_PTR(-ENOENT);
68 }
69
70 leaf = path->nodes[0];
71 header = btrfs_item_ptr(leaf, path->slots[0],
72 struct btrfs_free_space_header);
73 btrfs_free_space_key(leaf, header, &disk_key);
74 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020075 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040076
77 inode = btrfs_iget(root->fs_info->sb, &location, root, NULL);
78 if (!inode)
79 return ERR_PTR(-ENOENT);
80 if (IS_ERR(inode))
81 return inode;
82 if (is_bad_inode(inode)) {
83 iput(inode);
84 return ERR_PTR(-ENOENT);
85 }
86
Al Viro528c0322012-04-13 11:03:55 -040087 mapping_set_gfp_mask(inode->i_mapping,
Michal Hockoc62d2552015-11-06 16:28:49 -080088 mapping_gfp_constraint(inode->i_mapping,
89 ~(__GFP_FS | __GFP_HIGHMEM)));
Miao Xieadae52b2011-03-31 09:43:23 +000090
Li Zefan0414efa2011-04-20 10:20:14 +080091 return inode;
92}
93
94struct inode *lookup_free_space_inode(struct btrfs_root *root,
95 struct btrfs_block_group_cache
96 *block_group, struct btrfs_path *path)
97{
98 struct inode *inode = NULL;
Josef Bacik5b0e95b2011-10-06 08:58:24 -040099 u32 flags = BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
Li Zefan0414efa2011-04-20 10:20:14 +0800100
101 spin_lock(&block_group->lock);
102 if (block_group->inode)
103 inode = igrab(block_group->inode);
104 spin_unlock(&block_group->lock);
105 if (inode)
106 return inode;
107
108 inode = __lookup_free_space_inode(root, path,
109 block_group->key.objectid);
110 if (IS_ERR(inode))
111 return inode;
112
Josef Bacik0af3d002010-06-21 14:48:16 -0400113 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400114 if (!((BTRFS_I(inode)->flags & flags) == flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000115 btrfs_info(root->fs_info,
116 "Old style space inode found, converting.");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400117 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
118 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400119 block_group->disk_cache_state = BTRFS_DC_CLEAR;
120 }
121
Josef Bacik300e4f82011-08-29 14:06:00 -0400122 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400123 block_group->inode = igrab(inode);
124 block_group->iref = 1;
125 }
126 spin_unlock(&block_group->lock);
127
128 return inode;
129}
130
Eric Sandeen48a3b632013-04-25 20:41:01 +0000131static int __create_free_space_inode(struct btrfs_root *root,
132 struct btrfs_trans_handle *trans,
133 struct btrfs_path *path,
134 u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400135{
136 struct btrfs_key key;
137 struct btrfs_disk_key disk_key;
138 struct btrfs_free_space_header *header;
139 struct btrfs_inode_item *inode_item;
140 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400141 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400142 int ret;
143
Li Zefan0414efa2011-04-20 10:20:14 +0800144 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400145 if (ret)
146 return ret;
147
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400148 /* We inline crc's for the free disk space cache */
149 if (ino != BTRFS_FREE_INO_OBJECTID)
150 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
151
Josef Bacik0af3d002010-06-21 14:48:16 -0400152 leaf = path->nodes[0];
153 inode_item = btrfs_item_ptr(leaf, path->slots[0],
154 struct btrfs_inode_item);
155 btrfs_item_key(leaf, &disk_key, path->slots[0]);
156 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
157 sizeof(*inode_item));
158 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
159 btrfs_set_inode_size(leaf, inode_item, 0);
160 btrfs_set_inode_nbytes(leaf, inode_item, 0);
161 btrfs_set_inode_uid(leaf, inode_item, 0);
162 btrfs_set_inode_gid(leaf, inode_item, 0);
163 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400164 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400165 btrfs_set_inode_nlink(leaf, inode_item, 1);
166 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800167 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400168 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200169 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400170
171 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800172 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400173 key.type = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -0400174 ret = btrfs_insert_empty_item(trans, root, path, &key,
175 sizeof(struct btrfs_free_space_header));
176 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200177 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400178 return ret;
179 }
Chris Masonc9dc4c62015-04-04 17:14:42 -0700180
Josef Bacik0af3d002010-06-21 14:48:16 -0400181 leaf = path->nodes[0];
182 header = btrfs_item_ptr(leaf, path->slots[0],
183 struct btrfs_free_space_header);
184 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
185 btrfs_set_free_space_key(leaf, header, &disk_key);
186 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200187 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400188
189 return 0;
190}
191
Li Zefan0414efa2011-04-20 10:20:14 +0800192int create_free_space_inode(struct btrfs_root *root,
193 struct btrfs_trans_handle *trans,
194 struct btrfs_block_group_cache *block_group,
195 struct btrfs_path *path)
196{
197 int ret;
198 u64 ino;
199
200 ret = btrfs_find_free_objectid(root, &ino);
201 if (ret < 0)
202 return ret;
203
204 return __create_free_space_inode(root, trans, path, ino,
205 block_group->key.objectid);
206}
207
Miao Xie7b61cd92013-05-13 13:55:09 +0000208int btrfs_check_trunc_cache_free_space(struct btrfs_root *root,
209 struct btrfs_block_rsv *rsv)
Josef Bacik0af3d002010-06-21 14:48:16 -0400210{
Josef Bacikc8174312011-11-02 09:29:35 -0400211 u64 needed_bytes;
Miao Xie7b61cd92013-05-13 13:55:09 +0000212 int ret;
Josef Bacikc8174312011-11-02 09:29:35 -0400213
214 /* 1 for slack space, 1 for updating the inode */
215 needed_bytes = btrfs_calc_trunc_metadata_size(root, 1) +
216 btrfs_calc_trans_metadata_size(root, 1);
217
Miao Xie7b61cd92013-05-13 13:55:09 +0000218 spin_lock(&rsv->lock);
219 if (rsv->reserved < needed_bytes)
220 ret = -ENOSPC;
221 else
222 ret = 0;
223 spin_unlock(&rsv->lock);
Wei Yongjun4b286cd2013-05-21 02:39:21 +0000224 return ret;
Miao Xie7b61cd92013-05-13 13:55:09 +0000225}
226
227int btrfs_truncate_free_space_cache(struct btrfs_root *root,
228 struct btrfs_trans_handle *trans,
Chris Mason1bbc6212015-04-06 12:46:08 -0700229 struct btrfs_block_group_cache *block_group,
Miao Xie7b61cd92013-05-13 13:55:09 +0000230 struct inode *inode)
231{
Miao Xie7b61cd92013-05-13 13:55:09 +0000232 int ret = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -0700233 struct btrfs_path *path = btrfs_alloc_path();
Filipe Manana35c76642015-04-30 17:47:05 +0100234 bool locked = false;
Chris Mason1bbc6212015-04-06 12:46:08 -0700235
236 if (!path) {
237 ret = -ENOMEM;
238 goto fail;
239 }
240
241 if (block_group) {
Filipe Manana35c76642015-04-30 17:47:05 +0100242 locked = true;
Chris Mason1bbc6212015-04-06 12:46:08 -0700243 mutex_lock(&trans->transaction->cache_write_mutex);
244 if (!list_empty(&block_group->io_list)) {
245 list_del_init(&block_group->io_list);
246
247 btrfs_wait_cache_io(root, trans, block_group,
248 &block_group->io_ctl, path,
249 block_group->key.objectid);
250 btrfs_put_block_group(block_group);
251 }
252
253 /*
254 * now that we've truncated the cache away, its no longer
255 * setup or written
256 */
257 spin_lock(&block_group->lock);
258 block_group->disk_cache_state = BTRFS_DC_CLEAR;
259 spin_unlock(&block_group->lock);
260 }
261 btrfs_free_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400262
Josef Bacik0af3d002010-06-21 14:48:16 -0400263 btrfs_i_size_write(inode, 0);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700264 truncate_pagecache(inode, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -0400265
266 /*
267 * We don't need an orphan item because truncating the free space cache
268 * will never be split across transactions.
Chris Mason28ed1342014-12-17 09:41:04 -0800269 * We don't need to check for -EAGAIN because we're a free space
270 * cache inode
Josef Bacik0af3d002010-06-21 14:48:16 -0400271 */
272 ret = btrfs_truncate_inode_items(trans, root, inode,
273 0, BTRFS_EXTENT_DATA_KEY);
Filipe Manana35c76642015-04-30 17:47:05 +0100274 if (ret)
275 goto fail;
Josef Bacik0af3d002010-06-21 14:48:16 -0400276
Li Zefan82d59022011-04-20 10:33:24 +0800277 ret = btrfs_update_inode(trans, root, inode);
Chris Mason1bbc6212015-04-06 12:46:08 -0700278
Chris Mason1bbc6212015-04-06 12:46:08 -0700279fail:
Filipe Manana35c76642015-04-30 17:47:05 +0100280 if (locked)
281 mutex_unlock(&trans->transaction->cache_write_mutex);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100282 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400283 btrfs_abort_transaction(trans, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400284
Li Zefan82d59022011-04-20 10:33:24 +0800285 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400286}
287
Josef Bacik9d66e232010-08-25 16:54:15 -0400288static int readahead_cache(struct inode *inode)
289{
290 struct file_ra_state *ra;
291 unsigned long last_index;
292
293 ra = kzalloc(sizeof(*ra), GFP_NOFS);
294 if (!ra)
295 return -ENOMEM;
296
297 file_ra_state_init(ra, inode->i_mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300298 last_index = (i_size_read(inode) - 1) >> PAGE_SHIFT;
Josef Bacik9d66e232010-08-25 16:54:15 -0400299
300 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
301
302 kfree(ra);
303
304 return 0;
305}
306
Chris Mason4c6d1d82015-04-06 13:17:20 -0700307static int io_ctl_init(struct btrfs_io_ctl *io_ctl, struct inode *inode,
Miao Xie5349d6c2014-06-19 10:42:49 +0800308 struct btrfs_root *root, int write)
Josef Bacika67509c2011-10-05 15:18:58 -0400309{
Miao Xie5349d6c2014-06-19 10:42:49 +0800310 int num_pages;
311 int check_crcs = 0;
312
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300313 num_pages = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
Miao Xie5349d6c2014-06-19 10:42:49 +0800314
315 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
316 check_crcs = 1;
317
318 /* Make sure we can fit our crcs into the first page */
319 if (write && check_crcs &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300320 (num_pages * sizeof(u32)) >= PAGE_SIZE)
Miao Xie5349d6c2014-06-19 10:42:49 +0800321 return -ENOSPC;
322
Chris Mason4c6d1d82015-04-06 13:17:20 -0700323 memset(io_ctl, 0, sizeof(struct btrfs_io_ctl));
Miao Xie5349d6c2014-06-19 10:42:49 +0800324
David Sterba31e818f2015-02-20 18:00:26 +0100325 io_ctl->pages = kcalloc(num_pages, sizeof(struct page *), GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400326 if (!io_ctl->pages)
327 return -ENOMEM;
Miao Xie5349d6c2014-06-19 10:42:49 +0800328
329 io_ctl->num_pages = num_pages;
Josef Bacika67509c2011-10-05 15:18:58 -0400330 io_ctl->root = root;
Miao Xie5349d6c2014-06-19 10:42:49 +0800331 io_ctl->check_crcs = check_crcs;
Chris Masonc9dc4c62015-04-04 17:14:42 -0700332 io_ctl->inode = inode;
Miao Xie5349d6c2014-06-19 10:42:49 +0800333
Josef Bacika67509c2011-10-05 15:18:58 -0400334 return 0;
335}
336
Chris Mason4c6d1d82015-04-06 13:17:20 -0700337static void io_ctl_free(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400338{
339 kfree(io_ctl->pages);
Chris Masonc9dc4c62015-04-04 17:14:42 -0700340 io_ctl->pages = NULL;
Josef Bacika67509c2011-10-05 15:18:58 -0400341}
342
Chris Mason4c6d1d82015-04-06 13:17:20 -0700343static void io_ctl_unmap_page(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400344{
345 if (io_ctl->cur) {
Josef Bacika67509c2011-10-05 15:18:58 -0400346 io_ctl->cur = NULL;
347 io_ctl->orig = NULL;
348 }
349}
350
Chris Mason4c6d1d82015-04-06 13:17:20 -0700351static void io_ctl_map_page(struct btrfs_io_ctl *io_ctl, int clear)
Josef Bacika67509c2011-10-05 15:18:58 -0400352{
Josef Bacikb12d6862013-08-26 17:14:08 -0400353 ASSERT(io_ctl->index < io_ctl->num_pages);
Josef Bacika67509c2011-10-05 15:18:58 -0400354 io_ctl->page = io_ctl->pages[io_ctl->index++];
Chris Mason2b108262015-04-06 07:48:20 -0700355 io_ctl->cur = page_address(io_ctl->page);
Josef Bacika67509c2011-10-05 15:18:58 -0400356 io_ctl->orig = io_ctl->cur;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300357 io_ctl->size = PAGE_SIZE;
Josef Bacika67509c2011-10-05 15:18:58 -0400358 if (clear)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300359 memset(io_ctl->cur, 0, PAGE_SIZE);
Josef Bacika67509c2011-10-05 15:18:58 -0400360}
361
Chris Mason4c6d1d82015-04-06 13:17:20 -0700362static void io_ctl_drop_pages(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400363{
364 int i;
365
366 io_ctl_unmap_page(io_ctl);
367
368 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800369 if (io_ctl->pages[i]) {
370 ClearPageChecked(io_ctl->pages[i]);
371 unlock_page(io_ctl->pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300372 put_page(io_ctl->pages[i]);
Li Zefana1ee5a42012-01-09 14:27:42 +0800373 }
Josef Bacika67509c2011-10-05 15:18:58 -0400374 }
375}
376
Chris Mason4c6d1d82015-04-06 13:17:20 -0700377static int io_ctl_prepare_pages(struct btrfs_io_ctl *io_ctl, struct inode *inode,
Josef Bacika67509c2011-10-05 15:18:58 -0400378 int uptodate)
379{
380 struct page *page;
381 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
382 int i;
383
384 for (i = 0; i < io_ctl->num_pages; i++) {
385 page = find_or_create_page(inode->i_mapping, i, mask);
386 if (!page) {
387 io_ctl_drop_pages(io_ctl);
388 return -ENOMEM;
389 }
390 io_ctl->pages[i] = page;
391 if (uptodate && !PageUptodate(page)) {
392 btrfs_readpage(NULL, page);
393 lock_page(page);
Josef Bacik2e7647f2019-09-24 16:50:43 -0400394 if (page->mapping != inode->i_mapping) {
395 btrfs_err(BTRFS_I(inode)->root->fs_info,
396 "free space cache page truncated");
397 io_ctl_drop_pages(io_ctl);
398 return -EIO;
399 }
Josef Bacika67509c2011-10-05 15:18:58 -0400400 if (!PageUptodate(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500401 btrfs_err(BTRFS_I(inode)->root->fs_info,
402 "error reading free space cache");
Josef Bacika67509c2011-10-05 15:18:58 -0400403 io_ctl_drop_pages(io_ctl);
404 return -EIO;
405 }
406 }
407 }
408
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500409 for (i = 0; i < io_ctl->num_pages; i++) {
410 clear_page_dirty_for_io(io_ctl->pages[i]);
411 set_page_extent_mapped(io_ctl->pages[i]);
412 }
413
Josef Bacika67509c2011-10-05 15:18:58 -0400414 return 0;
415}
416
Chris Mason4c6d1d82015-04-06 13:17:20 -0700417static void io_ctl_set_generation(struct btrfs_io_ctl *io_ctl, u64 generation)
Josef Bacika67509c2011-10-05 15:18:58 -0400418{
Al Viro528c0322012-04-13 11:03:55 -0400419 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400420
421 io_ctl_map_page(io_ctl, 1);
422
423 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400424 * Skip the csum areas. If we don't check crcs then we just have a
425 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400426 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400427 if (io_ctl->check_crcs) {
428 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
429 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
430 } else {
431 io_ctl->cur += sizeof(u64);
432 io_ctl->size -= sizeof(u64) * 2;
433 }
Josef Bacika67509c2011-10-05 15:18:58 -0400434
435 val = io_ctl->cur;
436 *val = cpu_to_le64(generation);
437 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400438}
439
Chris Mason4c6d1d82015-04-06 13:17:20 -0700440static int io_ctl_check_generation(struct btrfs_io_ctl *io_ctl, u64 generation)
Josef Bacika67509c2011-10-05 15:18:58 -0400441{
Al Viro528c0322012-04-13 11:03:55 -0400442 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400443
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400444 /*
445 * Skip the crc area. If we don't check crcs then we just have a 64bit
446 * chunk at the front of the first page.
447 */
448 if (io_ctl->check_crcs) {
449 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
450 io_ctl->size -= sizeof(u64) +
451 (sizeof(u32) * io_ctl->num_pages);
452 } else {
453 io_ctl->cur += sizeof(u64);
454 io_ctl->size -= sizeof(u64) * 2;
455 }
Josef Bacika67509c2011-10-05 15:18:58 -0400456
Josef Bacika67509c2011-10-05 15:18:58 -0400457 gen = io_ctl->cur;
458 if (le64_to_cpu(*gen) != generation) {
David Sterba94647322015-10-08 11:01:36 +0200459 btrfs_err_rl(io_ctl->root->fs_info,
460 "space cache generation (%llu) does not match inode (%llu)",
461 *gen, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400462 io_ctl_unmap_page(io_ctl);
463 return -EIO;
464 }
465 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400466 return 0;
467}
468
Chris Mason4c6d1d82015-04-06 13:17:20 -0700469static void io_ctl_set_crc(struct btrfs_io_ctl *io_ctl, int index)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400470{
471 u32 *tmp;
472 u32 crc = ~(u32)0;
473 unsigned offset = 0;
474
475 if (!io_ctl->check_crcs) {
476 io_ctl_unmap_page(io_ctl);
477 return;
478 }
479
480 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800481 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400482
Liu Bob0496682013-03-14 14:57:45 +0000483 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300484 PAGE_SIZE - offset);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400485 btrfs_csum_final(crc, (char *)&crc);
486 io_ctl_unmap_page(io_ctl);
Chris Mason2b108262015-04-06 07:48:20 -0700487 tmp = page_address(io_ctl->pages[0]);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400488 tmp += index;
489 *tmp = crc;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400490}
491
Chris Mason4c6d1d82015-04-06 13:17:20 -0700492static int io_ctl_check_crc(struct btrfs_io_ctl *io_ctl, int index)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400493{
494 u32 *tmp, val;
495 u32 crc = ~(u32)0;
496 unsigned offset = 0;
497
498 if (!io_ctl->check_crcs) {
499 io_ctl_map_page(io_ctl, 0);
500 return 0;
501 }
502
503 if (index == 0)
504 offset = sizeof(u32) * io_ctl->num_pages;
505
Chris Mason2b108262015-04-06 07:48:20 -0700506 tmp = page_address(io_ctl->pages[0]);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400507 tmp += index;
508 val = *tmp;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400509
510 io_ctl_map_page(io_ctl, 0);
Liu Bob0496682013-03-14 14:57:45 +0000511 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300512 PAGE_SIZE - offset);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400513 btrfs_csum_final(crc, (char *)&crc);
514 if (val != crc) {
David Sterba94647322015-10-08 11:01:36 +0200515 btrfs_err_rl(io_ctl->root->fs_info,
516 "csum mismatch on free space cache");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400517 io_ctl_unmap_page(io_ctl);
518 return -EIO;
519 }
520
Josef Bacika67509c2011-10-05 15:18:58 -0400521 return 0;
522}
523
Chris Mason4c6d1d82015-04-06 13:17:20 -0700524static int io_ctl_add_entry(struct btrfs_io_ctl *io_ctl, u64 offset, u64 bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400525 void *bitmap)
526{
527 struct btrfs_free_space_entry *entry;
528
529 if (!io_ctl->cur)
530 return -ENOSPC;
531
532 entry = io_ctl->cur;
533 entry->offset = cpu_to_le64(offset);
534 entry->bytes = cpu_to_le64(bytes);
535 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
536 BTRFS_FREE_SPACE_EXTENT;
537 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
538 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
539
540 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
541 return 0;
542
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400543 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400544
545 /* No more pages to map */
546 if (io_ctl->index >= io_ctl->num_pages)
547 return 0;
548
549 /* map the next page */
550 io_ctl_map_page(io_ctl, 1);
551 return 0;
552}
553
Chris Mason4c6d1d82015-04-06 13:17:20 -0700554static int io_ctl_add_bitmap(struct btrfs_io_ctl *io_ctl, void *bitmap)
Josef Bacika67509c2011-10-05 15:18:58 -0400555{
556 if (!io_ctl->cur)
557 return -ENOSPC;
558
559 /*
560 * If we aren't at the start of the current page, unmap this one and
561 * map the next one if there is any left.
562 */
563 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400564 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400565 if (io_ctl->index >= io_ctl->num_pages)
566 return -ENOSPC;
567 io_ctl_map_page(io_ctl, 0);
568 }
569
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300570 memcpy(io_ctl->cur, bitmap, PAGE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400571 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400572 if (io_ctl->index < io_ctl->num_pages)
573 io_ctl_map_page(io_ctl, 0);
574 return 0;
575}
576
Chris Mason4c6d1d82015-04-06 13:17:20 -0700577static void io_ctl_zero_remaining_pages(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400578{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400579 /*
580 * If we're not on the boundary we know we've modified the page and we
581 * need to crc the page.
582 */
583 if (io_ctl->cur != io_ctl->orig)
584 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
585 else
586 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400587
588 while (io_ctl->index < io_ctl->num_pages) {
589 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400590 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400591 }
592}
593
Chris Mason4c6d1d82015-04-06 13:17:20 -0700594static int io_ctl_read_entry(struct btrfs_io_ctl *io_ctl,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400595 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400596{
597 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500598 int ret;
599
600 if (!io_ctl->cur) {
601 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
602 if (ret)
603 return ret;
604 }
Josef Bacika67509c2011-10-05 15:18:58 -0400605
606 e = io_ctl->cur;
607 entry->offset = le64_to_cpu(e->offset);
608 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400609 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400610 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
611 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
612
613 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400614 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400615
616 io_ctl_unmap_page(io_ctl);
617
Josef Bacik2f120c02011-11-10 20:45:05 -0500618 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400619}
620
Chris Mason4c6d1d82015-04-06 13:17:20 -0700621static int io_ctl_read_bitmap(struct btrfs_io_ctl *io_ctl,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400622 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400623{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400624 int ret;
625
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400626 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
627 if (ret)
628 return ret;
629
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300630 memcpy(entry->bitmap, io_ctl->cur, PAGE_SIZE);
Josef Bacika67509c2011-10-05 15:18:58 -0400631 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400632
633 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400634}
635
Josef Bacikcd023e72012-05-14 10:06:40 -0400636/*
637 * Since we attach pinned extents after the fact we can have contiguous sections
638 * of free space that are split up in entries. This poses a problem with the
639 * tree logging stuff since it could have allocated across what appears to be 2
640 * entries since we would have merged the entries when adding the pinned extents
641 * back to the free space cache. So run through the space cache that we just
642 * loaded and merge contiguous entries. This will make the log replay stuff not
643 * blow up and it will make for nicer allocator behavior.
644 */
645static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
646{
647 struct btrfs_free_space *e, *prev = NULL;
648 struct rb_node *n;
649
650again:
651 spin_lock(&ctl->tree_lock);
652 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
653 e = rb_entry(n, struct btrfs_free_space, offset_index);
654 if (!prev)
655 goto next;
656 if (e->bitmap || prev->bitmap)
657 goto next;
658 if (prev->offset + prev->bytes == e->offset) {
659 unlink_free_space(ctl, prev);
660 unlink_free_space(ctl, e);
661 prev->bytes += e->bytes;
662 kmem_cache_free(btrfs_free_space_cachep, e);
663 link_free_space(ctl, prev);
664 prev = NULL;
665 spin_unlock(&ctl->tree_lock);
666 goto again;
667 }
668next:
669 prev = e;
670 }
671 spin_unlock(&ctl->tree_lock);
672}
673
Eric Sandeen48a3b632013-04-25 20:41:01 +0000674static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
675 struct btrfs_free_space_ctl *ctl,
676 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400677{
Josef Bacik9d66e232010-08-25 16:54:15 -0400678 struct btrfs_free_space_header *header;
679 struct extent_buffer *leaf;
Chris Mason4c6d1d82015-04-06 13:17:20 -0700680 struct btrfs_io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400681 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400682 struct btrfs_free_space *e, *n;
Gui Hechengb76808f2014-12-31 09:51:35 +0800683 LIST_HEAD(bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400684 u64 num_entries;
685 u64 num_bitmaps;
686 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400687 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400688 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400689
Josef Bacik9d66e232010-08-25 16:54:15 -0400690 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800691 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400692 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400693
694 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800695 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400696 key.type = 0;
697
698 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800699 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400700 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800701 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400702 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400703 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400704 }
705
Li Zefan0414efa2011-04-20 10:20:14 +0800706 ret = -1;
707
Josef Bacik9d66e232010-08-25 16:54:15 -0400708 leaf = path->nodes[0];
709 header = btrfs_item_ptr(leaf, path->slots[0],
710 struct btrfs_free_space_header);
711 num_entries = btrfs_free_space_entries(leaf, header);
712 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
713 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400714 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400715
Miao Xiee570fd22014-06-19 10:42:50 +0800716 if (!BTRFS_I(inode)->generation) {
717 btrfs_info(root->fs_info,
718 "The free space cache file (%llu) is invalid. skip it\n",
719 offset);
720 return 0;
721 }
722
Josef Bacik9d66e232010-08-25 16:54:15 -0400723 if (BTRFS_I(inode)->generation != generation) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000724 btrfs_err(root->fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400725 "free space inode generation (%llu) did not match free space cache generation (%llu)",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200726 BTRFS_I(inode)->generation, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400727 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400728 }
729
730 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400731 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400732
Miao Xie5349d6c2014-06-19 10:42:49 +0800733 ret = io_ctl_init(&io_ctl, inode, root, 0);
Li Zefan706efc62012-01-09 14:36:28 +0800734 if (ret)
735 return ret;
736
Josef Bacik9d66e232010-08-25 16:54:15 -0400737 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800738 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400739 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400740
Josef Bacika67509c2011-10-05 15:18:58 -0400741 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
742 if (ret)
743 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400744
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400745 ret = io_ctl_check_crc(&io_ctl, 0);
746 if (ret)
747 goto free_cache;
748
Josef Bacika67509c2011-10-05 15:18:58 -0400749 ret = io_ctl_check_generation(&io_ctl, generation);
750 if (ret)
751 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400752
Josef Bacika67509c2011-10-05 15:18:58 -0400753 while (num_entries) {
754 e = kmem_cache_zalloc(btrfs_free_space_cachep,
755 GFP_NOFS);
Zhihao Cheng2f36ef52020-11-20 09:08:04 +0800756 if (!e) {
757 ret = -ENOMEM;
Josef Bacik9d66e232010-08-25 16:54:15 -0400758 goto free_cache;
Zhihao Cheng2f36ef52020-11-20 09:08:04 +0800759 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400760
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400761 ret = io_ctl_read_entry(&io_ctl, e, &type);
762 if (ret) {
763 kmem_cache_free(btrfs_free_space_cachep, e);
764 goto free_cache;
765 }
766
Josef Bacika67509c2011-10-05 15:18:58 -0400767 if (!e->bytes) {
Zhihao Cheng2f36ef52020-11-20 09:08:04 +0800768 ret = -1;
Josef Bacika67509c2011-10-05 15:18:58 -0400769 kmem_cache_free(btrfs_free_space_cachep, e);
770 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400771 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400772
Josef Bacika67509c2011-10-05 15:18:58 -0400773 if (type == BTRFS_FREE_SPACE_EXTENT) {
774 spin_lock(&ctl->tree_lock);
775 ret = link_free_space(ctl, e);
776 spin_unlock(&ctl->tree_lock);
777 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000778 btrfs_err(root->fs_info,
779 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500780 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400781 goto free_cache;
782 }
Josef Bacika67509c2011-10-05 15:18:58 -0400783 } else {
Josef Bacikb12d6862013-08-26 17:14:08 -0400784 ASSERT(num_bitmaps);
Josef Bacika67509c2011-10-05 15:18:58 -0400785 num_bitmaps--;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300786 e->bitmap = kzalloc(PAGE_SIZE, GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400787 if (!e->bitmap) {
Zhihao Cheng2f36ef52020-11-20 09:08:04 +0800788 ret = -ENOMEM;
Josef Bacika67509c2011-10-05 15:18:58 -0400789 kmem_cache_free(
790 btrfs_free_space_cachep, e);
791 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400792 }
Josef Bacika67509c2011-10-05 15:18:58 -0400793 spin_lock(&ctl->tree_lock);
794 ret = link_free_space(ctl, e);
795 ctl->total_bitmaps++;
796 ctl->op->recalc_thresholds(ctl);
797 spin_unlock(&ctl->tree_lock);
798 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000799 btrfs_err(root->fs_info,
800 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400801 kmem_cache_free(btrfs_free_space_cachep, e);
802 goto free_cache;
803 }
804 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400805 }
806
Josef Bacika67509c2011-10-05 15:18:58 -0400807 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400808 }
809
Josef Bacik2f120c02011-11-10 20:45:05 -0500810 io_ctl_unmap_page(&io_ctl);
811
Josef Bacika67509c2011-10-05 15:18:58 -0400812 /*
813 * We add the bitmaps at the end of the entries in order that
814 * the bitmap entries are added to the cache.
815 */
816 list_for_each_entry_safe(e, n, &bitmaps, list) {
817 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400818 ret = io_ctl_read_bitmap(&io_ctl, e);
819 if (ret)
820 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400821 }
822
823 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400824 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400825 ret = 1;
826out:
Josef Bacika67509c2011-10-05 15:18:58 -0400827 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400828 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400829free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400830 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800831 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400832 goto out;
833}
834
Li Zefan0414efa2011-04-20 10:20:14 +0800835int load_free_space_cache(struct btrfs_fs_info *fs_info,
836 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400837{
Li Zefan34d52cb2011-03-29 13:46:06 +0800838 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800839 struct btrfs_root *root = fs_info->tree_root;
840 struct inode *inode;
841 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400842 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800843 bool matched;
844 u64 used = btrfs_block_group_used(&block_group->item);
845
846 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800847 * If this block group has been marked to be cleared for one reason or
848 * another then we can't trust the on disk cache, so just return.
849 */
850 spin_lock(&block_group->lock);
851 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
852 spin_unlock(&block_group->lock);
853 return 0;
854 }
855 spin_unlock(&block_group->lock);
856
857 path = btrfs_alloc_path();
858 if (!path)
859 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400860 path->search_commit_root = 1;
861 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800862
863 inode = lookup_free_space_inode(root, block_group, path);
864 if (IS_ERR(inode)) {
865 btrfs_free_path(path);
866 return 0;
867 }
868
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400869 /* We may have converted the inode and made the cache invalid. */
870 spin_lock(&block_group->lock);
871 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
872 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900873 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400874 goto out;
875 }
876 spin_unlock(&block_group->lock);
877
Li Zefan0414efa2011-04-20 10:20:14 +0800878 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
879 path, block_group->key.objectid);
880 btrfs_free_path(path);
881 if (ret <= 0)
882 goto out;
883
884 spin_lock(&ctl->tree_lock);
885 matched = (ctl->free_space == (block_group->key.offset - used -
886 block_group->bytes_super));
887 spin_unlock(&ctl->tree_lock);
888
889 if (!matched) {
890 __btrfs_remove_free_space_cache(ctl);
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400891 btrfs_warn(fs_info,
892 "block group %llu has wrong amount of free space",
893 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800894 ret = -1;
895 }
896out:
897 if (ret < 0) {
898 /* This cache is bogus, make sure it gets cleared */
899 spin_lock(&block_group->lock);
900 block_group->disk_cache_state = BTRFS_DC_CLEAR;
901 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800902 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800903
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400904 btrfs_warn(fs_info,
905 "failed to load free space cache for block group %llu, rebuilding it now",
906 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800907 }
908
909 iput(inode);
910 return ret;
911}
912
Chris Masond4452bc2014-05-19 20:47:56 -0700913static noinline_for_stack
Chris Mason4c6d1d82015-04-06 13:17:20 -0700914int write_cache_extent_entries(struct btrfs_io_ctl *io_ctl,
Chris Masond4452bc2014-05-19 20:47:56 -0700915 struct btrfs_free_space_ctl *ctl,
916 struct btrfs_block_group_cache *block_group,
917 int *entries, int *bitmaps,
918 struct list_head *bitmap_list)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400919{
Josef Bacikc09544e2011-08-30 10:19:10 -0400920 int ret;
Chris Masond4452bc2014-05-19 20:47:56 -0700921 struct btrfs_free_cluster *cluster = NULL;
Chris Mason1bbc6212015-04-06 12:46:08 -0700922 struct btrfs_free_cluster *cluster_locked = NULL;
Chris Masond4452bc2014-05-19 20:47:56 -0700923 struct rb_node *node = rb_first(&ctl->free_space_offset);
Filipe Manana55507ce2014-12-01 17:04:09 +0000924 struct btrfs_trim_range *trim_entry;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400925
Josef Bacik43be2142011-04-01 14:55:00 +0000926 /* Get the cluster for this block_group if it exists */
Chris Masond4452bc2014-05-19 20:47:56 -0700927 if (block_group && !list_empty(&block_group->cluster_list)) {
Josef Bacik43be2142011-04-01 14:55:00 +0000928 cluster = list_entry(block_group->cluster_list.next,
929 struct btrfs_free_cluster,
930 block_group_list);
Chris Masond4452bc2014-05-19 20:47:56 -0700931 }
Josef Bacik43be2142011-04-01 14:55:00 +0000932
Josef Bacikf75b1302011-10-05 10:00:18 -0400933 if (!node && cluster) {
Chris Mason1bbc6212015-04-06 12:46:08 -0700934 cluster_locked = cluster;
935 spin_lock(&cluster_locked->lock);
Josef Bacikf75b1302011-10-05 10:00:18 -0400936 node = rb_first(&cluster->root);
937 cluster = NULL;
938 }
939
Josef Bacik0cb59c92010-07-02 12:14:14 -0400940 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400941 while (node) {
942 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400943
Josef Bacika67509c2011-10-05 15:18:58 -0400944 e = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masond4452bc2014-05-19 20:47:56 -0700945 *entries += 1;
Josef Bacik43be2142011-04-01 14:55:00 +0000946
Chris Masond4452bc2014-05-19 20:47:56 -0700947 ret = io_ctl_add_entry(io_ctl, e->offset, e->bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400948 e->bitmap);
949 if (ret)
Chris Masond4452bc2014-05-19 20:47:56 -0700950 goto fail;
Josef Bacika67509c2011-10-05 15:18:58 -0400951
952 if (e->bitmap) {
Chris Masond4452bc2014-05-19 20:47:56 -0700953 list_add_tail(&e->list, bitmap_list);
954 *bitmaps += 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400955 }
956 node = rb_next(node);
957 if (!node && cluster) {
958 node = rb_first(&cluster->root);
Chris Mason1bbc6212015-04-06 12:46:08 -0700959 cluster_locked = cluster;
960 spin_lock(&cluster_locked->lock);
Josef Bacika67509c2011-10-05 15:18:58 -0400961 cluster = NULL;
962 }
963 }
Chris Mason1bbc6212015-04-06 12:46:08 -0700964 if (cluster_locked) {
965 spin_unlock(&cluster_locked->lock);
966 cluster_locked = NULL;
967 }
Filipe Manana55507ce2014-12-01 17:04:09 +0000968
969 /*
970 * Make sure we don't miss any range that was removed from our rbtree
971 * because trimming is running. Otherwise after a umount+mount (or crash
972 * after committing the transaction) we would leak free space and get
973 * an inconsistent free space cache report from fsck.
974 */
975 list_for_each_entry(trim_entry, &ctl->trimming_ranges, list) {
976 ret = io_ctl_add_entry(io_ctl, trim_entry->start,
977 trim_entry->bytes, NULL);
978 if (ret)
979 goto fail;
980 *entries += 1;
981 }
982
Chris Masond4452bc2014-05-19 20:47:56 -0700983 return 0;
984fail:
Chris Mason1bbc6212015-04-06 12:46:08 -0700985 if (cluster_locked)
986 spin_unlock(&cluster_locked->lock);
Chris Masond4452bc2014-05-19 20:47:56 -0700987 return -ENOSPC;
988}
989
990static noinline_for_stack int
991update_cache_item(struct btrfs_trans_handle *trans,
992 struct btrfs_root *root,
993 struct inode *inode,
994 struct btrfs_path *path, u64 offset,
995 int entries, int bitmaps)
996{
997 struct btrfs_key key;
998 struct btrfs_free_space_header *header;
999 struct extent_buffer *leaf;
1000 int ret;
1001
1002 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
1003 key.offset = offset;
1004 key.type = 0;
1005
1006 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1007 if (ret < 0) {
1008 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
1009 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1010 GFP_NOFS);
1011 goto fail;
1012 }
1013 leaf = path->nodes[0];
1014 if (ret > 0) {
1015 struct btrfs_key found_key;
1016 ASSERT(path->slots[0]);
1017 path->slots[0]--;
1018 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1019 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
1020 found_key.offset != offset) {
1021 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
1022 inode->i_size - 1,
1023 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
1024 NULL, GFP_NOFS);
1025 btrfs_release_path(path);
1026 goto fail;
1027 }
1028 }
1029
1030 BTRFS_I(inode)->generation = trans->transid;
1031 header = btrfs_item_ptr(leaf, path->slots[0],
1032 struct btrfs_free_space_header);
1033 btrfs_set_free_space_entries(leaf, header, entries);
1034 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
1035 btrfs_set_free_space_generation(leaf, header, trans->transid);
1036 btrfs_mark_buffer_dirty(leaf);
1037 btrfs_release_path(path);
1038
1039 return 0;
1040
1041fail:
1042 return -1;
1043}
1044
1045static noinline_for_stack int
Miao Xie5349d6c2014-06-19 10:42:49 +08001046write_pinned_extent_entries(struct btrfs_root *root,
1047 struct btrfs_block_group_cache *block_group,
Chris Mason4c6d1d82015-04-06 13:17:20 -07001048 struct btrfs_io_ctl *io_ctl,
Miao Xie5349d6c2014-06-19 10:42:49 +08001049 int *entries)
Chris Masond4452bc2014-05-19 20:47:56 -07001050{
1051 u64 start, extent_start, extent_end, len;
Chris Masond4452bc2014-05-19 20:47:56 -07001052 struct extent_io_tree *unpin = NULL;
1053 int ret;
Josef Bacika67509c2011-10-05 15:18:58 -04001054
Miao Xie5349d6c2014-06-19 10:42:49 +08001055 if (!block_group)
1056 return 0;
1057
Josef Bacika67509c2011-10-05 15:18:58 -04001058 /*
1059 * We want to add any pinned extents to our free space cache
1060 * so we don't leak the space
Chris Masond4452bc2014-05-19 20:47:56 -07001061 *
Li Zefandb804f22012-01-10 16:41:01 +08001062 * We shouldn't have switched the pinned extents yet so this is the
1063 * right one
1064 */
1065 unpin = root->fs_info->pinned_extents;
1066
Miao Xie5349d6c2014-06-19 10:42:49 +08001067 start = block_group->key.objectid;
Li Zefandb804f22012-01-10 16:41:01 +08001068
Miao Xie5349d6c2014-06-19 10:42:49 +08001069 while (start < block_group->key.objectid + block_group->key.offset) {
Li Zefandb804f22012-01-10 16:41:01 +08001070 ret = find_first_extent_bit(unpin, start,
1071 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -04001072 EXTENT_DIRTY, NULL);
Miao Xie5349d6c2014-06-19 10:42:49 +08001073 if (ret)
1074 return 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001075
Josef Bacika67509c2011-10-05 15:18:58 -04001076 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +08001077 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -04001078 block_group->key.offset)
Miao Xie5349d6c2014-06-19 10:42:49 +08001079 return 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001080
Li Zefandb804f22012-01-10 16:41:01 +08001081 extent_start = max(extent_start, start);
1082 extent_end = min(block_group->key.objectid +
1083 block_group->key.offset, extent_end + 1);
1084 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001085
Chris Masond4452bc2014-05-19 20:47:56 -07001086 *entries += 1;
1087 ret = io_ctl_add_entry(io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -04001088 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001089 return -ENOSPC;
Josef Bacik2f356122011-06-10 15:31:13 -04001090
Li Zefandb804f22012-01-10 16:41:01 +08001091 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -04001092 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001093
Miao Xie5349d6c2014-06-19 10:42:49 +08001094 return 0;
1095}
1096
1097static noinline_for_stack int
Chris Mason4c6d1d82015-04-06 13:17:20 -07001098write_bitmap_entries(struct btrfs_io_ctl *io_ctl, struct list_head *bitmap_list)
Miao Xie5349d6c2014-06-19 10:42:49 +08001099{
Geliang Tang7ae16812015-12-18 22:17:00 +08001100 struct btrfs_free_space *entry, *next;
Miao Xie5349d6c2014-06-19 10:42:49 +08001101 int ret;
1102
Josef Bacik0cb59c92010-07-02 12:14:14 -04001103 /* Write out the bitmaps */
Geliang Tang7ae16812015-12-18 22:17:00 +08001104 list_for_each_entry_safe(entry, next, bitmap_list, list) {
Chris Masond4452bc2014-05-19 20:47:56 -07001105 ret = io_ctl_add_bitmap(io_ctl, entry->bitmap);
Josef Bacika67509c2011-10-05 15:18:58 -04001106 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001107 return -ENOSPC;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001108 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001109 }
1110
Miao Xie5349d6c2014-06-19 10:42:49 +08001111 return 0;
1112}
Josef Bacik0cb59c92010-07-02 12:14:14 -04001113
Miao Xie5349d6c2014-06-19 10:42:49 +08001114static int flush_dirty_cache(struct inode *inode)
1115{
1116 int ret;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001117
Josef Bacik0ef8b722013-10-25 16:13:35 -04001118 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Miao Xie5349d6c2014-06-19 10:42:49 +08001119 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001120 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
1121 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1122 GFP_NOFS);
Chris Masond4452bc2014-05-19 20:47:56 -07001123
Miao Xie5349d6c2014-06-19 10:42:49 +08001124 return ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001125}
1126
1127static void noinline_for_stack
Chris Masona3bdccc2015-04-24 11:00:00 -07001128cleanup_bitmap_list(struct list_head *bitmap_list)
Chris Masond4452bc2014-05-19 20:47:56 -07001129{
Geliang Tang7ae16812015-12-18 22:17:00 +08001130 struct btrfs_free_space *entry, *next;
Miao Xie5349d6c2014-06-19 10:42:49 +08001131
Geliang Tang7ae16812015-12-18 22:17:00 +08001132 list_for_each_entry_safe(entry, next, bitmap_list, list)
Chris Masond4452bc2014-05-19 20:47:56 -07001133 list_del_init(&entry->list);
Chris Masona3bdccc2015-04-24 11:00:00 -07001134}
1135
1136static void noinline_for_stack
1137cleanup_write_cache_enospc(struct inode *inode,
1138 struct btrfs_io_ctl *io_ctl,
1139 struct extent_state **cached_state,
1140 struct list_head *bitmap_list)
1141{
Chris Masond4452bc2014-05-19 20:47:56 -07001142 io_ctl_drop_pages(io_ctl);
1143 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1144 i_size_read(inode) - 1, cached_state,
1145 GFP_NOFS);
1146}
1147
Chris Masonc9dc4c62015-04-04 17:14:42 -07001148int btrfs_wait_cache_io(struct btrfs_root *root,
1149 struct btrfs_trans_handle *trans,
1150 struct btrfs_block_group_cache *block_group,
1151 struct btrfs_io_ctl *io_ctl,
1152 struct btrfs_path *path, u64 offset)
1153{
1154 int ret;
1155 struct inode *inode = io_ctl->inode;
1156
Chris Mason1bbc6212015-04-06 12:46:08 -07001157 if (!inode)
1158 return 0;
1159
Chris Mason85db36c2015-04-23 08:02:49 -07001160 if (block_group)
1161 root = root->fs_info->tree_root;
Chris Masonc9dc4c62015-04-04 17:14:42 -07001162
1163 /* Flush the dirty pages in the cache file. */
1164 ret = flush_dirty_cache(inode);
1165 if (ret)
1166 goto out;
1167
1168 /* Update the cache item to tell everyone this cache file is valid. */
1169 ret = update_cache_item(trans, root, inode, path, offset,
1170 io_ctl->entries, io_ctl->bitmaps);
1171out:
Chris Masonc9dc4c62015-04-04 17:14:42 -07001172 if (ret) {
1173 invalidate_inode_pages2(inode->i_mapping);
1174 BTRFS_I(inode)->generation = 0;
1175 if (block_group) {
1176#ifdef DEBUG
1177 btrfs_err(root->fs_info,
1178 "failed to write free space cache for block group %llu",
1179 block_group->key.objectid);
1180#endif
1181 }
1182 }
1183 btrfs_update_inode(trans, root, inode);
1184
1185 if (block_group) {
Chris Mason1bbc6212015-04-06 12:46:08 -07001186 /* the dirty list is protected by the dirty_bgs_lock */
1187 spin_lock(&trans->transaction->dirty_bgs_lock);
1188
1189 /* the disk_cache_state is protected by the block group lock */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001190 spin_lock(&block_group->lock);
1191
1192 /*
1193 * only mark this as written if we didn't get put back on
Chris Mason1bbc6212015-04-06 12:46:08 -07001194 * the dirty list while waiting for IO. Otherwise our
1195 * cache state won't be right, and we won't get written again
Chris Masonc9dc4c62015-04-04 17:14:42 -07001196 */
1197 if (!ret && list_empty(&block_group->dirty_list))
1198 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
1199 else if (ret)
1200 block_group->disk_cache_state = BTRFS_DC_ERROR;
1201
1202 spin_unlock(&block_group->lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07001203 spin_unlock(&trans->transaction->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001204 io_ctl->inode = NULL;
1205 iput(inode);
1206 }
1207
1208 return ret;
1209
1210}
1211
Chris Masond4452bc2014-05-19 20:47:56 -07001212/**
1213 * __btrfs_write_out_cache - write out cached info to an inode
1214 * @root - the root the inode belongs to
1215 * @ctl - the free space cache we are going to write out
1216 * @block_group - the block_group for this cache if it belongs to a block_group
1217 * @trans - the trans handle
1218 * @path - the path to use
1219 * @offset - the offset for the key we'll insert
1220 *
1221 * This function writes out a free space cache struct to disk for quick recovery
Geliang Tang8cd1e732015-10-04 17:05:32 +08001222 * on mount. This will return 0 if it was successful in writing the cache out,
Omar Sandovalb8605452015-02-24 02:47:06 -08001223 * or an errno if it was not.
Chris Masond4452bc2014-05-19 20:47:56 -07001224 */
1225static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
1226 struct btrfs_free_space_ctl *ctl,
1227 struct btrfs_block_group_cache *block_group,
Chris Masonc9dc4c62015-04-04 17:14:42 -07001228 struct btrfs_io_ctl *io_ctl,
Chris Masond4452bc2014-05-19 20:47:56 -07001229 struct btrfs_trans_handle *trans,
1230 struct btrfs_path *path, u64 offset)
1231{
1232 struct extent_state *cached_state = NULL;
Miao Xie5349d6c2014-06-19 10:42:49 +08001233 LIST_HEAD(bitmap_list);
Chris Masond4452bc2014-05-19 20:47:56 -07001234 int entries = 0;
1235 int bitmaps = 0;
1236 int ret;
Chris Masonc9dc4c62015-04-04 17:14:42 -07001237 int must_iput = 0;
Chris Masond4452bc2014-05-19 20:47:56 -07001238
1239 if (!i_size_read(inode))
Omar Sandovalb8605452015-02-24 02:47:06 -08001240 return -EIO;
Chris Masond4452bc2014-05-19 20:47:56 -07001241
Chris Masonc9dc4c62015-04-04 17:14:42 -07001242 WARN_ON(io_ctl->pages);
1243 ret = io_ctl_init(io_ctl, inode, root, 1);
Chris Masond4452bc2014-05-19 20:47:56 -07001244 if (ret)
Omar Sandovalb8605452015-02-24 02:47:06 -08001245 return ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001246
Miao Xiee570fd22014-06-19 10:42:50 +08001247 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA)) {
1248 down_write(&block_group->data_rwsem);
1249 spin_lock(&block_group->lock);
1250 if (block_group->delalloc_bytes) {
1251 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
1252 spin_unlock(&block_group->lock);
1253 up_write(&block_group->data_rwsem);
1254 BTRFS_I(inode)->generation = 0;
1255 ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07001256 must_iput = 1;
Miao Xiee570fd22014-06-19 10:42:50 +08001257 goto out;
1258 }
1259 spin_unlock(&block_group->lock);
1260 }
1261
Chris Masond4452bc2014-05-19 20:47:56 -07001262 /* Lock all pages first so we can lock the extent safely. */
Omar Sandovalb8605452015-02-24 02:47:06 -08001263 ret = io_ctl_prepare_pages(io_ctl, inode, 0);
1264 if (ret)
Josef Bacik8cfb3962017-11-15 16:20:52 -05001265 goto out_unlock;
Chris Masond4452bc2014-05-19 20:47:56 -07001266
1267 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
David Sterbaff13db42015-12-03 14:30:40 +01001268 &cached_state);
Chris Masond4452bc2014-05-19 20:47:56 -07001269
Chris Masonc9dc4c62015-04-04 17:14:42 -07001270 io_ctl_set_generation(io_ctl, trans->transid);
Chris Masond4452bc2014-05-19 20:47:56 -07001271
Filipe Manana55507ce2014-12-01 17:04:09 +00001272 mutex_lock(&ctl->cache_writeout_mutex);
Miao Xie5349d6c2014-06-19 10:42:49 +08001273 /* Write out the extent entries in the free space cache */
Chris Mason1bbc6212015-04-06 12:46:08 -07001274 spin_lock(&ctl->tree_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001275 ret = write_cache_extent_entries(io_ctl, ctl,
Chris Masond4452bc2014-05-19 20:47:56 -07001276 block_group, &entries, &bitmaps,
1277 &bitmap_list);
Chris Masona3bdccc2015-04-24 11:00:00 -07001278 if (ret)
1279 goto out_nospc_locked;
Chris Masond4452bc2014-05-19 20:47:56 -07001280
Miao Xie5349d6c2014-06-19 10:42:49 +08001281 /*
1282 * Some spaces that are freed in the current transaction are pinned,
1283 * they will be added into free space cache after the transaction is
1284 * committed, we shouldn't lose them.
Chris Mason1bbc6212015-04-06 12:46:08 -07001285 *
1286 * If this changes while we are working we'll get added back to
1287 * the dirty list and redo it. No locking needed
Miao Xie5349d6c2014-06-19 10:42:49 +08001288 */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001289 ret = write_pinned_extent_entries(root, block_group, io_ctl, &entries);
Chris Masona3bdccc2015-04-24 11:00:00 -07001290 if (ret)
1291 goto out_nospc_locked;
Miao Xie5349d6c2014-06-19 10:42:49 +08001292
Filipe Manana55507ce2014-12-01 17:04:09 +00001293 /*
1294 * At last, we write out all the bitmaps and keep cache_writeout_mutex
1295 * locked while doing it because a concurrent trim can be manipulating
1296 * or freeing the bitmap.
1297 */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001298 ret = write_bitmap_entries(io_ctl, &bitmap_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07001299 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00001300 mutex_unlock(&ctl->cache_writeout_mutex);
Miao Xie5349d6c2014-06-19 10:42:49 +08001301 if (ret)
1302 goto out_nospc;
1303
1304 /* Zero out the rest of the pages just to make sure */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001305 io_ctl_zero_remaining_pages(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001306
1307 /* Everything is written out, now we dirty the pages in the file. */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001308 ret = btrfs_dirty_pages(root, inode, io_ctl->pages, io_ctl->num_pages,
Miao Xie5349d6c2014-06-19 10:42:49 +08001309 0, i_size_read(inode), &cached_state);
1310 if (ret)
1311 goto out_nospc;
1312
Miao Xiee570fd22014-06-19 10:42:50 +08001313 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA))
1314 up_write(&block_group->data_rwsem);
Miao Xie5349d6c2014-06-19 10:42:49 +08001315 /*
1316 * Release the pages and unlock the extent, we will flush
1317 * them out later
1318 */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001319 io_ctl_drop_pages(io_ctl);
Filipe Manana0e7f1572020-08-14 11:04:09 +01001320 io_ctl_free(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001321
1322 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1323 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1324
Chris Masonc9dc4c62015-04-04 17:14:42 -07001325 /*
1326 * at this point the pages are under IO and we're happy,
1327 * The caller is responsible for waiting on them and updating the
1328 * the cache and the inode
1329 */
1330 io_ctl->entries = entries;
1331 io_ctl->bitmaps = bitmaps;
1332
1333 ret = btrfs_fdatawrite_range(inode, 0, (u64)-1);
Miao Xie5349d6c2014-06-19 10:42:49 +08001334 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001335 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001336
Chris Masonc9dc4c62015-04-04 17:14:42 -07001337 return 0;
1338
Josef Bacik2f356122011-06-10 15:31:13 -04001339out:
Chris Masonc9dc4c62015-04-04 17:14:42 -07001340 io_ctl->inode = NULL;
1341 io_ctl_free(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001342 if (ret) {
Josef Bacika67509c2011-10-05 15:18:58 -04001343 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001344 BTRFS_I(inode)->generation = 0;
1345 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001346 btrfs_update_inode(trans, root, inode);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001347 if (must_iput)
1348 iput(inode);
Miao Xie5349d6c2014-06-19 10:42:49 +08001349 return ret;
Josef Bacika67509c2011-10-05 15:18:58 -04001350
Chris Masona3bdccc2015-04-24 11:00:00 -07001351out_nospc_locked:
1352 cleanup_bitmap_list(&bitmap_list);
1353 spin_unlock(&ctl->tree_lock);
1354 mutex_unlock(&ctl->cache_writeout_mutex);
1355
Josef Bacika67509c2011-10-05 15:18:58 -04001356out_nospc:
Chris Masonc9dc4c62015-04-04 17:14:42 -07001357 cleanup_write_cache_enospc(inode, io_ctl, &cached_state, &bitmap_list);
Miao Xiee570fd22014-06-19 10:42:50 +08001358
Josef Bacik8cfb3962017-11-15 16:20:52 -05001359out_unlock:
Miao Xiee570fd22014-06-19 10:42:50 +08001360 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA))
1361 up_write(&block_group->data_rwsem);
1362
Josef Bacika67509c2011-10-05 15:18:58 -04001363 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001364}
1365
1366int btrfs_write_out_cache(struct btrfs_root *root,
1367 struct btrfs_trans_handle *trans,
1368 struct btrfs_block_group_cache *block_group,
1369 struct btrfs_path *path)
1370{
1371 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1372 struct inode *inode;
1373 int ret = 0;
1374
1375 root = root->fs_info->tree_root;
1376
1377 spin_lock(&block_group->lock);
1378 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1379 spin_unlock(&block_group->lock);
1380 return 0;
1381 }
1382 spin_unlock(&block_group->lock);
1383
1384 inode = lookup_free_space_inode(root, block_group, path);
1385 if (IS_ERR(inode))
1386 return 0;
1387
Chris Masonc9dc4c62015-04-04 17:14:42 -07001388 ret = __btrfs_write_out_cache(root, inode, ctl, block_group,
1389 &block_group->io_ctl, trans,
Li Zefan0414efa2011-04-20 10:20:14 +08001390 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001391 if (ret) {
Josef Bacikc09544e2011-08-30 10:19:10 -04001392#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00001393 btrfs_err(root->fs_info,
1394 "failed to write free space cache for block group %llu",
1395 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001396#endif
Chris Masonc9dc4c62015-04-04 17:14:42 -07001397 spin_lock(&block_group->lock);
1398 block_group->disk_cache_state = BTRFS_DC_ERROR;
1399 spin_unlock(&block_group->lock);
1400
1401 block_group->io_ctl.inode = NULL;
1402 iput(inode);
Li Zefan0414efa2011-04-20 10:20:14 +08001403 }
1404
Chris Masonc9dc4c62015-04-04 17:14:42 -07001405 /*
1406 * if ret == 0 the caller is expected to call btrfs_wait_cache_io
1407 * to wait for IO and put the inode
1408 */
1409
Josef Bacik0cb59c92010-07-02 12:14:14 -04001410 return ret;
1411}
1412
Li Zefan34d52cb2011-03-29 13:46:06 +08001413static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001414 u64 offset)
1415{
Josef Bacikb12d6862013-08-26 17:14:08 -04001416 ASSERT(offset >= bitmap_start);
Josef Bacik96303082009-07-13 21:29:25 -04001417 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001418 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001419}
1420
Li Zefan34d52cb2011-03-29 13:46:06 +08001421static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001422{
Li Zefan34d52cb2011-03-29 13:46:06 +08001423 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001424}
1425
Li Zefan34d52cb2011-03-29 13:46:06 +08001426static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001427 u64 offset)
1428{
1429 u64 bitmap_start;
Feifei Xu0ef64472016-06-01 19:18:24 +08001430 u64 bytes_per_bitmap;
Josef Bacik96303082009-07-13 21:29:25 -04001431
Li Zefan34d52cb2011-03-29 13:46:06 +08001432 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1433 bitmap_start = offset - ctl->start;
Feifei Xu0ef64472016-06-01 19:18:24 +08001434 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
Josef Bacik96303082009-07-13 21:29:25 -04001435 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001436 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001437
1438 return bitmap_start;
1439}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001440
1441static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001442 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001443{
1444 struct rb_node **p = &root->rb_node;
1445 struct rb_node *parent = NULL;
1446 struct btrfs_free_space *info;
1447
1448 while (*p) {
1449 parent = *p;
1450 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1451
Josef Bacik96303082009-07-13 21:29:25 -04001452 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001453 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001454 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001455 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001456 } else {
1457 /*
1458 * we could have a bitmap entry and an extent entry
1459 * share the same offset. If this is the case, we want
1460 * the extent entry to always be found first if we do a
1461 * linear search through the tree, since we want to have
1462 * the quickest allocation time, and allocating from an
1463 * extent is faster than allocating from a bitmap. So
1464 * if we're inserting a bitmap and we find an entry at
1465 * this offset, we want to go right, or after this entry
1466 * logically. If we are inserting an extent and we've
1467 * found a bitmap, we want to go left, or before
1468 * logically.
1469 */
1470 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001471 if (info->bitmap) {
1472 WARN_ON_ONCE(1);
1473 return -EEXIST;
1474 }
Josef Bacik96303082009-07-13 21:29:25 -04001475 p = &(*p)->rb_right;
1476 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001477 if (!info->bitmap) {
1478 WARN_ON_ONCE(1);
1479 return -EEXIST;
1480 }
Josef Bacik96303082009-07-13 21:29:25 -04001481 p = &(*p)->rb_left;
1482 }
1483 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001484 }
1485
1486 rb_link_node(node, parent, p);
1487 rb_insert_color(node, root);
1488
1489 return 0;
1490}
1491
1492/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001493 * searches the tree for the given offset.
1494 *
Josef Bacik96303082009-07-13 21:29:25 -04001495 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1496 * want a section that has at least bytes size and comes at or after the given
1497 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001498 */
Josef Bacik96303082009-07-13 21:29:25 -04001499static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001500tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001501 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001502{
Li Zefan34d52cb2011-03-29 13:46:06 +08001503 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001504 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001505
Josef Bacik96303082009-07-13 21:29:25 -04001506 /* find entry that is closest to the 'offset' */
1507 while (1) {
1508 if (!n) {
1509 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001510 break;
1511 }
Josef Bacik96303082009-07-13 21:29:25 -04001512
1513 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1514 prev = entry;
1515
1516 if (offset < entry->offset)
1517 n = n->rb_left;
1518 else if (offset > entry->offset)
1519 n = n->rb_right;
1520 else
1521 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001522 }
1523
Josef Bacik96303082009-07-13 21:29:25 -04001524 if (bitmap_only) {
1525 if (!entry)
1526 return NULL;
1527 if (entry->bitmap)
1528 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001529
Josef Bacik96303082009-07-13 21:29:25 -04001530 /*
1531 * bitmap entry and extent entry may share same offset,
1532 * in that case, bitmap entry comes after extent entry.
1533 */
1534 n = rb_next(n);
1535 if (!n)
1536 return NULL;
1537 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1538 if (entry->offset != offset)
1539 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001540
Josef Bacik96303082009-07-13 21:29:25 -04001541 WARN_ON(!entry->bitmap);
1542 return entry;
1543 } else if (entry) {
1544 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001545 /*
Josef Bacik96303082009-07-13 21:29:25 -04001546 * if previous extent entry covers the offset,
1547 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001548 */
Miao Xiede6c4112012-10-18 08:18:01 +00001549 n = rb_prev(&entry->offset_index);
1550 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001551 prev = rb_entry(n, struct btrfs_free_space,
1552 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001553 if (!prev->bitmap &&
1554 prev->offset + prev->bytes > offset)
1555 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001556 }
Josef Bacik96303082009-07-13 21:29:25 -04001557 }
1558 return entry;
1559 }
1560
1561 if (!prev)
1562 return NULL;
1563
1564 /* find last entry before the 'offset' */
1565 entry = prev;
1566 if (entry->offset > offset) {
1567 n = rb_prev(&entry->offset_index);
1568 if (n) {
1569 entry = rb_entry(n, struct btrfs_free_space,
1570 offset_index);
Josef Bacikb12d6862013-08-26 17:14:08 -04001571 ASSERT(entry->offset <= offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001572 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001573 if (fuzzy)
1574 return entry;
1575 else
1576 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001577 }
1578 }
1579
Josef Bacik96303082009-07-13 21:29:25 -04001580 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001581 n = rb_prev(&entry->offset_index);
1582 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001583 prev = rb_entry(n, struct btrfs_free_space,
1584 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001585 if (!prev->bitmap &&
1586 prev->offset + prev->bytes > offset)
1587 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001588 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001589 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001590 return entry;
1591 } else if (entry->offset + entry->bytes > offset)
1592 return entry;
1593
1594 if (!fuzzy)
1595 return NULL;
1596
1597 while (1) {
1598 if (entry->bitmap) {
1599 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001600 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001601 break;
1602 } else {
1603 if (entry->offset + entry->bytes > offset)
1604 break;
1605 }
1606
1607 n = rb_next(&entry->offset_index);
1608 if (!n)
1609 return NULL;
1610 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1611 }
1612 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001613}
1614
Li Zefanf333adb2010-11-09 14:57:39 +08001615static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001616__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001617 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001618{
Li Zefan34d52cb2011-03-29 13:46:06 +08001619 rb_erase(&info->offset_index, &ctl->free_space_offset);
1620 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001621}
1622
Li Zefan34d52cb2011-03-29 13:46:06 +08001623static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001624 struct btrfs_free_space *info)
1625{
Li Zefan34d52cb2011-03-29 13:46:06 +08001626 __unlink_free_space(ctl, info);
1627 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001628}
1629
Li Zefan34d52cb2011-03-29 13:46:06 +08001630static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001631 struct btrfs_free_space *info)
1632{
1633 int ret = 0;
1634
Josef Bacikb12d6862013-08-26 17:14:08 -04001635 ASSERT(info->bytes || info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001636 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001637 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001638 if (ret)
1639 return ret;
1640
Li Zefan34d52cb2011-03-29 13:46:06 +08001641 ctl->free_space += info->bytes;
1642 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001643 return ret;
1644}
1645
Li Zefan34d52cb2011-03-29 13:46:06 +08001646static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001647{
Li Zefan34d52cb2011-03-29 13:46:06 +08001648 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001649 u64 max_bytes;
1650 u64 bitmap_bytes;
1651 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001652 u64 size = block_group->key.offset;
Feifei Xu0ef64472016-06-01 19:18:24 +08001653 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
1654 u64 max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
Li Zefan34d52cb2011-03-29 13:46:06 +08001655
Feifei Xu0ef64472016-06-01 19:18:24 +08001656 max_bitmaps = max_t(u64, max_bitmaps, 1);
Josef Bacikdde57402013-02-12 14:07:51 -05001657
Josef Bacikb12d6862013-08-26 17:14:08 -04001658 ASSERT(ctl->total_bitmaps <= max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001659
1660 /*
1661 * The goal is to keep the total amount of memory used per 1gb of space
1662 * at or below 32k, so we need to adjust how much memory we allow to be
1663 * used by extent based free space tracking
1664 */
Byongho Leeee221842015-12-15 01:42:10 +09001665 if (size < SZ_1G)
Li Zefan8eb2d822010-11-09 14:48:01 +08001666 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1667 else
Byongho Leeee221842015-12-15 01:42:10 +09001668 max_bytes = MAX_CACHE_BYTES_PER_GIG * div_u64(size, SZ_1G);
Josef Bacik96303082009-07-13 21:29:25 -04001669
Josef Bacik25891f72009-09-11 16:11:20 -04001670 /*
1671 * we want to account for 1 more bitmap than what we have so we can make
1672 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1673 * we add more bitmaps.
1674 */
Feifei Xub9ef22d2016-06-01 19:18:25 +08001675 bitmap_bytes = (ctl->total_bitmaps + 1) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001676
Josef Bacik25891f72009-09-11 16:11:20 -04001677 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001678 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001679 return;
Josef Bacik96303082009-07-13 21:29:25 -04001680 }
Josef Bacik25891f72009-09-11 16:11:20 -04001681
1682 /*
David Sterbaf8c269d2015-01-16 17:21:12 +01001683 * we want the extent entry threshold to always be at most 1/2 the max
Josef Bacik25891f72009-09-11 16:11:20 -04001684 * bytes we can have, or whatever is less than that.
1685 */
1686 extent_bytes = max_bytes - bitmap_bytes;
David Sterbaf8c269d2015-01-16 17:21:12 +01001687 extent_bytes = min_t(u64, extent_bytes, max_bytes >> 1);
Josef Bacik25891f72009-09-11 16:11:20 -04001688
Li Zefan34d52cb2011-03-29 13:46:06 +08001689 ctl->extents_thresh =
David Sterbaf8c269d2015-01-16 17:21:12 +01001690 div_u64(extent_bytes, sizeof(struct btrfs_free_space));
Josef Bacik96303082009-07-13 21:29:25 -04001691}
1692
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001693static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1694 struct btrfs_free_space *info,
1695 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001696{
Li Zefanf38b6e72011-03-14 13:40:51 +08001697 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001698
Li Zefan34d52cb2011-03-29 13:46:06 +08001699 start = offset_to_bit(info->offset, ctl->unit, offset);
1700 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001701 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001702
Li Zefanf38b6e72011-03-14 13:40:51 +08001703 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001704
1705 info->bytes -= bytes;
Josef Bacik9ff40fb2018-09-28 07:18:00 -04001706 if (info->max_extent_size > ctl->unit)
1707 info->max_extent_size = 0;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001708}
1709
1710static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1711 struct btrfs_free_space *info, u64 offset,
1712 u64 bytes)
1713{
1714 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001715 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001716}
1717
Li Zefan34d52cb2011-03-29 13:46:06 +08001718static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001719 struct btrfs_free_space *info, u64 offset,
1720 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001721{
Li Zefanf38b6e72011-03-14 13:40:51 +08001722 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001723
Li Zefan34d52cb2011-03-29 13:46:06 +08001724 start = offset_to_bit(info->offset, ctl->unit, offset);
1725 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001726 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001727
Li Zefanf38b6e72011-03-14 13:40:51 +08001728 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001729
1730 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001731 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001732}
1733
Miao Xiea4820392013-09-09 13:19:42 +08001734/*
1735 * If we can not find suitable extent, we will use bytes to record
1736 * the size of the max extent.
1737 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001738static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001739 struct btrfs_free_space *bitmap_info, u64 *offset,
Josef Bacik0584f712015-10-02 16:12:23 -04001740 u64 *bytes, bool for_alloc)
Josef Bacik96303082009-07-13 21:29:25 -04001741{
1742 unsigned long found_bits = 0;
Miao Xiea4820392013-09-09 13:19:42 +08001743 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001744 unsigned long bits, i;
1745 unsigned long next_zero;
Miao Xiea4820392013-09-09 13:19:42 +08001746 unsigned long extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001747
Josef Bacikcef40482015-10-02 16:09:42 -04001748 /*
1749 * Skip searching the bitmap if we don't have a contiguous section that
1750 * is large enough for this allocation.
1751 */
Josef Bacik0584f712015-10-02 16:12:23 -04001752 if (for_alloc &&
1753 bitmap_info->max_extent_size &&
Josef Bacikcef40482015-10-02 16:09:42 -04001754 bitmap_info->max_extent_size < *bytes) {
1755 *bytes = bitmap_info->max_extent_size;
1756 return -1;
1757 }
1758
Li Zefan34d52cb2011-03-29 13:46:06 +08001759 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001760 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001761 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001762
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001763 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik0584f712015-10-02 16:12:23 -04001764 if (for_alloc && bits == 1) {
1765 found_bits = 1;
1766 break;
1767 }
Josef Bacik96303082009-07-13 21:29:25 -04001768 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1769 BITS_PER_BITMAP, i);
Miao Xiea4820392013-09-09 13:19:42 +08001770 extent_bits = next_zero - i;
1771 if (extent_bits >= bits) {
1772 found_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001773 break;
Miao Xiea4820392013-09-09 13:19:42 +08001774 } else if (extent_bits > max_bits) {
1775 max_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001776 }
1777 i = next_zero;
1778 }
1779
1780 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001781 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1782 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001783 return 0;
1784 }
1785
Miao Xiea4820392013-09-09 13:19:42 +08001786 *bytes = (u64)(max_bits) * ctl->unit;
Josef Bacikcef40482015-10-02 16:09:42 -04001787 bitmap_info->max_extent_size = *bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001788 return -1;
1789}
1790
Josef Bacikf3bc71f2018-10-12 15:32:33 -04001791static inline u64 get_max_extent_size(struct btrfs_free_space *entry)
1792{
1793 if (entry->bitmap)
1794 return entry->max_extent_size;
1795 return entry->bytes;
1796}
1797
Miao Xiea4820392013-09-09 13:19:42 +08001798/* Cache the size of the max extent in bytes */
Li Zefan34d52cb2011-03-29 13:46:06 +08001799static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001800find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
Miao Xiea4820392013-09-09 13:19:42 +08001801 unsigned long align, u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04001802{
1803 struct btrfs_free_space *entry;
1804 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001805 u64 tmp;
1806 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001807 int ret;
1808
Li Zefan34d52cb2011-03-29 13:46:06 +08001809 if (!ctl->free_space_offset.rb_node)
Miao Xiea4820392013-09-09 13:19:42 +08001810 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001811
Li Zefan34d52cb2011-03-29 13:46:06 +08001812 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001813 if (!entry)
Miao Xiea4820392013-09-09 13:19:42 +08001814 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001815
1816 for (node = &entry->offset_index; node; node = rb_next(node)) {
1817 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Miao Xiea4820392013-09-09 13:19:42 +08001818 if (entry->bytes < *bytes) {
Josef Bacikf3bc71f2018-10-12 15:32:33 -04001819 *max_extent_size = max(get_max_extent_size(entry),
1820 *max_extent_size);
Josef Bacik96303082009-07-13 21:29:25 -04001821 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001822 }
Josef Bacik96303082009-07-13 21:29:25 -04001823
David Woodhouse53b381b2013-01-29 18:40:14 -05001824 /* make sure the space returned is big enough
1825 * to match our requested alignment
1826 */
1827 if (*bytes >= align) {
Miao Xiea4820392013-09-09 13:19:42 +08001828 tmp = entry->offset - ctl->start + align - 1;
David Sterba47c57132015-02-20 18:43:47 +01001829 tmp = div64_u64(tmp, align);
David Woodhouse53b381b2013-01-29 18:40:14 -05001830 tmp = tmp * align + ctl->start;
1831 align_off = tmp - entry->offset;
1832 } else {
1833 align_off = 0;
1834 tmp = entry->offset;
1835 }
1836
Miao Xiea4820392013-09-09 13:19:42 +08001837 if (entry->bytes < *bytes + align_off) {
Josef Bacikf3bc71f2018-10-12 15:32:33 -04001838 *max_extent_size = max(get_max_extent_size(entry),
1839 *max_extent_size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001840 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001841 }
David Woodhouse53b381b2013-01-29 18:40:14 -05001842
Josef Bacik96303082009-07-13 21:29:25 -04001843 if (entry->bitmap) {
Miao Xiea4820392013-09-09 13:19:42 +08001844 u64 size = *bytes;
1845
Josef Bacik0584f712015-10-02 16:12:23 -04001846 ret = search_bitmap(ctl, entry, &tmp, &size, true);
David Woodhouse53b381b2013-01-29 18:40:14 -05001847 if (!ret) {
1848 *offset = tmp;
Miao Xiea4820392013-09-09 13:19:42 +08001849 *bytes = size;
Josef Bacik96303082009-07-13 21:29:25 -04001850 return entry;
Josef Bacikf3bc71f2018-10-12 15:32:33 -04001851 } else {
1852 *max_extent_size =
1853 max(get_max_extent_size(entry),
1854 *max_extent_size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001855 }
Josef Bacik96303082009-07-13 21:29:25 -04001856 continue;
1857 }
1858
David Woodhouse53b381b2013-01-29 18:40:14 -05001859 *offset = tmp;
1860 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001861 return entry;
1862 }
Miao Xiea4820392013-09-09 13:19:42 +08001863out:
Josef Bacik96303082009-07-13 21:29:25 -04001864 return NULL;
1865}
1866
Li Zefan34d52cb2011-03-29 13:46:06 +08001867static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001868 struct btrfs_free_space *info, u64 offset)
1869{
Li Zefan34d52cb2011-03-29 13:46:06 +08001870 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001871 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001872 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001873 link_free_space(ctl, info);
1874 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001875
Li Zefan34d52cb2011-03-29 13:46:06 +08001876 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001877}
1878
Li Zefan34d52cb2011-03-29 13:46:06 +08001879static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001880 struct btrfs_free_space *bitmap_info)
1881{
Li Zefan34d52cb2011-03-29 13:46:06 +08001882 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001883 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001884 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001885 ctl->total_bitmaps--;
1886 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001887}
1888
Li Zefan34d52cb2011-03-29 13:46:06 +08001889static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001890 struct btrfs_free_space *bitmap_info,
1891 u64 *offset, u64 *bytes)
1892{
1893 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001894 u64 search_start, search_bytes;
1895 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001896
1897again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001898 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001899
Josef Bacik6606bb92009-07-31 11:03:58 -04001900 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001901 * We need to search for bits in this bitmap. We could only cover some
1902 * of the extent in this bitmap thanks to how we add space, so we need
1903 * to search for as much as it as we can and clear that amount, and then
1904 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001905 */
1906 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001907 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001908 search_bytes = min(search_bytes, end - search_start + 1);
Josef Bacik0584f712015-10-02 16:12:23 -04001909 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes,
1910 false);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001911 if (ret < 0 || search_start != *offset)
1912 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001913
Josef Bacikbdb7d302012-06-27 15:10:56 -04001914 /* We may have found more bits than what we need */
1915 search_bytes = min(search_bytes, *bytes);
1916
1917 /* Cannot clear past the end of the bitmap */
1918 search_bytes = min(search_bytes, end - search_start + 1);
1919
1920 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1921 *offset += search_bytes;
1922 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001923
1924 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001925 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001926 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001927 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001928
Josef Bacik6606bb92009-07-31 11:03:58 -04001929 /*
1930 * no entry after this bitmap, but we still have bytes to
1931 * remove, so something has gone wrong.
1932 */
1933 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001934 return -EINVAL;
1935
Josef Bacik6606bb92009-07-31 11:03:58 -04001936 bitmap_info = rb_entry(next, struct btrfs_free_space,
1937 offset_index);
1938
1939 /*
1940 * if the next entry isn't a bitmap we need to return to let the
1941 * extent stuff do its work.
1942 */
Josef Bacik96303082009-07-13 21:29:25 -04001943 if (!bitmap_info->bitmap)
1944 return -EAGAIN;
1945
Josef Bacik6606bb92009-07-31 11:03:58 -04001946 /*
1947 * Ok the next item is a bitmap, but it may not actually hold
1948 * the information for the rest of this free space stuff, so
1949 * look for it, and if we don't find it return so we can try
1950 * everything over again.
1951 */
1952 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001953 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001954 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik0584f712015-10-02 16:12:23 -04001955 &search_bytes, false);
Josef Bacik6606bb92009-07-31 11:03:58 -04001956 if (ret < 0 || search_start != *offset)
1957 return -EAGAIN;
1958
Josef Bacik96303082009-07-13 21:29:25 -04001959 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001960 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001961 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001962
1963 return 0;
1964}
1965
Josef Bacik2cdc3422011-05-27 14:07:49 -04001966static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1967 struct btrfs_free_space *info, u64 offset,
1968 u64 bytes)
1969{
1970 u64 bytes_to_set = 0;
1971 u64 end;
1972
1973 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1974
1975 bytes_to_set = min(end - offset, bytes);
1976
1977 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1978
Josef Bacikcef40482015-10-02 16:09:42 -04001979 /*
1980 * We set some bytes, we have no idea what the max extent size is
1981 * anymore.
1982 */
1983 info->max_extent_size = 0;
1984
Josef Bacik2cdc3422011-05-27 14:07:49 -04001985 return bytes_to_set;
1986
1987}
1988
Li Zefan34d52cb2011-03-29 13:46:06 +08001989static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1990 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001991{
Li Zefan34d52cb2011-03-29 13:46:06 +08001992 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacikd0bd4562015-09-23 14:54:14 -04001993 bool forced = false;
1994
1995#ifdef CONFIG_BTRFS_DEBUG
1996 if (btrfs_should_fragment_free_space(block_group->fs_info->extent_root,
1997 block_group))
1998 forced = true;
1999#endif
Josef Bacik96303082009-07-13 21:29:25 -04002000
2001 /*
2002 * If we are below the extents threshold then we can add this as an
2003 * extent, and don't have to deal with the bitmap
2004 */
Josef Bacikd0bd4562015-09-23 14:54:14 -04002005 if (!forced && ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04002006 /*
2007 * If this block group has some small extents we don't want to
2008 * use up all of our free slots in the cache with them, we want
Nicholas D Steeves01327612016-05-19 21:18:45 -04002009 * to reserve them to larger extents, however if we have plenty
Josef Bacik32cb0842011-03-18 16:16:21 -04002010 * of cache left then go ahead an dadd them, no sense in adding
2011 * the overhead of a bitmap if we don't have to.
2012 */
2013 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002014 if (ctl->free_extents * 2 <= ctl->extents_thresh)
2015 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04002016 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002017 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04002018 }
2019 }
Josef Bacik96303082009-07-13 21:29:25 -04002020
2021 /*
Josef Bacikdde57402013-02-12 14:07:51 -05002022 * The original block groups from mkfs can be really small, like 8
2023 * megabytes, so don't bother with a bitmap for those entries. However
2024 * some block groups can be smaller than what a bitmap would cover but
2025 * are still large enough that they could overflow the 32k memory limit,
2026 * so allow those block groups to still be allowed to have a bitmap
2027 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04002028 */
Josef Bacikdde57402013-02-12 14:07:51 -05002029 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08002030 return false;
2031
2032 return true;
2033}
2034
David Sterba20e55062015-11-19 11:42:28 +01002035static const struct btrfs_free_space_op free_space_op = {
Josef Bacik2cdc3422011-05-27 14:07:49 -04002036 .recalc_thresholds = recalculate_thresholds,
2037 .use_bitmap = use_bitmap,
2038};
2039
Li Zefan34d52cb2011-03-29 13:46:06 +08002040static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
2041 struct btrfs_free_space *info)
2042{
2043 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002044 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08002045 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002046 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08002047 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002048
2049 bytes = info->bytes;
2050 offset = info->offset;
2051
Li Zefan34d52cb2011-03-29 13:46:06 +08002052 if (!ctl->op->use_bitmap(ctl, info))
2053 return 0;
2054
Josef Bacik2cdc3422011-05-27 14:07:49 -04002055 if (ctl->op == &free_space_op)
2056 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04002057again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04002058 /*
2059 * Since we link bitmaps right into the cluster we need to see if we
2060 * have a cluster here, and if so and it has our bitmap we need to add
2061 * the free space to that bitmap.
2062 */
2063 if (block_group && !list_empty(&block_group->cluster_list)) {
2064 struct btrfs_free_cluster *cluster;
2065 struct rb_node *node;
2066 struct btrfs_free_space *entry;
2067
2068 cluster = list_entry(block_group->cluster_list.next,
2069 struct btrfs_free_cluster,
2070 block_group_list);
2071 spin_lock(&cluster->lock);
2072 node = rb_first(&cluster->root);
2073 if (!node) {
2074 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04002075 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002076 }
2077
2078 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2079 if (!entry->bitmap) {
2080 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04002081 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002082 }
2083
2084 if (entry->offset == offset_to_bitmap(ctl, offset)) {
2085 bytes_added = add_bytes_to_bitmap(ctl, entry,
2086 offset, bytes);
2087 bytes -= bytes_added;
2088 offset += bytes_added;
2089 }
2090 spin_unlock(&cluster->lock);
2091 if (!bytes) {
2092 ret = 1;
2093 goto out;
2094 }
2095 }
Chris Mason38e87882011-06-10 16:36:57 -04002096
2097no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08002098 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04002099 1, 0);
2100 if (!bitmap_info) {
Josef Bacikb12d6862013-08-26 17:14:08 -04002101 ASSERT(added == 0);
Josef Bacik96303082009-07-13 21:29:25 -04002102 goto new_bitmap;
2103 }
2104
Josef Bacik2cdc3422011-05-27 14:07:49 -04002105 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
2106 bytes -= bytes_added;
2107 offset += bytes_added;
2108 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002109
2110 if (!bytes) {
2111 ret = 1;
2112 goto out;
2113 } else
2114 goto again;
2115
2116new_bitmap:
2117 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002118 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04002119 added = 1;
2120 info = NULL;
2121 goto again;
2122 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002123 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002124
2125 /* no pre-allocated info, allocate a new one */
2126 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05002127 info = kmem_cache_zalloc(btrfs_free_space_cachep,
2128 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04002129 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002130 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002131 ret = -ENOMEM;
2132 goto out;
2133 }
2134 }
2135
2136 /* allocate the bitmap */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002137 info->bitmap = kzalloc(PAGE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08002138 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002139 if (!info->bitmap) {
2140 ret = -ENOMEM;
2141 goto out;
2142 }
2143 goto again;
2144 }
2145
2146out:
2147 if (info) {
2148 if (info->bitmap)
2149 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05002150 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002151 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002152
2153 return ret;
2154}
2155
Chris Mason945d8962011-05-22 12:33:42 -04002156static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08002157 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002158{
Josef Bacik802dff12020-07-27 10:28:05 -04002159 struct btrfs_free_space *left_info = NULL;
Li Zefan120d66e2010-11-09 14:56:50 +08002160 struct btrfs_free_space *right_info;
2161 bool merged = false;
2162 u64 offset = info->offset;
2163 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002164
Josef Bacik0f9dd462008-09-23 13:14:11 -04002165 /*
2166 * first we want to see if there is free space adjacent to the range we
2167 * are adding, if there is remove that struct and add a new one to
2168 * cover the entire range
2169 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002170 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002171 if (right_info && rb_prev(&right_info->offset_index))
2172 left_info = rb_entry(rb_prev(&right_info->offset_index),
2173 struct btrfs_free_space, offset_index);
Josef Bacik802dff12020-07-27 10:28:05 -04002174 else if (!right_info)
Li Zefan34d52cb2011-03-29 13:46:06 +08002175 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002176
Josef Bacik96303082009-07-13 21:29:25 -04002177 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08002178 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08002179 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08002180 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002181 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002182 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05002183 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08002184 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002185 }
2186
Josef Bacik96303082009-07-13 21:29:25 -04002187 if (left_info && !left_info->bitmap &&
2188 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08002189 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08002190 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08002191 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002192 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002193 info->offset = left_info->offset;
2194 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05002195 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08002196 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002197 }
2198
Li Zefan120d66e2010-11-09 14:56:50 +08002199 return merged;
2200}
2201
Filipe Manana20005522014-08-29 13:35:13 +01002202static bool steal_from_bitmap_to_end(struct btrfs_free_space_ctl *ctl,
2203 struct btrfs_free_space *info,
2204 bool update_stat)
2205{
2206 struct btrfs_free_space *bitmap;
2207 unsigned long i;
2208 unsigned long j;
2209 const u64 end = info->offset + info->bytes;
2210 const u64 bitmap_offset = offset_to_bitmap(ctl, end);
2211 u64 bytes;
2212
2213 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2214 if (!bitmap)
2215 return false;
2216
2217 i = offset_to_bit(bitmap->offset, ctl->unit, end);
2218 j = find_next_zero_bit(bitmap->bitmap, BITS_PER_BITMAP, i);
2219 if (j == i)
2220 return false;
2221 bytes = (j - i) * ctl->unit;
2222 info->bytes += bytes;
2223
2224 if (update_stat)
2225 bitmap_clear_bits(ctl, bitmap, end, bytes);
2226 else
2227 __bitmap_clear_bits(ctl, bitmap, end, bytes);
2228
2229 if (!bitmap->bytes)
2230 free_bitmap(ctl, bitmap);
2231
2232 return true;
2233}
2234
2235static bool steal_from_bitmap_to_front(struct btrfs_free_space_ctl *ctl,
2236 struct btrfs_free_space *info,
2237 bool update_stat)
2238{
2239 struct btrfs_free_space *bitmap;
2240 u64 bitmap_offset;
2241 unsigned long i;
2242 unsigned long j;
2243 unsigned long prev_j;
2244 u64 bytes;
2245
2246 bitmap_offset = offset_to_bitmap(ctl, info->offset);
2247 /* If we're on a boundary, try the previous logical bitmap. */
2248 if (bitmap_offset == info->offset) {
2249 if (info->offset == 0)
2250 return false;
2251 bitmap_offset = offset_to_bitmap(ctl, info->offset - 1);
2252 }
2253
2254 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2255 if (!bitmap)
2256 return false;
2257
2258 i = offset_to_bit(bitmap->offset, ctl->unit, info->offset) - 1;
2259 j = 0;
2260 prev_j = (unsigned long)-1;
2261 for_each_clear_bit_from(j, bitmap->bitmap, BITS_PER_BITMAP) {
2262 if (j > i)
2263 break;
2264 prev_j = j;
2265 }
2266 if (prev_j == i)
2267 return false;
2268
2269 if (prev_j == (unsigned long)-1)
2270 bytes = (i + 1) * ctl->unit;
2271 else
2272 bytes = (i - prev_j) * ctl->unit;
2273
2274 info->offset -= bytes;
2275 info->bytes += bytes;
2276
2277 if (update_stat)
2278 bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2279 else
2280 __bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2281
2282 if (!bitmap->bytes)
2283 free_bitmap(ctl, bitmap);
2284
2285 return true;
2286}
2287
2288/*
2289 * We prefer always to allocate from extent entries, both for clustered and
2290 * non-clustered allocation requests. So when attempting to add a new extent
2291 * entry, try to see if there's adjacent free space in bitmap entries, and if
2292 * there is, migrate that space from the bitmaps to the extent.
2293 * Like this we get better chances of satisfying space allocation requests
2294 * because we attempt to satisfy them based on a single cache entry, and never
2295 * on 2 or more entries - even if the entries represent a contiguous free space
2296 * region (e.g. 1 extent entry + 1 bitmap entry starting where the extent entry
2297 * ends).
2298 */
2299static void steal_from_bitmap(struct btrfs_free_space_ctl *ctl,
2300 struct btrfs_free_space *info,
2301 bool update_stat)
2302{
2303 /*
2304 * Only work with disconnected entries, as we can change their offset,
2305 * and must be extent entries.
2306 */
2307 ASSERT(!info->bitmap);
2308 ASSERT(RB_EMPTY_NODE(&info->offset_index));
2309
2310 if (ctl->total_bitmaps > 0) {
2311 bool stole_end;
2312 bool stole_front = false;
2313
2314 stole_end = steal_from_bitmap_to_end(ctl, info, update_stat);
2315 if (ctl->total_bitmaps > 0)
2316 stole_front = steal_from_bitmap_to_front(ctl, info,
2317 update_stat);
2318
2319 if (stole_end || stole_front)
2320 try_merge_free_space(ctl, info, update_stat);
2321 }
2322}
2323
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002324int __btrfs_add_free_space(struct btrfs_fs_info *fs_info,
2325 struct btrfs_free_space_ctl *ctl,
Li Zefan581bb052011-04-20 10:06:11 +08002326 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08002327{
2328 struct btrfs_free_space *info;
2329 int ret = 0;
2330
Josef Bacikdc89e982011-01-28 17:05:48 -05002331 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08002332 if (!info)
2333 return -ENOMEM;
2334
2335 info->offset = offset;
2336 info->bytes = bytes;
Filipe Manana20005522014-08-29 13:35:13 +01002337 RB_CLEAR_NODE(&info->offset_index);
Li Zefan120d66e2010-11-09 14:56:50 +08002338
Li Zefan34d52cb2011-03-29 13:46:06 +08002339 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08002340
Li Zefan34d52cb2011-03-29 13:46:06 +08002341 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08002342 goto link;
2343
2344 /*
2345 * There was no extent directly to the left or right of this new
2346 * extent then we know we're going to have to allocate a new extent, so
2347 * before we do that see if we need to drop this into a bitmap
2348 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002349 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08002350 if (ret < 0) {
2351 goto out;
2352 } else if (ret) {
2353 ret = 0;
2354 goto out;
2355 }
2356link:
Filipe Manana20005522014-08-29 13:35:13 +01002357 /*
2358 * Only steal free space from adjacent bitmaps if we're sure we're not
2359 * going to add the new free space to existing bitmap entries - because
2360 * that would mean unnecessary work that would be reverted. Therefore
2361 * attempt to steal space from bitmaps if we're adding an extent entry.
2362 */
2363 steal_from_bitmap(ctl, info, true);
2364
Li Zefan34d52cb2011-03-29 13:46:06 +08002365 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002366 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05002367 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002368out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002369 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002370
Josef Bacik0f9dd462008-09-23 13:14:11 -04002371 if (ret) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002372 btrfs_crit(fs_info, "unable to add free space :%d", ret);
Josef Bacikb12d6862013-08-26 17:14:08 -04002373 ASSERT(ret != -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002374 }
2375
Josef Bacik0f9dd462008-09-23 13:14:11 -04002376 return ret;
2377}
2378
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002379int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
2380 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002381{
Li Zefan34d52cb2011-03-29 13:46:06 +08002382 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002383 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05002384 int ret;
2385 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002386
Li Zefan34d52cb2011-03-29 13:46:06 +08002387 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002388
Josef Bacik96303082009-07-13 21:29:25 -04002389again:
Josef Bacikb0175112012-12-18 11:39:19 -05002390 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002391 if (!bytes)
2392 goto out_lock;
2393
Li Zefan34d52cb2011-03-29 13:46:06 +08002394 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002395 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04002396 /*
2397 * oops didn't find an extent that matched the space we wanted
2398 * to remove, look for a bitmap instead
2399 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002400 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04002401 1, 0);
2402 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05002403 /*
2404 * If we found a partial bit of our free space in a
2405 * bitmap but then couldn't find the other part this may
2406 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05002407 */
Josef Bacikb0175112012-12-18 11:39:19 -05002408 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04002409 goto out_lock;
2410 }
Josef Bacik96303082009-07-13 21:29:25 -04002411 }
2412
Josef Bacikb0175112012-12-18 11:39:19 -05002413 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002414 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002415 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04002416 if (offset == info->offset) {
2417 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002418
Josef Bacikbdb7d302012-06-27 15:10:56 -04002419 info->bytes -= to_free;
2420 info->offset += to_free;
2421 if (info->bytes) {
2422 ret = link_free_space(ctl, info);
2423 WARN_ON(ret);
2424 } else {
2425 kmem_cache_free(btrfs_free_space_cachep, info);
2426 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002427
Josef Bacikbdb7d302012-06-27 15:10:56 -04002428 offset += to_free;
2429 bytes -= to_free;
2430 goto again;
2431 } else {
2432 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04002433
Josef Bacikbdb7d302012-06-27 15:10:56 -04002434 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002435 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04002436 WARN_ON(ret);
2437 if (ret)
2438 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04002439
Josef Bacikbdb7d302012-06-27 15:10:56 -04002440 /* Not enough bytes in this entry to satisfy us */
2441 if (old_end < offset + bytes) {
2442 bytes -= old_end - offset;
2443 offset = old_end;
2444 goto again;
2445 } else if (old_end == offset + bytes) {
2446 /* all done */
2447 goto out_lock;
2448 }
2449 spin_unlock(&ctl->tree_lock);
2450
2451 ret = btrfs_add_free_space(block_group, offset + bytes,
2452 old_end - (offset + bytes));
2453 WARN_ON(ret);
2454 goto out;
2455 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002456 }
Josef Bacik96303082009-07-13 21:29:25 -04002457
Li Zefan34d52cb2011-03-29 13:46:06 +08002458 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05002459 if (ret == -EAGAIN) {
2460 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04002461 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05002462 }
Josef Bacik96303082009-07-13 21:29:25 -04002463out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08002464 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002465out:
Josef Bacik25179202008-10-29 14:49:05 -04002466 return ret;
2467}
2468
Josef Bacik0f9dd462008-09-23 13:14:11 -04002469void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
2470 u64 bytes)
2471{
Li Zefan34d52cb2011-03-29 13:46:06 +08002472 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002473 struct btrfs_free_space *info;
2474 struct rb_node *n;
2475 int count = 0;
2476
Filipe Mananaddc07d52018-10-22 10:43:06 +01002477 spin_lock(&ctl->tree_lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002478 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04002479 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06002480 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002481 count++;
Frank Holtonefe120a2013-12-20 11:37:06 -05002482 btrfs_crit(block_group->fs_info,
2483 "entry offset %llu, bytes %llu, bitmap %s",
2484 info->offset, info->bytes,
Josef Bacik96303082009-07-13 21:29:25 -04002485 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002486 }
Filipe Mananaddc07d52018-10-22 10:43:06 +01002487 spin_unlock(&ctl->tree_lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05002488 btrfs_info(block_group->fs_info, "block group has cluster?: %s",
Josef Bacik96303082009-07-13 21:29:25 -04002489 list_empty(&block_group->cluster_list) ? "no" : "yes");
Frank Holtonefe120a2013-12-20 11:37:06 -05002490 btrfs_info(block_group->fs_info,
2491 "%d blocks of free space at or bigger than bytes is", count);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002492}
2493
Li Zefan34d52cb2011-03-29 13:46:06 +08002494void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002495{
Li Zefan34d52cb2011-03-29 13:46:06 +08002496 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002497
Li Zefan34d52cb2011-03-29 13:46:06 +08002498 spin_lock_init(&ctl->tree_lock);
2499 ctl->unit = block_group->sectorsize;
2500 ctl->start = block_group->key.objectid;
2501 ctl->private = block_group;
2502 ctl->op = &free_space_op;
Filipe Manana55507ce2014-12-01 17:04:09 +00002503 INIT_LIST_HEAD(&ctl->trimming_ranges);
2504 mutex_init(&ctl->cache_writeout_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002505
Li Zefan34d52cb2011-03-29 13:46:06 +08002506 /*
2507 * we only want to have 32k of ram per block group for keeping
2508 * track of free space, and if we pass 1/2 of that we want to
2509 * start converting things over to using bitmaps
2510 */
Byongho Leeee221842015-12-15 01:42:10 +09002511 ctl->extents_thresh = (SZ_32K / 2) / sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002512}
2513
Chris Masonfa9c0d792009-04-03 09:47:43 -04002514/*
2515 * for a given cluster, put all of its extents back into the free
2516 * space cache. If the block group passed doesn't match the block group
2517 * pointed to by the cluster, someone else raced in and freed the
2518 * cluster already. In that case, we just return without changing anything
2519 */
2520static int
2521__btrfs_return_cluster_to_free_space(
2522 struct btrfs_block_group_cache *block_group,
2523 struct btrfs_free_cluster *cluster)
2524{
Li Zefan34d52cb2011-03-29 13:46:06 +08002525 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002526 struct btrfs_free_space *entry;
2527 struct rb_node *node;
2528
2529 spin_lock(&cluster->lock);
2530 if (cluster->block_group != block_group)
2531 goto out;
2532
Josef Bacik96303082009-07-13 21:29:25 -04002533 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002534 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002535 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002536
Chris Masonfa9c0d792009-04-03 09:47:43 -04002537 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002538 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002539 bool bitmap;
2540
Chris Masonfa9c0d792009-04-03 09:47:43 -04002541 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2542 node = rb_next(&entry->offset_index);
2543 rb_erase(&entry->offset_index, &cluster->root);
Filipe Manana20005522014-08-29 13:35:13 +01002544 RB_CLEAR_NODE(&entry->offset_index);
Josef Bacik4e69b592011-03-21 10:11:24 -04002545
2546 bitmap = (entry->bitmap != NULL);
Filipe Manana20005522014-08-29 13:35:13 +01002547 if (!bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002548 try_merge_free_space(ctl, entry, false);
Filipe Manana20005522014-08-29 13:35:13 +01002549 steal_from_bitmap(ctl, entry, false);
2550 }
Li Zefan34d52cb2011-03-29 13:46:06 +08002551 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002552 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002553 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002554 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002555
Chris Masonfa9c0d792009-04-03 09:47:43 -04002556out:
2557 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002558 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002559 return 0;
2560}
2561
Eric Sandeen48a3b632013-04-25 20:41:01 +00002562static void __btrfs_remove_free_space_cache_locked(
2563 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002564{
2565 struct btrfs_free_space *info;
2566 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002567
Li Zefan581bb052011-04-20 10:06:11 +08002568 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2569 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002570 if (!info->bitmap) {
2571 unlink_free_space(ctl, info);
2572 kmem_cache_free(btrfs_free_space_cachep, info);
2573 } else {
2574 free_bitmap(ctl, info);
2575 }
David Sterba351810c2015-01-08 15:20:54 +01002576
2577 cond_resched_lock(&ctl->tree_lock);
Li Zefan581bb052011-04-20 10:06:11 +08002578 }
Chris Mason09655372011-05-21 09:27:38 -04002579}
2580
2581void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2582{
2583 spin_lock(&ctl->tree_lock);
2584 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002585 spin_unlock(&ctl->tree_lock);
2586}
2587
Josef Bacik0f9dd462008-09-23 13:14:11 -04002588void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2589{
Li Zefan34d52cb2011-03-29 13:46:06 +08002590 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002591 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002592 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002593
Li Zefan34d52cb2011-03-29 13:46:06 +08002594 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002595 while ((head = block_group->cluster_list.next) !=
2596 &block_group->cluster_list) {
2597 cluster = list_entry(head, struct btrfs_free_cluster,
2598 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002599
2600 WARN_ON(cluster->block_group != block_group);
2601 __btrfs_return_cluster_to_free_space(block_group, cluster);
David Sterba351810c2015-01-08 15:20:54 +01002602
2603 cond_resched_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002604 }
Chris Mason09655372011-05-21 09:27:38 -04002605 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002606 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002607
Josef Bacik0f9dd462008-09-23 13:14:11 -04002608}
2609
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002610u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
Miao Xiea4820392013-09-09 13:19:42 +08002611 u64 offset, u64 bytes, u64 empty_size,
2612 u64 *max_extent_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002613{
Li Zefan34d52cb2011-03-29 13:46:06 +08002614 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002615 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002616 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002617 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002618 u64 align_gap = 0;
2619 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002620
Li Zefan34d52cb2011-03-29 13:46:06 +08002621 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002622 entry = find_free_space(ctl, &offset, &bytes_search,
Miao Xiea4820392013-09-09 13:19:42 +08002623 block_group->full_stripe_len, max_extent_size);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002624 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002625 goto out;
2626
2627 ret = offset;
2628 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002629 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002630 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002631 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002632 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002633 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002634 align_gap_len = offset - entry->offset;
2635 align_gap = entry->offset;
2636
2637 entry->offset = offset + bytes;
2638 WARN_ON(entry->bytes < bytes + align_gap_len);
2639
2640 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002641 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002642 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002643 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002644 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002645 }
Josef Bacik96303082009-07-13 21:29:25 -04002646out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002647 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002648
David Woodhouse53b381b2013-01-29 18:40:14 -05002649 if (align_gap_len)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002650 __btrfs_add_free_space(block_group->fs_info, ctl,
2651 align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002652 return ret;
2653}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002654
2655/*
2656 * given a cluster, put all of its extents back into the free space
2657 * cache. If a block group is passed, this function will only free
2658 * a cluster that belongs to the passed block group.
2659 *
2660 * Otherwise, it'll get a reference on the block group pointed to by the
2661 * cluster and remove the cluster from it.
2662 */
2663int btrfs_return_cluster_to_free_space(
2664 struct btrfs_block_group_cache *block_group,
2665 struct btrfs_free_cluster *cluster)
2666{
Li Zefan34d52cb2011-03-29 13:46:06 +08002667 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002668 int ret;
2669
2670 /* first, get a safe pointer to the block group */
2671 spin_lock(&cluster->lock);
2672 if (!block_group) {
2673 block_group = cluster->block_group;
2674 if (!block_group) {
2675 spin_unlock(&cluster->lock);
2676 return 0;
2677 }
2678 } else if (cluster->block_group != block_group) {
2679 /* someone else has already freed it don't redo their work */
2680 spin_unlock(&cluster->lock);
2681 return 0;
2682 }
2683 atomic_inc(&block_group->count);
2684 spin_unlock(&cluster->lock);
2685
Li Zefan34d52cb2011-03-29 13:46:06 +08002686 ctl = block_group->free_space_ctl;
2687
Chris Masonfa9c0d792009-04-03 09:47:43 -04002688 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002689 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002690 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002691 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002692
2693 /* finally drop our ref */
2694 btrfs_put_block_group(block_group);
2695 return ret;
2696}
2697
Josef Bacik96303082009-07-13 21:29:25 -04002698static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2699 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002700 struct btrfs_free_space *entry,
Miao Xiea4820392013-09-09 13:19:42 +08002701 u64 bytes, u64 min_start,
2702 u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04002703{
Li Zefan34d52cb2011-03-29 13:46:06 +08002704 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002705 int err;
2706 u64 search_start = cluster->window_start;
2707 u64 search_bytes = bytes;
2708 u64 ret = 0;
2709
Josef Bacik96303082009-07-13 21:29:25 -04002710 search_start = min_start;
2711 search_bytes = bytes;
2712
Josef Bacik0584f712015-10-02 16:12:23 -04002713 err = search_bitmap(ctl, entry, &search_start, &search_bytes, true);
Miao Xiea4820392013-09-09 13:19:42 +08002714 if (err) {
Josef Bacikf3bc71f2018-10-12 15:32:33 -04002715 *max_extent_size = max(get_max_extent_size(entry),
2716 *max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002717 return 0;
Miao Xiea4820392013-09-09 13:19:42 +08002718 }
Josef Bacik96303082009-07-13 21:29:25 -04002719
2720 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002721 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002722
2723 return ret;
2724}
2725
Chris Masonfa9c0d792009-04-03 09:47:43 -04002726/*
2727 * given a cluster, try to allocate 'bytes' from it, returns 0
2728 * if it couldn't find anything suitably large, or a logical disk offset
2729 * if things worked out
2730 */
2731u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2732 struct btrfs_free_cluster *cluster, u64 bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002733 u64 min_start, u64 *max_extent_size)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002734{
Li Zefan34d52cb2011-03-29 13:46:06 +08002735 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002736 struct btrfs_free_space *entry = NULL;
2737 struct rb_node *node;
2738 u64 ret = 0;
2739
2740 spin_lock(&cluster->lock);
2741 if (bytes > cluster->max_size)
2742 goto out;
2743
2744 if (cluster->block_group != block_group)
2745 goto out;
2746
2747 node = rb_first(&cluster->root);
2748 if (!node)
2749 goto out;
2750
2751 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302752 while (1) {
Josef Bacikf3bc71f2018-10-12 15:32:33 -04002753 if (entry->bytes < bytes)
2754 *max_extent_size = max(get_max_extent_size(entry),
2755 *max_extent_size);
Miao Xiea4820392013-09-09 13:19:42 +08002756
Josef Bacik4e69b592011-03-21 10:11:24 -04002757 if (entry->bytes < bytes ||
2758 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002759 node = rb_next(&entry->offset_index);
2760 if (!node)
2761 break;
2762 entry = rb_entry(node, struct btrfs_free_space,
2763 offset_index);
2764 continue;
2765 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002766
Josef Bacik4e69b592011-03-21 10:11:24 -04002767 if (entry->bitmap) {
2768 ret = btrfs_alloc_from_bitmap(block_group,
2769 cluster, entry, bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002770 cluster->window_start,
2771 max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002772 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002773 node = rb_next(&entry->offset_index);
2774 if (!node)
2775 break;
2776 entry = rb_entry(node, struct btrfs_free_space,
2777 offset_index);
2778 continue;
2779 }
Josef Bacik9b230622012-01-26 15:01:12 -05002780 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002781 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002782 ret = entry->offset;
2783
2784 entry->offset += bytes;
2785 entry->bytes -= bytes;
2786 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002787
Li Zefan5e71b5d2010-11-09 14:55:34 +08002788 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002789 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002790 break;
2791 }
2792out:
2793 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002794
Li Zefan5e71b5d2010-11-09 14:55:34 +08002795 if (!ret)
2796 return 0;
2797
Li Zefan34d52cb2011-03-29 13:46:06 +08002798 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002799
Li Zefan34d52cb2011-03-29 13:46:06 +08002800 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002801 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002802 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002803 if (entry->bitmap) {
2804 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002805 ctl->total_bitmaps--;
2806 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002807 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002808 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002809 }
2810
Li Zefan34d52cb2011-03-29 13:46:06 +08002811 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002812
Chris Masonfa9c0d792009-04-03 09:47:43 -04002813 return ret;
2814}
2815
Josef Bacik96303082009-07-13 21:29:25 -04002816static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2817 struct btrfs_free_space *entry,
2818 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002819 u64 offset, u64 bytes,
2820 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002821{
Li Zefan34d52cb2011-03-29 13:46:06 +08002822 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002823 unsigned long next_zero;
2824 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002825 unsigned long want_bits;
2826 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002827 unsigned long found_bits;
Josef Bacikcef40482015-10-02 16:09:42 -04002828 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002829 unsigned long start = 0;
2830 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002831 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002832
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002833 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002834 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002835 want_bits = bytes_to_bits(bytes, ctl->unit);
2836 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002837
Josef Bacikcef40482015-10-02 16:09:42 -04002838 /*
2839 * Don't bother looking for a cluster in this bitmap if it's heavily
2840 * fragmented.
2841 */
2842 if (entry->max_extent_size &&
2843 entry->max_extent_size < cont1_bytes)
2844 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002845again:
2846 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002847 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002848 next_zero = find_next_zero_bit(entry->bitmap,
2849 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002850 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002851 found_bits = next_zero - i;
Josef Bacikcef40482015-10-02 16:09:42 -04002852 if (found_bits > max_bits)
2853 max_bits = found_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002854 break;
2855 }
Josef Bacikcef40482015-10-02 16:09:42 -04002856 if (next_zero - i > max_bits)
2857 max_bits = next_zero - i;
Josef Bacik96303082009-07-13 21:29:25 -04002858 i = next_zero;
2859 }
2860
Josef Bacikcef40482015-10-02 16:09:42 -04002861 if (!found_bits) {
2862 entry->max_extent_size = (u64)max_bits * ctl->unit;
Josef Bacik4e69b592011-03-21 10:11:24 -04002863 return -ENOSPC;
Josef Bacikcef40482015-10-02 16:09:42 -04002864 }
Josef Bacik96303082009-07-13 21:29:25 -04002865
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002866 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002867 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002868 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002869 }
2870
2871 total_found += found_bits;
2872
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002873 if (cluster->max_size < found_bits * ctl->unit)
2874 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002875
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002876 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2877 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002878 goto again;
2879 }
2880
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002881 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002882 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002883 ret = tree_insert_offset(&cluster->root, entry->offset,
2884 &entry->offset_index, 1);
Josef Bacikb12d6862013-08-26 17:14:08 -04002885 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002886
Josef Bacik3f7de032011-11-10 08:29:20 -05002887 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002888 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002889 return 0;
2890}
2891
Chris Masonfa9c0d792009-04-03 09:47:43 -04002892/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002893 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002894 * Try to find a cluster with at least bytes total bytes, at least one
2895 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002896 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002897static noinline int
2898setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2899 struct btrfs_free_cluster *cluster,
2900 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002901 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002902{
Li Zefan34d52cb2011-03-29 13:46:06 +08002903 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002904 struct btrfs_free_space *first = NULL;
2905 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002906 struct btrfs_free_space *last;
2907 struct rb_node *node;
Josef Bacik4e69b592011-03-21 10:11:24 -04002908 u64 window_free;
2909 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002910 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002911
Li Zefan34d52cb2011-03-29 13:46:06 +08002912 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002913 if (!entry)
2914 return -ENOSPC;
2915
2916 /*
2917 * We don't want bitmaps, so just move along until we find a normal
2918 * extent entry.
2919 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002920 while (entry->bitmap || entry->bytes < min_bytes) {
2921 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002922 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002923 node = rb_next(&entry->offset_index);
2924 if (!node)
2925 return -ENOSPC;
2926 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2927 }
2928
Josef Bacik4e69b592011-03-21 10:11:24 -04002929 window_free = entry->bytes;
2930 max_extent = entry->bytes;
2931 first = entry;
2932 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002933
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002934 for (node = rb_next(&entry->offset_index); node;
2935 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002936 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2937
Josef Bacik86d4a772011-05-25 13:03:16 -04002938 if (entry->bitmap) {
2939 if (list_empty(&entry->list))
2940 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002941 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002942 }
2943
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002944 if (entry->bytes < min_bytes)
2945 continue;
2946
2947 last = entry;
2948 window_free += entry->bytes;
2949 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002950 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002951 }
2952
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002953 if (window_free < bytes || max_extent < cont1_bytes)
2954 return -ENOSPC;
2955
Josef Bacik4e69b592011-03-21 10:11:24 -04002956 cluster->window_start = first->offset;
2957
2958 node = &first->offset_index;
2959
2960 /*
2961 * now we've found our entries, pull them out of the free space
2962 * cache and put them into the cluster rbtree
2963 */
2964 do {
2965 int ret;
2966
2967 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2968 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002969 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002970 continue;
2971
Li Zefan34d52cb2011-03-29 13:46:06 +08002972 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002973 ret = tree_insert_offset(&cluster->root, entry->offset,
2974 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002975 total_size += entry->bytes;
Josef Bacikb12d6862013-08-26 17:14:08 -04002976 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002977 } while (node && entry != last);
2978
2979 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002980 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002981 return 0;
2982}
2983
2984/*
2985 * This specifically looks for bitmaps that may work in the cluster, we assume
2986 * that we have already failed to find extents that will work.
2987 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002988static noinline int
2989setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2990 struct btrfs_free_cluster *cluster,
2991 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002992 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002993{
Li Zefan34d52cb2011-03-29 13:46:06 +08002994 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Mason1b9b9222015-12-15 07:15:32 -08002995 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002996 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002997 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002998
Li Zefan34d52cb2011-03-29 13:46:06 +08002999 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04003000 return -ENOSPC;
3001
Josef Bacik86d4a772011-05-25 13:03:16 -04003002 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05003003 * The bitmap that covers offset won't be in the list unless offset
3004 * is just its start offset.
3005 */
Chris Mason1b9b9222015-12-15 07:15:32 -08003006 if (!list_empty(bitmaps))
3007 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
3008
3009 if (!entry || entry->offset != bitmap_offset) {
Li Zefan0f0fbf12011-11-20 07:33:38 -05003010 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
3011 if (entry && list_empty(&entry->list))
3012 list_add(&entry->list, bitmaps);
3013 }
3014
Josef Bacik86d4a772011-05-25 13:03:16 -04003015 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05003016 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04003017 continue;
3018 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003019 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04003020 if (!ret)
3021 return 0;
3022 }
3023
3024 /*
Li Zefan52621cb2011-11-20 07:33:38 -05003025 * The bitmaps list has all the bitmaps that record free space
3026 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04003027 */
Li Zefan52621cb2011-11-20 07:33:38 -05003028 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04003029}
3030
3031/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04003032 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003033 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04003034 * We might not find them all in one contiguous area.
3035 *
3036 * returns zero and sets up cluster if things worked out, otherwise
3037 * it returns -enospc
3038 */
Josef Bacik00361582013-08-14 14:02:47 -04003039int btrfs_find_space_cluster(struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04003040 struct btrfs_block_group_cache *block_group,
3041 struct btrfs_free_cluster *cluster,
3042 u64 offset, u64 bytes, u64 empty_size)
3043{
Li Zefan34d52cb2011-03-29 13:46:06 +08003044 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04003045 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05003046 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003047 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003048 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003049 int ret;
3050
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003051 /*
3052 * Choose the minimum extent size we'll require for this
3053 * cluster. For SSD_SPREAD, don't allow any fragmentation.
3054 * For metadata, allow allocates with smaller extents. For
3055 * data, keep it dense.
3056 */
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003057 if (btrfs_test_opt(root->fs_info, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003058 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04003059 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003060 cont1_bytes = bytes;
3061 min_bytes = block_group->sectorsize;
3062 } else {
3063 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
3064 min_bytes = block_group->sectorsize;
3065 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04003066
Li Zefan34d52cb2011-03-29 13:46:06 +08003067 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04003068
3069 /*
3070 * If we know we don't have enough space to make a cluster don't even
3071 * bother doing all the work to try and find one.
3072 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003073 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003074 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04003075 return -ENOSPC;
3076 }
3077
Chris Masonfa9c0d792009-04-03 09:47:43 -04003078 spin_lock(&cluster->lock);
3079
3080 /* someone already found a cluster, hooray */
3081 if (cluster->block_group) {
3082 ret = 0;
3083 goto out;
3084 }
Josef Bacik4e69b592011-03-21 10:11:24 -04003085
Josef Bacik3f7de032011-11-10 08:29:20 -05003086 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
3087 min_bytes);
3088
Josef Bacik86d4a772011-05-25 13:03:16 -04003089 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003090 bytes + empty_size,
3091 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04003092 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04003093 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003094 offset, bytes + empty_size,
3095 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04003096
3097 /* Clear our temporary list */
3098 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
3099 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04003100
3101 if (!ret) {
3102 atomic_inc(&block_group->count);
3103 list_add_tail(&cluster->block_group_list,
3104 &block_group->cluster_list);
3105 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05003106 } else {
3107 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003108 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04003109out:
3110 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08003111 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003112
3113 return ret;
3114}
3115
3116/*
3117 * simple code to zero out a cluster
3118 */
3119void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
3120{
3121 spin_lock_init(&cluster->lock);
3122 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00003123 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003124 cluster->max_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04003125 cluster->fragmented = false;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003126 INIT_LIST_HEAD(&cluster->block_group_list);
3127 cluster->block_group = NULL;
3128}
3129
Li Zefan7fe1e642011-12-29 14:47:27 +08003130static int do_trimming(struct btrfs_block_group_cache *block_group,
3131 u64 *total_trimmed, u64 start, u64 bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003132 u64 reserved_start, u64 reserved_bytes,
3133 struct btrfs_trim_range *trim_entry)
Li Zefan7fe1e642011-12-29 14:47:27 +08003134{
3135 struct btrfs_space_info *space_info = block_group->space_info;
3136 struct btrfs_fs_info *fs_info = block_group->fs_info;
Filipe Manana55507ce2014-12-01 17:04:09 +00003137 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08003138 int ret;
3139 int update = 0;
3140 u64 trimmed = 0;
3141
3142 spin_lock(&space_info->lock);
3143 spin_lock(&block_group->lock);
3144 if (!block_group->ro) {
3145 block_group->reserved += reserved_bytes;
3146 space_info->bytes_reserved += reserved_bytes;
3147 update = 1;
3148 }
3149 spin_unlock(&block_group->lock);
3150 spin_unlock(&space_info->lock);
3151
Filipe Manana1edb647b2014-12-08 14:01:12 +00003152 ret = btrfs_discard_extent(fs_info->extent_root,
3153 start, bytes, &trimmed);
Li Zefan7fe1e642011-12-29 14:47:27 +08003154 if (!ret)
3155 *total_trimmed += trimmed;
3156
Filipe Manana55507ce2014-12-01 17:04:09 +00003157 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003158 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
Filipe Manana55507ce2014-12-01 17:04:09 +00003159 list_del(&trim_entry->list);
3160 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003161
3162 if (update) {
3163 spin_lock(&space_info->lock);
3164 spin_lock(&block_group->lock);
3165 if (block_group->ro)
3166 space_info->bytes_readonly += reserved_bytes;
3167 block_group->reserved -= reserved_bytes;
3168 space_info->bytes_reserved -= reserved_bytes;
3169 spin_unlock(&space_info->lock);
3170 spin_unlock(&block_group->lock);
3171 }
3172
3173 return ret;
3174}
3175
3176static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
3177 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00003178{
Li Zefan34d52cb2011-03-29 13:46:06 +08003179 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08003180 struct btrfs_free_space *entry;
3181 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00003182 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08003183 u64 extent_start;
3184 u64 extent_bytes;
3185 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003186
3187 while (start < end) {
Filipe Manana55507ce2014-12-01 17:04:09 +00003188 struct btrfs_trim_range trim_entry;
3189
3190 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan34d52cb2011-03-29 13:46:06 +08003191 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00003192
Li Zefan34d52cb2011-03-29 13:46:06 +08003193 if (ctl->free_space < minlen) {
3194 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003195 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003196 break;
3197 }
3198
Li Zefan34d52cb2011-03-29 13:46:06 +08003199 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08003200 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003201 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003202 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003203 break;
3204 }
3205
Li Zefan7fe1e642011-12-29 14:47:27 +08003206 /* skip bitmaps */
3207 while (entry->bitmap) {
3208 node = rb_next(&entry->offset_index);
3209 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003210 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003211 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003212 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00003213 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003214 entry = rb_entry(node, struct btrfs_free_space,
3215 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00003216 }
3217
Li Zefan7fe1e642011-12-29 14:47:27 +08003218 if (entry->offset >= end) {
3219 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003220 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003221 break;
3222 }
3223
3224 extent_start = entry->offset;
3225 extent_bytes = entry->bytes;
3226 start = max(start, extent_start);
3227 bytes = min(extent_start + extent_bytes, end) - start;
3228 if (bytes < minlen) {
3229 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003230 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003231 goto next;
3232 }
3233
3234 unlink_free_space(ctl, entry);
3235 kmem_cache_free(btrfs_free_space_cachep, entry);
3236
Li Zefan34d52cb2011-03-29 13:46:06 +08003237 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003238 trim_entry.start = extent_start;
3239 trim_entry.bytes = extent_bytes;
3240 list_add_tail(&trim_entry.list, &ctl->trimming_ranges);
3241 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003242
Li Zefan7fe1e642011-12-29 14:47:27 +08003243 ret = do_trimming(block_group, total_trimmed, start, bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003244 extent_start, extent_bytes, &trim_entry);
Li Zefan7fe1e642011-12-29 14:47:27 +08003245 if (ret)
3246 break;
3247next:
Li Dongyangf7039b12011-03-24 10:24:28 +00003248 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003249
3250 if (fatal_signal_pending(current)) {
3251 ret = -ERESTARTSYS;
3252 break;
3253 }
3254
3255 cond_resched();
3256 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003257out:
3258 return ret;
3259}
3260
3261static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
3262 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
3263{
3264 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
3265 struct btrfs_free_space *entry;
3266 int ret = 0;
3267 int ret2;
3268 u64 bytes;
3269 u64 offset = offset_to_bitmap(ctl, start);
3270
3271 while (offset < end) {
3272 bool next_bitmap = false;
Filipe Manana55507ce2014-12-01 17:04:09 +00003273 struct btrfs_trim_range trim_entry;
Li Zefan7fe1e642011-12-29 14:47:27 +08003274
Filipe Manana55507ce2014-12-01 17:04:09 +00003275 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003276 spin_lock(&ctl->tree_lock);
3277
3278 if (ctl->free_space < minlen) {
3279 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003280 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003281 break;
3282 }
3283
3284 entry = tree_search_offset(ctl, offset, 1, 0);
3285 if (!entry) {
3286 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003287 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003288 next_bitmap = true;
3289 goto next;
3290 }
3291
3292 bytes = minlen;
Josef Bacik0584f712015-10-02 16:12:23 -04003293 ret2 = search_bitmap(ctl, entry, &start, &bytes, false);
Li Zefan7fe1e642011-12-29 14:47:27 +08003294 if (ret2 || start >= end) {
3295 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003296 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003297 next_bitmap = true;
3298 goto next;
3299 }
3300
3301 bytes = min(bytes, end - start);
3302 if (bytes < minlen) {
3303 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003304 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003305 goto next;
3306 }
3307
3308 bitmap_clear_bits(ctl, entry, start, bytes);
3309 if (entry->bytes == 0)
3310 free_bitmap(ctl, entry);
3311
3312 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003313 trim_entry.start = start;
3314 trim_entry.bytes = bytes;
3315 list_add_tail(&trim_entry.list, &ctl->trimming_ranges);
3316 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003317
3318 ret = do_trimming(block_group, total_trimmed, start, bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003319 start, bytes, &trim_entry);
Li Zefan7fe1e642011-12-29 14:47:27 +08003320 if (ret)
3321 break;
3322next:
3323 if (next_bitmap) {
3324 offset += BITS_PER_BITMAP * ctl->unit;
3325 } else {
3326 start += bytes;
3327 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
3328 offset += BITS_PER_BITMAP * ctl->unit;
3329 }
3330
3331 if (fatal_signal_pending(current)) {
3332 ret = -ERESTARTSYS;
3333 break;
3334 }
3335
3336 cond_resched();
3337 }
3338
3339 return ret;
3340}
3341
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003342void btrfs_get_block_group_trimming(struct btrfs_block_group_cache *cache)
Li Zefan7fe1e642011-12-29 14:47:27 +08003343{
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003344 atomic_inc(&cache->trimming);
3345}
Li Zefan7fe1e642011-12-29 14:47:27 +08003346
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003347void btrfs_put_block_group_trimming(struct btrfs_block_group_cache *block_group)
3348{
3349 struct extent_map_tree *em_tree;
3350 struct extent_map *em;
3351 bool cleanup;
Li Zefan7fe1e642011-12-29 14:47:27 +08003352
Filipe Manana04216822014-11-27 21:14:15 +00003353 spin_lock(&block_group->lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003354 cleanup = (atomic_dec_and_test(&block_group->trimming) &&
3355 block_group->removed);
Filipe Manana04216822014-11-27 21:14:15 +00003356 spin_unlock(&block_group->lock);
3357
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003358 if (cleanup) {
Filipe Mananaa1e7e162014-12-04 15:31:01 +00003359 lock_chunks(block_group->fs_info->chunk_root);
Filipe Manana04216822014-11-27 21:14:15 +00003360 em_tree = &block_group->fs_info->mapping_tree.map_tree;
3361 write_lock(&em_tree->lock);
3362 em = lookup_extent_mapping(em_tree, block_group->key.objectid,
3363 1);
3364 BUG_ON(!em); /* logic error, can't happen */
Filipe Mananaa1e7e162014-12-04 15:31:01 +00003365 /*
3366 * remove_extent_mapping() will delete us from the pinned_chunks
3367 * list, which is protected by the chunk mutex.
3368 */
Filipe Manana04216822014-11-27 21:14:15 +00003369 remove_extent_mapping(em_tree, em);
3370 write_unlock(&em_tree->lock);
Filipe Manana04216822014-11-27 21:14:15 +00003371 unlock_chunks(block_group->fs_info->chunk_root);
3372
3373 /* once for us and once for the tree */
3374 free_extent_map(em);
3375 free_extent_map(em);
Filipe Manana946ddbe2014-12-01 17:04:40 +00003376
3377 /*
3378 * We've left one free space entry and other tasks trimming
3379 * this block group have left 1 entry each one. Free them.
3380 */
3381 __btrfs_remove_free_space_cache(block_group->free_space_ctl);
Filipe Manana04216822014-11-27 21:14:15 +00003382 }
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003383}
Li Dongyangf7039b12011-03-24 10:24:28 +00003384
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003385int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
3386 u64 *trimmed, u64 start, u64 end, u64 minlen)
3387{
3388 int ret;
3389
3390 *trimmed = 0;
3391
3392 spin_lock(&block_group->lock);
3393 if (block_group->removed) {
3394 spin_unlock(&block_group->lock);
3395 return 0;
3396 }
3397 btrfs_get_block_group_trimming(block_group);
3398 spin_unlock(&block_group->lock);
3399
3400 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
3401 if (ret)
3402 goto out;
3403
3404 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
3405out:
3406 btrfs_put_block_group_trimming(block_group);
Li Dongyangf7039b12011-03-24 10:24:28 +00003407 return ret;
3408}
Li Zefan581bb052011-04-20 10:06:11 +08003409
3410/*
3411 * Find the left-most item in the cache tree, and then return the
3412 * smallest inode number in the item.
3413 *
3414 * Note: the returned inode number may not be the smallest one in
3415 * the tree, if the left-most item is a bitmap.
3416 */
3417u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
3418{
3419 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
3420 struct btrfs_free_space *entry = NULL;
3421 u64 ino = 0;
3422
3423 spin_lock(&ctl->tree_lock);
3424
3425 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
3426 goto out;
3427
3428 entry = rb_entry(rb_first(&ctl->free_space_offset),
3429 struct btrfs_free_space, offset_index);
3430
3431 if (!entry->bitmap) {
3432 ino = entry->offset;
3433
3434 unlink_free_space(ctl, entry);
3435 entry->offset++;
3436 entry->bytes--;
3437 if (!entry->bytes)
3438 kmem_cache_free(btrfs_free_space_cachep, entry);
3439 else
3440 link_free_space(ctl, entry);
3441 } else {
3442 u64 offset = 0;
3443 u64 count = 1;
3444 int ret;
3445
Josef Bacik0584f712015-10-02 16:12:23 -04003446 ret = search_bitmap(ctl, entry, &offset, &count, true);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003447 /* Logic error; Should be empty if it can't find anything */
Josef Bacikb12d6862013-08-26 17:14:08 -04003448 ASSERT(!ret);
Li Zefan581bb052011-04-20 10:06:11 +08003449
3450 ino = offset;
3451 bitmap_clear_bits(ctl, entry, offset, 1);
3452 if (entry->bytes == 0)
3453 free_bitmap(ctl, entry);
3454 }
3455out:
3456 spin_unlock(&ctl->tree_lock);
3457
3458 return ino;
3459}
Li Zefan82d59022011-04-20 10:33:24 +08003460
3461struct inode *lookup_free_ino_inode(struct btrfs_root *root,
3462 struct btrfs_path *path)
3463{
3464 struct inode *inode = NULL;
3465
David Sterba57cdc8d2014-02-05 02:37:48 +01003466 spin_lock(&root->ino_cache_lock);
3467 if (root->ino_cache_inode)
3468 inode = igrab(root->ino_cache_inode);
3469 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003470 if (inode)
3471 return inode;
3472
3473 inode = __lookup_free_space_inode(root, path, 0);
3474 if (IS_ERR(inode))
3475 return inode;
3476
David Sterba57cdc8d2014-02-05 02:37:48 +01003477 spin_lock(&root->ino_cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02003478 if (!btrfs_fs_closing(root->fs_info))
David Sterba57cdc8d2014-02-05 02:37:48 +01003479 root->ino_cache_inode = igrab(inode);
3480 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003481
3482 return inode;
3483}
3484
3485int create_free_ino_inode(struct btrfs_root *root,
3486 struct btrfs_trans_handle *trans,
3487 struct btrfs_path *path)
3488{
3489 return __create_free_space_inode(root, trans, path,
3490 BTRFS_FREE_INO_OBJECTID, 0);
3491}
3492
3493int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
3494{
3495 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
3496 struct btrfs_path *path;
3497 struct inode *inode;
3498 int ret = 0;
3499 u64 root_gen = btrfs_root_generation(&root->root_item);
3500
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003501 if (!btrfs_test_opt(root->fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -04003502 return 0;
3503
Li Zefan82d59022011-04-20 10:33:24 +08003504 /*
3505 * If we're unmounting then just return, since this does a search on the
3506 * normal root and not the commit root and we could deadlock.
3507 */
David Sterba7841cb22011-05-31 18:07:27 +02003508 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08003509 return 0;
3510
3511 path = btrfs_alloc_path();
3512 if (!path)
3513 return 0;
3514
3515 inode = lookup_free_ino_inode(root, path);
3516 if (IS_ERR(inode))
3517 goto out;
3518
3519 if (root_gen != BTRFS_I(inode)->generation)
3520 goto out_put;
3521
3522 ret = __load_free_space_cache(root, inode, ctl, path, 0);
3523
3524 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003525 btrfs_err(fs_info,
3526 "failed to load free ino cache for root %llu",
3527 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08003528out_put:
3529 iput(inode);
3530out:
3531 btrfs_free_path(path);
3532 return ret;
3533}
3534
3535int btrfs_write_out_ino_cache(struct btrfs_root *root,
3536 struct btrfs_trans_handle *trans,
Filipe David Borba Manana53645a92013-09-20 14:43:28 +01003537 struct btrfs_path *path,
3538 struct inode *inode)
Li Zefan82d59022011-04-20 10:33:24 +08003539{
3540 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
Li Zefan82d59022011-04-20 10:33:24 +08003541 int ret;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003542 struct btrfs_io_ctl io_ctl;
Filipe Mananae43699d2015-05-05 15:21:27 +01003543 bool release_metadata = true;
Li Zefan82d59022011-04-20 10:33:24 +08003544
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003545 if (!btrfs_test_opt(root->fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -04003546 return 0;
3547
Chris Mason85db36c2015-04-23 08:02:49 -07003548 memset(&io_ctl, 0, sizeof(io_ctl));
Chris Masonc9dc4c62015-04-04 17:14:42 -07003549 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, &io_ctl,
Chris Mason85db36c2015-04-23 08:02:49 -07003550 trans, path, 0);
Filipe Mananae43699d2015-05-05 15:21:27 +01003551 if (!ret) {
3552 /*
3553 * At this point writepages() didn't error out, so our metadata
3554 * reservation is released when the writeback finishes, at
3555 * inode.c:btrfs_finish_ordered_io(), regardless of it finishing
3556 * with or without an error.
3557 */
3558 release_metadata = false;
Chris Mason85db36c2015-04-23 08:02:49 -07003559 ret = btrfs_wait_cache_io(root, trans, NULL, &io_ctl, path, 0);
Filipe Mananae43699d2015-05-05 15:21:27 +01003560 }
Chris Mason85db36c2015-04-23 08:02:49 -07003561
Josef Bacikc09544e2011-08-30 10:19:10 -04003562 if (ret) {
Filipe Mananae43699d2015-05-05 15:21:27 +01003563 if (release_metadata)
3564 btrfs_delalloc_release_metadata(inode, inode->i_size);
Josef Bacikc09544e2011-08-30 10:19:10 -04003565#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003566 btrfs_err(root->fs_info,
3567 "failed to write free ino cache for root %llu",
3568 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04003569#endif
3570 }
Li Zefan82d59022011-04-20 10:33:24 +08003571
Li Zefan82d59022011-04-20 10:33:24 +08003572 return ret;
3573}
Josef Bacik74255aa2013-03-15 09:47:08 -04003574
3575#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003576/*
3577 * Use this if you need to make a bitmap or extent entry specifically, it
3578 * doesn't do any of the merging that add_free_space does, this acts a lot like
3579 * how the free space cache loading stuff works, so you can get really weird
3580 * configurations.
3581 */
3582int test_add_free_space_entry(struct btrfs_block_group_cache *cache,
3583 u64 offset, u64 bytes, bool bitmap)
Josef Bacik74255aa2013-03-15 09:47:08 -04003584{
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003585 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3586 struct btrfs_free_space *info = NULL, *bitmap_info;
3587 void *map = NULL;
3588 u64 bytes_added;
3589 int ret;
Josef Bacik74255aa2013-03-15 09:47:08 -04003590
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003591again:
3592 if (!info) {
3593 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3594 if (!info)
3595 return -ENOMEM;
Josef Bacik74255aa2013-03-15 09:47:08 -04003596 }
3597
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003598 if (!bitmap) {
3599 spin_lock(&ctl->tree_lock);
3600 info->offset = offset;
3601 info->bytes = bytes;
Josef Bacikcef40482015-10-02 16:09:42 -04003602 info->max_extent_size = 0;
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003603 ret = link_free_space(ctl, info);
3604 spin_unlock(&ctl->tree_lock);
3605 if (ret)
3606 kmem_cache_free(btrfs_free_space_cachep, info);
3607 return ret;
3608 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003609
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003610 if (!map) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003611 map = kzalloc(PAGE_SIZE, GFP_NOFS);
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003612 if (!map) {
3613 kmem_cache_free(btrfs_free_space_cachep, info);
3614 return -ENOMEM;
3615 }
3616 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003617
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003618 spin_lock(&ctl->tree_lock);
3619 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3620 1, 0);
3621 if (!bitmap_info) {
3622 info->bitmap = map;
3623 map = NULL;
3624 add_new_bitmap(ctl, info, offset);
3625 bitmap_info = info;
Filipe Manana20005522014-08-29 13:35:13 +01003626 info = NULL;
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003627 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003628
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003629 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
Josef Bacikcef40482015-10-02 16:09:42 -04003630
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003631 bytes -= bytes_added;
3632 offset += bytes_added;
3633 spin_unlock(&ctl->tree_lock);
3634
3635 if (bytes)
3636 goto again;
3637
Filipe Manana20005522014-08-29 13:35:13 +01003638 if (info)
3639 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003640 if (map)
3641 kfree(map);
3642 return 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003643}
3644
3645/*
3646 * Checks to see if the given range is in the free space cache. This is really
3647 * just used to check the absence of space, so if there is free space in the
3648 * range at all we will return 1.
3649 */
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003650int test_check_exists(struct btrfs_block_group_cache *cache,
3651 u64 offset, u64 bytes)
Josef Bacik74255aa2013-03-15 09:47:08 -04003652{
3653 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3654 struct btrfs_free_space *info;
3655 int ret = 0;
3656
3657 spin_lock(&ctl->tree_lock);
3658 info = tree_search_offset(ctl, offset, 0, 0);
3659 if (!info) {
3660 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3661 1, 0);
3662 if (!info)
3663 goto out;
3664 }
3665
3666have_info:
3667 if (info->bitmap) {
3668 u64 bit_off, bit_bytes;
3669 struct rb_node *n;
3670 struct btrfs_free_space *tmp;
3671
3672 bit_off = offset;
3673 bit_bytes = ctl->unit;
Josef Bacik0584f712015-10-02 16:12:23 -04003674 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes, false);
Josef Bacik74255aa2013-03-15 09:47:08 -04003675 if (!ret) {
3676 if (bit_off == offset) {
3677 ret = 1;
3678 goto out;
3679 } else if (bit_off > offset &&
3680 offset + bytes > bit_off) {
3681 ret = 1;
3682 goto out;
3683 }
3684 }
3685
3686 n = rb_prev(&info->offset_index);
3687 while (n) {
3688 tmp = rb_entry(n, struct btrfs_free_space,
3689 offset_index);
3690 if (tmp->offset + tmp->bytes < offset)
3691 break;
3692 if (offset + bytes < tmp->offset) {
Feifei Xu5473e0c42016-06-01 19:18:23 +08003693 n = rb_prev(&tmp->offset_index);
Josef Bacik74255aa2013-03-15 09:47:08 -04003694 continue;
3695 }
3696 info = tmp;
3697 goto have_info;
3698 }
3699
3700 n = rb_next(&info->offset_index);
3701 while (n) {
3702 tmp = rb_entry(n, struct btrfs_free_space,
3703 offset_index);
3704 if (offset + bytes < tmp->offset)
3705 break;
3706 if (tmp->offset + tmp->bytes < offset) {
Feifei Xu5473e0c42016-06-01 19:18:23 +08003707 n = rb_next(&tmp->offset_index);
Josef Bacik74255aa2013-03-15 09:47:08 -04003708 continue;
3709 }
3710 info = tmp;
3711 goto have_info;
3712 }
3713
Filipe Manana20005522014-08-29 13:35:13 +01003714 ret = 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003715 goto out;
3716 }
3717
3718 if (info->offset == offset) {
3719 ret = 1;
3720 goto out;
3721 }
3722
3723 if (offset > info->offset && offset < info->offset + info->bytes)
3724 ret = 1;
3725out:
3726 spin_unlock(&ctl->tree_lock);
3727 return ret;
3728}
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003729#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */