blob: 0ddc114e2aed5efe2f5c0eb82add108baf6a676b [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
Josef Bacik96303082009-07-13 21:29:25 -040032#define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8)
33#define MAX_CACHE_BYTES_PER_GIG (32 * 1024)
34
Li Zefan34d52cb2011-03-29 13:46:06 +080035static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040036 struct btrfs_free_space *info);
Josef Bacikcd023e72012-05-14 10:06:40 -040037static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
38 struct btrfs_free_space *info);
Josef Bacik0cb59c92010-07-02 12:14:14 -040039
Li Zefan0414efa2011-04-20 10:20:14 +080040static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
41 struct btrfs_path *path,
42 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040043{
44 struct btrfs_key key;
45 struct btrfs_key location;
46 struct btrfs_disk_key disk_key;
47 struct btrfs_free_space_header *header;
48 struct extent_buffer *leaf;
49 struct inode *inode = NULL;
50 int ret;
51
Josef Bacik0af3d002010-06-21 14:48:16 -040052 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080053 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040054 key.type = 0;
55
56 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
57 if (ret < 0)
58 return ERR_PTR(ret);
59 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020060 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040061 return ERR_PTR(-ENOENT);
62 }
63
64 leaf = path->nodes[0];
65 header = btrfs_item_ptr(leaf, path->slots[0],
66 struct btrfs_free_space_header);
67 btrfs_free_space_key(leaf, header, &disk_key);
68 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020069 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040070
71 inode = btrfs_iget(root->fs_info->sb, &location, root, NULL);
72 if (!inode)
73 return ERR_PTR(-ENOENT);
74 if (IS_ERR(inode))
75 return inode;
76 if (is_bad_inode(inode)) {
77 iput(inode);
78 return ERR_PTR(-ENOENT);
79 }
80
Al Viro528c0322012-04-13 11:03:55 -040081 mapping_set_gfp_mask(inode->i_mapping,
82 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
Miao Xieadae52b2011-03-31 09:43:23 +000083
Li Zefan0414efa2011-04-20 10:20:14 +080084 return inode;
85}
86
87struct inode *lookup_free_space_inode(struct btrfs_root *root,
88 struct btrfs_block_group_cache
89 *block_group, struct btrfs_path *path)
90{
91 struct inode *inode = NULL;
Josef Bacik5b0e95b2011-10-06 08:58:24 -040092 u32 flags = BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
Li Zefan0414efa2011-04-20 10:20:14 +080093
94 spin_lock(&block_group->lock);
95 if (block_group->inode)
96 inode = igrab(block_group->inode);
97 spin_unlock(&block_group->lock);
98 if (inode)
99 return inode;
100
101 inode = __lookup_free_space_inode(root, path,
102 block_group->key.objectid);
103 if (IS_ERR(inode))
104 return inode;
105
Josef Bacik0af3d002010-06-21 14:48:16 -0400106 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400107 if (!((BTRFS_I(inode)->flags & flags) == flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000108 btrfs_info(root->fs_info,
109 "Old style space inode found, converting.");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400110 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
111 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400112 block_group->disk_cache_state = BTRFS_DC_CLEAR;
113 }
114
Josef Bacik300e4f82011-08-29 14:06:00 -0400115 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400116 block_group->inode = igrab(inode);
117 block_group->iref = 1;
118 }
119 spin_unlock(&block_group->lock);
120
121 return inode;
122}
123
Eric Sandeen48a3b632013-04-25 20:41:01 +0000124static int __create_free_space_inode(struct btrfs_root *root,
125 struct btrfs_trans_handle *trans,
126 struct btrfs_path *path,
127 u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400128{
129 struct btrfs_key key;
130 struct btrfs_disk_key disk_key;
131 struct btrfs_free_space_header *header;
132 struct btrfs_inode_item *inode_item;
133 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400134 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400135 int ret;
136
Li Zefan0414efa2011-04-20 10:20:14 +0800137 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400138 if (ret)
139 return ret;
140
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400141 /* We inline crc's for the free disk space cache */
142 if (ino != BTRFS_FREE_INO_OBJECTID)
143 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
144
Josef Bacik0af3d002010-06-21 14:48:16 -0400145 leaf = path->nodes[0];
146 inode_item = btrfs_item_ptr(leaf, path->slots[0],
147 struct btrfs_inode_item);
148 btrfs_item_key(leaf, &disk_key, path->slots[0]);
149 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
150 sizeof(*inode_item));
151 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
152 btrfs_set_inode_size(leaf, inode_item, 0);
153 btrfs_set_inode_nbytes(leaf, inode_item, 0);
154 btrfs_set_inode_uid(leaf, inode_item, 0);
155 btrfs_set_inode_gid(leaf, inode_item, 0);
156 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400157 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400158 btrfs_set_inode_nlink(leaf, inode_item, 1);
159 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800160 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400161 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200162 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400163
164 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800165 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400166 key.type = 0;
167
168 ret = btrfs_insert_empty_item(trans, root, path, &key,
169 sizeof(struct btrfs_free_space_header));
170 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200171 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400172 return ret;
173 }
174 leaf = path->nodes[0];
175 header = btrfs_item_ptr(leaf, path->slots[0],
176 struct btrfs_free_space_header);
177 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
178 btrfs_set_free_space_key(leaf, header, &disk_key);
179 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200180 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400181
182 return 0;
183}
184
Li Zefan0414efa2011-04-20 10:20:14 +0800185int create_free_space_inode(struct btrfs_root *root,
186 struct btrfs_trans_handle *trans,
187 struct btrfs_block_group_cache *block_group,
188 struct btrfs_path *path)
189{
190 int ret;
191 u64 ino;
192
193 ret = btrfs_find_free_objectid(root, &ino);
194 if (ret < 0)
195 return ret;
196
197 return __create_free_space_inode(root, trans, path, ino,
198 block_group->key.objectid);
199}
200
Miao Xie7b61cd92013-05-13 13:55:09 +0000201int btrfs_check_trunc_cache_free_space(struct btrfs_root *root,
202 struct btrfs_block_rsv *rsv)
Josef Bacik0af3d002010-06-21 14:48:16 -0400203{
Josef Bacikc8174312011-11-02 09:29:35 -0400204 u64 needed_bytes;
Miao Xie7b61cd92013-05-13 13:55:09 +0000205 int ret;
Josef Bacikc8174312011-11-02 09:29:35 -0400206
207 /* 1 for slack space, 1 for updating the inode */
208 needed_bytes = btrfs_calc_trunc_metadata_size(root, 1) +
209 btrfs_calc_trans_metadata_size(root, 1);
210
Miao Xie7b61cd92013-05-13 13:55:09 +0000211 spin_lock(&rsv->lock);
212 if (rsv->reserved < needed_bytes)
213 ret = -ENOSPC;
214 else
215 ret = 0;
216 spin_unlock(&rsv->lock);
Wei Yongjun4b286cd2013-05-21 02:39:21 +0000217 return ret;
Miao Xie7b61cd92013-05-13 13:55:09 +0000218}
219
220int btrfs_truncate_free_space_cache(struct btrfs_root *root,
221 struct btrfs_trans_handle *trans,
Miao Xie7b61cd92013-05-13 13:55:09 +0000222 struct inode *inode)
223{
Miao Xie7b61cd92013-05-13 13:55:09 +0000224 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -0400225
Josef Bacik0af3d002010-06-21 14:48:16 -0400226 btrfs_i_size_write(inode, 0);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700227 truncate_pagecache(inode, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -0400228
229 /*
230 * We don't need an orphan item because truncating the free space cache
231 * will never be split across transactions.
232 */
233 ret = btrfs_truncate_inode_items(trans, root, inode,
234 0, BTRFS_EXTENT_DATA_KEY);
235 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100236 btrfs_abort_transaction(trans, root, ret);
Josef Bacik0af3d002010-06-21 14:48:16 -0400237 return ret;
238 }
239
Li Zefan82d59022011-04-20 10:33:24 +0800240 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100241 if (ret)
242 btrfs_abort_transaction(trans, root, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400243
Li Zefan82d59022011-04-20 10:33:24 +0800244 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400245}
246
Josef Bacik9d66e232010-08-25 16:54:15 -0400247static int readahead_cache(struct inode *inode)
248{
249 struct file_ra_state *ra;
250 unsigned long last_index;
251
252 ra = kzalloc(sizeof(*ra), GFP_NOFS);
253 if (!ra)
254 return -ENOMEM;
255
256 file_ra_state_init(ra, inode->i_mapping);
257 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
258
259 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
260
261 kfree(ra);
262
263 return 0;
264}
265
Josef Bacika67509c2011-10-05 15:18:58 -0400266struct io_ctl {
267 void *cur, *orig;
268 struct page *page;
269 struct page **pages;
270 struct btrfs_root *root;
271 unsigned long size;
272 int index;
273 int num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400274 unsigned check_crcs:1;
Josef Bacika67509c2011-10-05 15:18:58 -0400275};
276
277static int io_ctl_init(struct io_ctl *io_ctl, struct inode *inode,
Miao Xie5349d6c2014-06-19 10:42:49 +0800278 struct btrfs_root *root, int write)
Josef Bacika67509c2011-10-05 15:18:58 -0400279{
Miao Xie5349d6c2014-06-19 10:42:49 +0800280 int num_pages;
281 int check_crcs = 0;
282
David Sterbaed6078f2014-06-05 01:59:57 +0200283 num_pages = DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE);
Miao Xie5349d6c2014-06-19 10:42:49 +0800284
285 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
286 check_crcs = 1;
287
288 /* Make sure we can fit our crcs into the first page */
289 if (write && check_crcs &&
290 (num_pages * sizeof(u32)) >= PAGE_CACHE_SIZE)
291 return -ENOSPC;
292
Josef Bacika67509c2011-10-05 15:18:58 -0400293 memset(io_ctl, 0, sizeof(struct io_ctl));
Miao Xie5349d6c2014-06-19 10:42:49 +0800294
295 io_ctl->pages = kzalloc(sizeof(struct page *) * num_pages, GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400296 if (!io_ctl->pages)
297 return -ENOMEM;
Miao Xie5349d6c2014-06-19 10:42:49 +0800298
299 io_ctl->num_pages = num_pages;
Josef Bacika67509c2011-10-05 15:18:58 -0400300 io_ctl->root = root;
Miao Xie5349d6c2014-06-19 10:42:49 +0800301 io_ctl->check_crcs = check_crcs;
302
Josef Bacika67509c2011-10-05 15:18:58 -0400303 return 0;
304}
305
306static void io_ctl_free(struct io_ctl *io_ctl)
307{
308 kfree(io_ctl->pages);
309}
310
311static void io_ctl_unmap_page(struct io_ctl *io_ctl)
312{
313 if (io_ctl->cur) {
314 kunmap(io_ctl->page);
315 io_ctl->cur = NULL;
316 io_ctl->orig = NULL;
317 }
318}
319
320static void io_ctl_map_page(struct io_ctl *io_ctl, int clear)
321{
Josef Bacikb12d6862013-08-26 17:14:08 -0400322 ASSERT(io_ctl->index < io_ctl->num_pages);
Josef Bacika67509c2011-10-05 15:18:58 -0400323 io_ctl->page = io_ctl->pages[io_ctl->index++];
324 io_ctl->cur = kmap(io_ctl->page);
325 io_ctl->orig = io_ctl->cur;
326 io_ctl->size = PAGE_CACHE_SIZE;
327 if (clear)
328 memset(io_ctl->cur, 0, PAGE_CACHE_SIZE);
329}
330
331static void io_ctl_drop_pages(struct io_ctl *io_ctl)
332{
333 int i;
334
335 io_ctl_unmap_page(io_ctl);
336
337 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800338 if (io_ctl->pages[i]) {
339 ClearPageChecked(io_ctl->pages[i]);
340 unlock_page(io_ctl->pages[i]);
341 page_cache_release(io_ctl->pages[i]);
342 }
Josef Bacika67509c2011-10-05 15:18:58 -0400343 }
344}
345
346static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct inode *inode,
347 int uptodate)
348{
349 struct page *page;
350 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
351 int i;
352
353 for (i = 0; i < io_ctl->num_pages; i++) {
354 page = find_or_create_page(inode->i_mapping, i, mask);
355 if (!page) {
356 io_ctl_drop_pages(io_ctl);
357 return -ENOMEM;
358 }
359 io_ctl->pages[i] = page;
360 if (uptodate && !PageUptodate(page)) {
361 btrfs_readpage(NULL, page);
362 lock_page(page);
363 if (!PageUptodate(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500364 btrfs_err(BTRFS_I(inode)->root->fs_info,
365 "error reading free space cache");
Josef Bacika67509c2011-10-05 15:18:58 -0400366 io_ctl_drop_pages(io_ctl);
367 return -EIO;
368 }
369 }
370 }
371
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500372 for (i = 0; i < io_ctl->num_pages; i++) {
373 clear_page_dirty_for_io(io_ctl->pages[i]);
374 set_page_extent_mapped(io_ctl->pages[i]);
375 }
376
Josef Bacika67509c2011-10-05 15:18:58 -0400377 return 0;
378}
379
380static void io_ctl_set_generation(struct io_ctl *io_ctl, u64 generation)
381{
Al Viro528c0322012-04-13 11:03:55 -0400382 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400383
384 io_ctl_map_page(io_ctl, 1);
385
386 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400387 * Skip the csum areas. If we don't check crcs then we just have a
388 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400389 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400390 if (io_ctl->check_crcs) {
391 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
392 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
393 } else {
394 io_ctl->cur += sizeof(u64);
395 io_ctl->size -= sizeof(u64) * 2;
396 }
Josef Bacika67509c2011-10-05 15:18:58 -0400397
398 val = io_ctl->cur;
399 *val = cpu_to_le64(generation);
400 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400401}
402
403static int io_ctl_check_generation(struct io_ctl *io_ctl, u64 generation)
404{
Al Viro528c0322012-04-13 11:03:55 -0400405 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400406
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400407 /*
408 * Skip the crc area. If we don't check crcs then we just have a 64bit
409 * chunk at the front of the first page.
410 */
411 if (io_ctl->check_crcs) {
412 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
413 io_ctl->size -= sizeof(u64) +
414 (sizeof(u32) * io_ctl->num_pages);
415 } else {
416 io_ctl->cur += sizeof(u64);
417 io_ctl->size -= sizeof(u64) * 2;
418 }
Josef Bacika67509c2011-10-05 15:18:58 -0400419
Josef Bacika67509c2011-10-05 15:18:58 -0400420 gen = io_ctl->cur;
421 if (le64_to_cpu(*gen) != generation) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500422 printk_ratelimited(KERN_ERR "BTRFS: space cache generation "
Josef Bacika67509c2011-10-05 15:18:58 -0400423 "(%Lu) does not match inode (%Lu)\n", *gen,
424 generation);
425 io_ctl_unmap_page(io_ctl);
426 return -EIO;
427 }
428 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400429 return 0;
430}
431
432static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
433{
434 u32 *tmp;
435 u32 crc = ~(u32)0;
436 unsigned offset = 0;
437
438 if (!io_ctl->check_crcs) {
439 io_ctl_unmap_page(io_ctl);
440 return;
441 }
442
443 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800444 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400445
Liu Bob0496682013-03-14 14:57:45 +0000446 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400447 PAGE_CACHE_SIZE - offset);
448 btrfs_csum_final(crc, (char *)&crc);
449 io_ctl_unmap_page(io_ctl);
450 tmp = kmap(io_ctl->pages[0]);
451 tmp += index;
452 *tmp = crc;
453 kunmap(io_ctl->pages[0]);
454}
455
456static int io_ctl_check_crc(struct io_ctl *io_ctl, int index)
457{
458 u32 *tmp, val;
459 u32 crc = ~(u32)0;
460 unsigned offset = 0;
461
462 if (!io_ctl->check_crcs) {
463 io_ctl_map_page(io_ctl, 0);
464 return 0;
465 }
466
467 if (index == 0)
468 offset = sizeof(u32) * io_ctl->num_pages;
469
470 tmp = kmap(io_ctl->pages[0]);
471 tmp += index;
472 val = *tmp;
473 kunmap(io_ctl->pages[0]);
474
475 io_ctl_map_page(io_ctl, 0);
Liu Bob0496682013-03-14 14:57:45 +0000476 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400477 PAGE_CACHE_SIZE - offset);
478 btrfs_csum_final(crc, (char *)&crc);
479 if (val != crc) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500480 printk_ratelimited(KERN_ERR "BTRFS: csum mismatch on free "
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400481 "space cache\n");
482 io_ctl_unmap_page(io_ctl);
483 return -EIO;
484 }
485
Josef Bacika67509c2011-10-05 15:18:58 -0400486 return 0;
487}
488
489static int io_ctl_add_entry(struct io_ctl *io_ctl, u64 offset, u64 bytes,
490 void *bitmap)
491{
492 struct btrfs_free_space_entry *entry;
493
494 if (!io_ctl->cur)
495 return -ENOSPC;
496
497 entry = io_ctl->cur;
498 entry->offset = cpu_to_le64(offset);
499 entry->bytes = cpu_to_le64(bytes);
500 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
501 BTRFS_FREE_SPACE_EXTENT;
502 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
503 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
504
505 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
506 return 0;
507
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400508 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400509
510 /* No more pages to map */
511 if (io_ctl->index >= io_ctl->num_pages)
512 return 0;
513
514 /* map the next page */
515 io_ctl_map_page(io_ctl, 1);
516 return 0;
517}
518
519static int io_ctl_add_bitmap(struct io_ctl *io_ctl, void *bitmap)
520{
521 if (!io_ctl->cur)
522 return -ENOSPC;
523
524 /*
525 * If we aren't at the start of the current page, unmap this one and
526 * map the next one if there is any left.
527 */
528 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400529 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400530 if (io_ctl->index >= io_ctl->num_pages)
531 return -ENOSPC;
532 io_ctl_map_page(io_ctl, 0);
533 }
534
535 memcpy(io_ctl->cur, bitmap, PAGE_CACHE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400536 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400537 if (io_ctl->index < io_ctl->num_pages)
538 io_ctl_map_page(io_ctl, 0);
539 return 0;
540}
541
542static void io_ctl_zero_remaining_pages(struct io_ctl *io_ctl)
543{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400544 /*
545 * If we're not on the boundary we know we've modified the page and we
546 * need to crc the page.
547 */
548 if (io_ctl->cur != io_ctl->orig)
549 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
550 else
551 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400552
553 while (io_ctl->index < io_ctl->num_pages) {
554 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400555 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400556 }
557}
558
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400559static int io_ctl_read_entry(struct io_ctl *io_ctl,
560 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400561{
562 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500563 int ret;
564
565 if (!io_ctl->cur) {
566 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
567 if (ret)
568 return ret;
569 }
Josef Bacika67509c2011-10-05 15:18:58 -0400570
571 e = io_ctl->cur;
572 entry->offset = le64_to_cpu(e->offset);
573 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400574 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400575 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
576 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
577
578 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400579 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400580
581 io_ctl_unmap_page(io_ctl);
582
Josef Bacik2f120c02011-11-10 20:45:05 -0500583 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400584}
585
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400586static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
587 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400588{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400589 int ret;
590
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400591 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
592 if (ret)
593 return ret;
594
Josef Bacika67509c2011-10-05 15:18:58 -0400595 memcpy(entry->bitmap, io_ctl->cur, PAGE_CACHE_SIZE);
596 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400597
598 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400599}
600
Josef Bacikcd023e72012-05-14 10:06:40 -0400601/*
602 * Since we attach pinned extents after the fact we can have contiguous sections
603 * of free space that are split up in entries. This poses a problem with the
604 * tree logging stuff since it could have allocated across what appears to be 2
605 * entries since we would have merged the entries when adding the pinned extents
606 * back to the free space cache. So run through the space cache that we just
607 * loaded and merge contiguous entries. This will make the log replay stuff not
608 * blow up and it will make for nicer allocator behavior.
609 */
610static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
611{
612 struct btrfs_free_space *e, *prev = NULL;
613 struct rb_node *n;
614
615again:
616 spin_lock(&ctl->tree_lock);
617 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
618 e = rb_entry(n, struct btrfs_free_space, offset_index);
619 if (!prev)
620 goto next;
621 if (e->bitmap || prev->bitmap)
622 goto next;
623 if (prev->offset + prev->bytes == e->offset) {
624 unlink_free_space(ctl, prev);
625 unlink_free_space(ctl, e);
626 prev->bytes += e->bytes;
627 kmem_cache_free(btrfs_free_space_cachep, e);
628 link_free_space(ctl, prev);
629 prev = NULL;
630 spin_unlock(&ctl->tree_lock);
631 goto again;
632 }
633next:
634 prev = e;
635 }
636 spin_unlock(&ctl->tree_lock);
637}
638
Eric Sandeen48a3b632013-04-25 20:41:01 +0000639static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
640 struct btrfs_free_space_ctl *ctl,
641 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400642{
Josef Bacik9d66e232010-08-25 16:54:15 -0400643 struct btrfs_free_space_header *header;
644 struct extent_buffer *leaf;
Josef Bacika67509c2011-10-05 15:18:58 -0400645 struct io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400646 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400647 struct btrfs_free_space *e, *n;
Josef Bacik9d66e232010-08-25 16:54:15 -0400648 struct list_head bitmaps;
649 u64 num_entries;
650 u64 num_bitmaps;
651 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400652 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400653 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400654
655 INIT_LIST_HEAD(&bitmaps);
656
Josef Bacik9d66e232010-08-25 16:54:15 -0400657 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800658 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400659 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400660
661 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800662 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400663 key.type = 0;
664
665 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800666 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400667 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800668 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400669 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400670 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400671 }
672
Li Zefan0414efa2011-04-20 10:20:14 +0800673 ret = -1;
674
Josef Bacik9d66e232010-08-25 16:54:15 -0400675 leaf = path->nodes[0];
676 header = btrfs_item_ptr(leaf, path->slots[0],
677 struct btrfs_free_space_header);
678 num_entries = btrfs_free_space_entries(leaf, header);
679 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
680 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400681 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400682
Miao Xiee570fd22014-06-19 10:42:50 +0800683 if (!BTRFS_I(inode)->generation) {
684 btrfs_info(root->fs_info,
685 "The free space cache file (%llu) is invalid. skip it\n",
686 offset);
687 return 0;
688 }
689
Josef Bacik9d66e232010-08-25 16:54:15 -0400690 if (BTRFS_I(inode)->generation != generation) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000691 btrfs_err(root->fs_info,
692 "free space inode generation (%llu) "
693 "did not match free space cache generation (%llu)",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200694 BTRFS_I(inode)->generation, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400695 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400696 }
697
698 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400699 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400700
Miao Xie5349d6c2014-06-19 10:42:49 +0800701 ret = io_ctl_init(&io_ctl, inode, root, 0);
Li Zefan706efc62012-01-09 14:36:28 +0800702 if (ret)
703 return ret;
704
Josef Bacik9d66e232010-08-25 16:54:15 -0400705 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800706 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400707 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400708
Josef Bacika67509c2011-10-05 15:18:58 -0400709 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
710 if (ret)
711 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400712
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400713 ret = io_ctl_check_crc(&io_ctl, 0);
714 if (ret)
715 goto free_cache;
716
Josef Bacika67509c2011-10-05 15:18:58 -0400717 ret = io_ctl_check_generation(&io_ctl, generation);
718 if (ret)
719 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400720
Josef Bacika67509c2011-10-05 15:18:58 -0400721 while (num_entries) {
722 e = kmem_cache_zalloc(btrfs_free_space_cachep,
723 GFP_NOFS);
724 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400725 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400726
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400727 ret = io_ctl_read_entry(&io_ctl, e, &type);
728 if (ret) {
729 kmem_cache_free(btrfs_free_space_cachep, e);
730 goto free_cache;
731 }
732
Josef Bacika67509c2011-10-05 15:18:58 -0400733 if (!e->bytes) {
734 kmem_cache_free(btrfs_free_space_cachep, e);
735 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400736 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400737
Josef Bacika67509c2011-10-05 15:18:58 -0400738 if (type == BTRFS_FREE_SPACE_EXTENT) {
739 spin_lock(&ctl->tree_lock);
740 ret = link_free_space(ctl, e);
741 spin_unlock(&ctl->tree_lock);
742 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000743 btrfs_err(root->fs_info,
744 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500745 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400746 goto free_cache;
747 }
Josef Bacika67509c2011-10-05 15:18:58 -0400748 } else {
Josef Bacikb12d6862013-08-26 17:14:08 -0400749 ASSERT(num_bitmaps);
Josef Bacika67509c2011-10-05 15:18:58 -0400750 num_bitmaps--;
751 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
752 if (!e->bitmap) {
753 kmem_cache_free(
754 btrfs_free_space_cachep, e);
755 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400756 }
Josef Bacika67509c2011-10-05 15:18:58 -0400757 spin_lock(&ctl->tree_lock);
758 ret = link_free_space(ctl, e);
759 ctl->total_bitmaps++;
760 ctl->op->recalc_thresholds(ctl);
761 spin_unlock(&ctl->tree_lock);
762 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000763 btrfs_err(root->fs_info,
764 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400765 kmem_cache_free(btrfs_free_space_cachep, e);
766 goto free_cache;
767 }
768 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400769 }
770
Josef Bacika67509c2011-10-05 15:18:58 -0400771 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400772 }
773
Josef Bacik2f120c02011-11-10 20:45:05 -0500774 io_ctl_unmap_page(&io_ctl);
775
Josef Bacika67509c2011-10-05 15:18:58 -0400776 /*
777 * We add the bitmaps at the end of the entries in order that
778 * the bitmap entries are added to the cache.
779 */
780 list_for_each_entry_safe(e, n, &bitmaps, list) {
781 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400782 ret = io_ctl_read_bitmap(&io_ctl, e);
783 if (ret)
784 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400785 }
786
787 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400788 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400789 ret = 1;
790out:
Josef Bacika67509c2011-10-05 15:18:58 -0400791 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400792 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400793free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400794 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800795 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400796 goto out;
797}
798
Li Zefan0414efa2011-04-20 10:20:14 +0800799int load_free_space_cache(struct btrfs_fs_info *fs_info,
800 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400801{
Li Zefan34d52cb2011-03-29 13:46:06 +0800802 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800803 struct btrfs_root *root = fs_info->tree_root;
804 struct inode *inode;
805 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400806 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800807 bool matched;
808 u64 used = btrfs_block_group_used(&block_group->item);
809
810 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800811 * If this block group has been marked to be cleared for one reason or
812 * another then we can't trust the on disk cache, so just return.
813 */
814 spin_lock(&block_group->lock);
815 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
816 spin_unlock(&block_group->lock);
817 return 0;
818 }
819 spin_unlock(&block_group->lock);
820
821 path = btrfs_alloc_path();
822 if (!path)
823 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400824 path->search_commit_root = 1;
825 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800826
827 inode = lookup_free_space_inode(root, block_group, path);
828 if (IS_ERR(inode)) {
829 btrfs_free_path(path);
830 return 0;
831 }
832
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400833 /* We may have converted the inode and made the cache invalid. */
834 spin_lock(&block_group->lock);
835 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
836 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900837 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400838 goto out;
839 }
840 spin_unlock(&block_group->lock);
841
Li Zefan0414efa2011-04-20 10:20:14 +0800842 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
843 path, block_group->key.objectid);
844 btrfs_free_path(path);
845 if (ret <= 0)
846 goto out;
847
848 spin_lock(&ctl->tree_lock);
849 matched = (ctl->free_space == (block_group->key.offset - used -
850 block_group->bytes_super));
851 spin_unlock(&ctl->tree_lock);
852
853 if (!matched) {
854 __btrfs_remove_free_space_cache(ctl);
Miao Xie32d6b472014-04-24 13:31:55 +0800855 btrfs_warn(fs_info, "block group %llu has wrong amount of free space",
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000856 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800857 ret = -1;
858 }
859out:
860 if (ret < 0) {
861 /* This cache is bogus, make sure it gets cleared */
862 spin_lock(&block_group->lock);
863 block_group->disk_cache_state = BTRFS_DC_CLEAR;
864 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800865 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800866
Miao Xie32d6b472014-04-24 13:31:55 +0800867 btrfs_warn(fs_info, "failed to load free space cache for block group %llu, rebuild it now",
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000868 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800869 }
870
871 iput(inode);
872 return ret;
873}
874
Chris Masond4452bc2014-05-19 20:47:56 -0700875static noinline_for_stack
876int write_cache_extent_entries(struct io_ctl *io_ctl,
877 struct btrfs_free_space_ctl *ctl,
878 struct btrfs_block_group_cache *block_group,
879 int *entries, int *bitmaps,
880 struct list_head *bitmap_list)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400881{
Josef Bacikc09544e2011-08-30 10:19:10 -0400882 int ret;
Chris Masond4452bc2014-05-19 20:47:56 -0700883 struct btrfs_free_cluster *cluster = NULL;
884 struct rb_node *node = rb_first(&ctl->free_space_offset);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400885
Josef Bacik43be2142011-04-01 14:55:00 +0000886 /* Get the cluster for this block_group if it exists */
Chris Masond4452bc2014-05-19 20:47:56 -0700887 if (block_group && !list_empty(&block_group->cluster_list)) {
Josef Bacik43be2142011-04-01 14:55:00 +0000888 cluster = list_entry(block_group->cluster_list.next,
889 struct btrfs_free_cluster,
890 block_group_list);
Chris Masond4452bc2014-05-19 20:47:56 -0700891 }
Josef Bacik43be2142011-04-01 14:55:00 +0000892
Josef Bacikf75b1302011-10-05 10:00:18 -0400893 if (!node && cluster) {
894 node = rb_first(&cluster->root);
895 cluster = NULL;
896 }
897
Josef Bacik0cb59c92010-07-02 12:14:14 -0400898 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400899 while (node) {
900 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400901
Josef Bacika67509c2011-10-05 15:18:58 -0400902 e = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masond4452bc2014-05-19 20:47:56 -0700903 *entries += 1;
Josef Bacik43be2142011-04-01 14:55:00 +0000904
Chris Masond4452bc2014-05-19 20:47:56 -0700905 ret = io_ctl_add_entry(io_ctl, e->offset, e->bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400906 e->bitmap);
907 if (ret)
Chris Masond4452bc2014-05-19 20:47:56 -0700908 goto fail;
Josef Bacika67509c2011-10-05 15:18:58 -0400909
910 if (e->bitmap) {
Chris Masond4452bc2014-05-19 20:47:56 -0700911 list_add_tail(&e->list, bitmap_list);
912 *bitmaps += 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400913 }
914 node = rb_next(node);
915 if (!node && cluster) {
916 node = rb_first(&cluster->root);
917 cluster = NULL;
918 }
919 }
Chris Masond4452bc2014-05-19 20:47:56 -0700920 return 0;
921fail:
922 return -ENOSPC;
923}
924
925static noinline_for_stack int
926update_cache_item(struct btrfs_trans_handle *trans,
927 struct btrfs_root *root,
928 struct inode *inode,
929 struct btrfs_path *path, u64 offset,
930 int entries, int bitmaps)
931{
932 struct btrfs_key key;
933 struct btrfs_free_space_header *header;
934 struct extent_buffer *leaf;
935 int ret;
936
937 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
938 key.offset = offset;
939 key.type = 0;
940
941 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
942 if (ret < 0) {
943 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
944 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
945 GFP_NOFS);
946 goto fail;
947 }
948 leaf = path->nodes[0];
949 if (ret > 0) {
950 struct btrfs_key found_key;
951 ASSERT(path->slots[0]);
952 path->slots[0]--;
953 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
954 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
955 found_key.offset != offset) {
956 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
957 inode->i_size - 1,
958 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
959 NULL, GFP_NOFS);
960 btrfs_release_path(path);
961 goto fail;
962 }
963 }
964
965 BTRFS_I(inode)->generation = trans->transid;
966 header = btrfs_item_ptr(leaf, path->slots[0],
967 struct btrfs_free_space_header);
968 btrfs_set_free_space_entries(leaf, header, entries);
969 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
970 btrfs_set_free_space_generation(leaf, header, trans->transid);
971 btrfs_mark_buffer_dirty(leaf);
972 btrfs_release_path(path);
973
974 return 0;
975
976fail:
977 return -1;
978}
979
980static noinline_for_stack int
Miao Xie5349d6c2014-06-19 10:42:49 +0800981write_pinned_extent_entries(struct btrfs_root *root,
982 struct btrfs_block_group_cache *block_group,
983 struct io_ctl *io_ctl,
984 int *entries)
Chris Masond4452bc2014-05-19 20:47:56 -0700985{
986 u64 start, extent_start, extent_end, len;
Chris Masond4452bc2014-05-19 20:47:56 -0700987 struct extent_io_tree *unpin = NULL;
988 int ret;
Josef Bacika67509c2011-10-05 15:18:58 -0400989
Miao Xie5349d6c2014-06-19 10:42:49 +0800990 if (!block_group)
991 return 0;
992
Josef Bacika67509c2011-10-05 15:18:58 -0400993 /*
994 * We want to add any pinned extents to our free space cache
995 * so we don't leak the space
Chris Masond4452bc2014-05-19 20:47:56 -0700996 *
Li Zefandb804f22012-01-10 16:41:01 +0800997 * We shouldn't have switched the pinned extents yet so this is the
998 * right one
999 */
1000 unpin = root->fs_info->pinned_extents;
1001
Miao Xie5349d6c2014-06-19 10:42:49 +08001002 start = block_group->key.objectid;
Li Zefandb804f22012-01-10 16:41:01 +08001003
Miao Xie5349d6c2014-06-19 10:42:49 +08001004 while (start < block_group->key.objectid + block_group->key.offset) {
Li Zefandb804f22012-01-10 16:41:01 +08001005 ret = find_first_extent_bit(unpin, start,
1006 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -04001007 EXTENT_DIRTY, NULL);
Miao Xie5349d6c2014-06-19 10:42:49 +08001008 if (ret)
1009 return 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001010
Josef Bacika67509c2011-10-05 15:18:58 -04001011 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +08001012 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -04001013 block_group->key.offset)
Miao Xie5349d6c2014-06-19 10:42:49 +08001014 return 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001015
Li Zefandb804f22012-01-10 16:41:01 +08001016 extent_start = max(extent_start, start);
1017 extent_end = min(block_group->key.objectid +
1018 block_group->key.offset, extent_end + 1);
1019 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001020
Chris Masond4452bc2014-05-19 20:47:56 -07001021 *entries += 1;
1022 ret = io_ctl_add_entry(io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -04001023 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001024 return -ENOSPC;
Josef Bacik2f356122011-06-10 15:31:13 -04001025
Li Zefandb804f22012-01-10 16:41:01 +08001026 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -04001027 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001028
Miao Xie5349d6c2014-06-19 10:42:49 +08001029 return 0;
1030}
1031
1032static noinline_for_stack int
1033write_bitmap_entries(struct io_ctl *io_ctl, struct list_head *bitmap_list)
1034{
1035 struct list_head *pos, *n;
1036 int ret;
1037
Josef Bacik0cb59c92010-07-02 12:14:14 -04001038 /* Write out the bitmaps */
Chris Masond4452bc2014-05-19 20:47:56 -07001039 list_for_each_safe(pos, n, bitmap_list) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001040 struct btrfs_free_space *entry =
1041 list_entry(pos, struct btrfs_free_space, list);
1042
Chris Masond4452bc2014-05-19 20:47:56 -07001043 ret = io_ctl_add_bitmap(io_ctl, entry->bitmap);
Josef Bacika67509c2011-10-05 15:18:58 -04001044 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001045 return -ENOSPC;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001046 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001047 }
1048
Miao Xie5349d6c2014-06-19 10:42:49 +08001049 return 0;
1050}
Josef Bacik0cb59c92010-07-02 12:14:14 -04001051
Miao Xie5349d6c2014-06-19 10:42:49 +08001052static int flush_dirty_cache(struct inode *inode)
1053{
1054 int ret;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001055
Josef Bacik0ef8b722013-10-25 16:13:35 -04001056 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Miao Xie5349d6c2014-06-19 10:42:49 +08001057 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001058 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
1059 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1060 GFP_NOFS);
Chris Masond4452bc2014-05-19 20:47:56 -07001061
Miao Xie5349d6c2014-06-19 10:42:49 +08001062 return ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001063}
1064
1065static void noinline_for_stack
1066cleanup_write_cache_enospc(struct inode *inode,
1067 struct io_ctl *io_ctl,
1068 struct extent_state **cached_state,
1069 struct list_head *bitmap_list)
1070{
1071 struct list_head *pos, *n;
Miao Xie5349d6c2014-06-19 10:42:49 +08001072
Chris Masond4452bc2014-05-19 20:47:56 -07001073 list_for_each_safe(pos, n, bitmap_list) {
1074 struct btrfs_free_space *entry =
1075 list_entry(pos, struct btrfs_free_space, list);
1076 list_del_init(&entry->list);
1077 }
1078 io_ctl_drop_pages(io_ctl);
1079 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1080 i_size_read(inode) - 1, cached_state,
1081 GFP_NOFS);
1082}
1083
1084/**
1085 * __btrfs_write_out_cache - write out cached info to an inode
1086 * @root - the root the inode belongs to
1087 * @ctl - the free space cache we are going to write out
1088 * @block_group - the block_group for this cache if it belongs to a block_group
1089 * @trans - the trans handle
1090 * @path - the path to use
1091 * @offset - the offset for the key we'll insert
1092 *
1093 * This function writes out a free space cache struct to disk for quick recovery
1094 * on mount. This will return 0 if it was successfull in writing the cache out,
1095 * and -1 if it was not.
1096 */
1097static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
1098 struct btrfs_free_space_ctl *ctl,
1099 struct btrfs_block_group_cache *block_group,
1100 struct btrfs_trans_handle *trans,
1101 struct btrfs_path *path, u64 offset)
1102{
1103 struct extent_state *cached_state = NULL;
1104 struct io_ctl io_ctl;
Miao Xie5349d6c2014-06-19 10:42:49 +08001105 LIST_HEAD(bitmap_list);
Chris Masond4452bc2014-05-19 20:47:56 -07001106 int entries = 0;
1107 int bitmaps = 0;
1108 int ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001109
1110 if (!i_size_read(inode))
1111 return -1;
1112
Miao Xie5349d6c2014-06-19 10:42:49 +08001113 ret = io_ctl_init(&io_ctl, inode, root, 1);
Chris Masond4452bc2014-05-19 20:47:56 -07001114 if (ret)
1115 return -1;
1116
Miao Xiee570fd22014-06-19 10:42:50 +08001117 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA)) {
1118 down_write(&block_group->data_rwsem);
1119 spin_lock(&block_group->lock);
1120 if (block_group->delalloc_bytes) {
1121 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
1122 spin_unlock(&block_group->lock);
1123 up_write(&block_group->data_rwsem);
1124 BTRFS_I(inode)->generation = 0;
1125 ret = 0;
1126 goto out;
1127 }
1128 spin_unlock(&block_group->lock);
1129 }
1130
Chris Masond4452bc2014-05-19 20:47:56 -07001131 /* Lock all pages first so we can lock the extent safely. */
1132 io_ctl_prepare_pages(&io_ctl, inode, 0);
1133
1134 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
1135 0, &cached_state);
1136
Chris Masond4452bc2014-05-19 20:47:56 -07001137 io_ctl_set_generation(&io_ctl, trans->transid);
1138
Miao Xie5349d6c2014-06-19 10:42:49 +08001139 /* Write out the extent entries in the free space cache */
Chris Masond4452bc2014-05-19 20:47:56 -07001140 ret = write_cache_extent_entries(&io_ctl, ctl,
1141 block_group, &entries, &bitmaps,
1142 &bitmap_list);
1143 if (ret)
1144 goto out_nospc;
1145
Miao Xie5349d6c2014-06-19 10:42:49 +08001146 /*
1147 * Some spaces that are freed in the current transaction are pinned,
1148 * they will be added into free space cache after the transaction is
1149 * committed, we shouldn't lose them.
1150 */
1151 ret = write_pinned_extent_entries(root, block_group, &io_ctl, &entries);
1152 if (ret)
Chris Masond4452bc2014-05-19 20:47:56 -07001153 goto out_nospc;
Miao Xie5349d6c2014-06-19 10:42:49 +08001154
1155 /* At last, we write out all the bitmaps. */
1156 ret = write_bitmap_entries(&io_ctl, &bitmap_list);
1157 if (ret)
1158 goto out_nospc;
1159
1160 /* Zero out the rest of the pages just to make sure */
1161 io_ctl_zero_remaining_pages(&io_ctl);
1162
1163 /* Everything is written out, now we dirty the pages in the file. */
1164 ret = btrfs_dirty_pages(root, inode, io_ctl.pages, io_ctl.num_pages,
1165 0, i_size_read(inode), &cached_state);
1166 if (ret)
1167 goto out_nospc;
1168
Miao Xiee570fd22014-06-19 10:42:50 +08001169 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA))
1170 up_write(&block_group->data_rwsem);
Miao Xie5349d6c2014-06-19 10:42:49 +08001171 /*
1172 * Release the pages and unlock the extent, we will flush
1173 * them out later
1174 */
1175 io_ctl_drop_pages(&io_ctl);
1176
1177 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1178 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1179
1180 /* Flush the dirty pages in the cache file. */
1181 ret = flush_dirty_cache(inode);
1182 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001183 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001184
Miao Xie5349d6c2014-06-19 10:42:49 +08001185 /* Update the cache item to tell everyone this cache file is valid. */
1186 ret = update_cache_item(trans, root, inode, path, offset,
Chris Masond4452bc2014-05-19 20:47:56 -07001187 entries, bitmaps);
Josef Bacik2f356122011-06-10 15:31:13 -04001188out:
Josef Bacika67509c2011-10-05 15:18:58 -04001189 io_ctl_free(&io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001190 if (ret) {
Josef Bacika67509c2011-10-05 15:18:58 -04001191 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001192 BTRFS_I(inode)->generation = 0;
1193 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001194 btrfs_update_inode(trans, root, inode);
Miao Xie5349d6c2014-06-19 10:42:49 +08001195 return ret;
Josef Bacika67509c2011-10-05 15:18:58 -04001196
1197out_nospc:
Chris Masond4452bc2014-05-19 20:47:56 -07001198 cleanup_write_cache_enospc(inode, &io_ctl, &cached_state, &bitmap_list);
Miao Xiee570fd22014-06-19 10:42:50 +08001199
1200 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA))
1201 up_write(&block_group->data_rwsem);
1202
Josef Bacika67509c2011-10-05 15:18:58 -04001203 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001204}
1205
1206int btrfs_write_out_cache(struct btrfs_root *root,
1207 struct btrfs_trans_handle *trans,
1208 struct btrfs_block_group_cache *block_group,
1209 struct btrfs_path *path)
1210{
1211 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1212 struct inode *inode;
1213 int ret = 0;
1214
1215 root = root->fs_info->tree_root;
1216
1217 spin_lock(&block_group->lock);
1218 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1219 spin_unlock(&block_group->lock);
1220 return 0;
1221 }
Miao Xiee570fd22014-06-19 10:42:50 +08001222
1223 if (block_group->delalloc_bytes) {
1224 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
1225 spin_unlock(&block_group->lock);
1226 return 0;
1227 }
Li Zefan0414efa2011-04-20 10:20:14 +08001228 spin_unlock(&block_group->lock);
1229
1230 inode = lookup_free_space_inode(root, block_group, path);
1231 if (IS_ERR(inode))
1232 return 0;
1233
1234 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
1235 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001236 if (ret) {
Li Zefan0414efa2011-04-20 10:20:14 +08001237 spin_lock(&block_group->lock);
1238 block_group->disk_cache_state = BTRFS_DC_ERROR;
1239 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +08001240 ret = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04001241#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00001242 btrfs_err(root->fs_info,
1243 "failed to write free space cache for block group %llu",
1244 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001245#endif
Li Zefan0414efa2011-04-20 10:20:14 +08001246 }
1247
Josef Bacik0cb59c92010-07-02 12:14:14 -04001248 iput(inode);
1249 return ret;
1250}
1251
Li Zefan34d52cb2011-03-29 13:46:06 +08001252static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001253 u64 offset)
1254{
Josef Bacikb12d6862013-08-26 17:14:08 -04001255 ASSERT(offset >= bitmap_start);
Josef Bacik96303082009-07-13 21:29:25 -04001256 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001257 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001258}
1259
Li Zefan34d52cb2011-03-29 13:46:06 +08001260static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001261{
Li Zefan34d52cb2011-03-29 13:46:06 +08001262 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001263}
1264
Li Zefan34d52cb2011-03-29 13:46:06 +08001265static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001266 u64 offset)
1267{
1268 u64 bitmap_start;
1269 u64 bytes_per_bitmap;
1270
Li Zefan34d52cb2011-03-29 13:46:06 +08001271 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1272 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001273 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
1274 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001275 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001276
1277 return bitmap_start;
1278}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001279
1280static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001281 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001282{
1283 struct rb_node **p = &root->rb_node;
1284 struct rb_node *parent = NULL;
1285 struct btrfs_free_space *info;
1286
1287 while (*p) {
1288 parent = *p;
1289 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1290
Josef Bacik96303082009-07-13 21:29:25 -04001291 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001292 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001293 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001294 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001295 } else {
1296 /*
1297 * we could have a bitmap entry and an extent entry
1298 * share the same offset. If this is the case, we want
1299 * the extent entry to always be found first if we do a
1300 * linear search through the tree, since we want to have
1301 * the quickest allocation time, and allocating from an
1302 * extent is faster than allocating from a bitmap. So
1303 * if we're inserting a bitmap and we find an entry at
1304 * this offset, we want to go right, or after this entry
1305 * logically. If we are inserting an extent and we've
1306 * found a bitmap, we want to go left, or before
1307 * logically.
1308 */
1309 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001310 if (info->bitmap) {
1311 WARN_ON_ONCE(1);
1312 return -EEXIST;
1313 }
Josef Bacik96303082009-07-13 21:29:25 -04001314 p = &(*p)->rb_right;
1315 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001316 if (!info->bitmap) {
1317 WARN_ON_ONCE(1);
1318 return -EEXIST;
1319 }
Josef Bacik96303082009-07-13 21:29:25 -04001320 p = &(*p)->rb_left;
1321 }
1322 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001323 }
1324
1325 rb_link_node(node, parent, p);
1326 rb_insert_color(node, root);
1327
1328 return 0;
1329}
1330
1331/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001332 * searches the tree for the given offset.
1333 *
Josef Bacik96303082009-07-13 21:29:25 -04001334 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1335 * want a section that has at least bytes size and comes at or after the given
1336 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001337 */
Josef Bacik96303082009-07-13 21:29:25 -04001338static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001339tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001340 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001341{
Li Zefan34d52cb2011-03-29 13:46:06 +08001342 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001343 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001344
Josef Bacik96303082009-07-13 21:29:25 -04001345 /* find entry that is closest to the 'offset' */
1346 while (1) {
1347 if (!n) {
1348 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001349 break;
1350 }
Josef Bacik96303082009-07-13 21:29:25 -04001351
1352 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1353 prev = entry;
1354
1355 if (offset < entry->offset)
1356 n = n->rb_left;
1357 else if (offset > entry->offset)
1358 n = n->rb_right;
1359 else
1360 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001361 }
1362
Josef Bacik96303082009-07-13 21:29:25 -04001363 if (bitmap_only) {
1364 if (!entry)
1365 return NULL;
1366 if (entry->bitmap)
1367 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001368
Josef Bacik96303082009-07-13 21:29:25 -04001369 /*
1370 * bitmap entry and extent entry may share same offset,
1371 * in that case, bitmap entry comes after extent entry.
1372 */
1373 n = rb_next(n);
1374 if (!n)
1375 return NULL;
1376 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1377 if (entry->offset != offset)
1378 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001379
Josef Bacik96303082009-07-13 21:29:25 -04001380 WARN_ON(!entry->bitmap);
1381 return entry;
1382 } else if (entry) {
1383 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001384 /*
Josef Bacik96303082009-07-13 21:29:25 -04001385 * if previous extent entry covers the offset,
1386 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001387 */
Miao Xiede6c4112012-10-18 08:18:01 +00001388 n = rb_prev(&entry->offset_index);
1389 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001390 prev = rb_entry(n, struct btrfs_free_space,
1391 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001392 if (!prev->bitmap &&
1393 prev->offset + prev->bytes > offset)
1394 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001395 }
Josef Bacik96303082009-07-13 21:29:25 -04001396 }
1397 return entry;
1398 }
1399
1400 if (!prev)
1401 return NULL;
1402
1403 /* find last entry before the 'offset' */
1404 entry = prev;
1405 if (entry->offset > offset) {
1406 n = rb_prev(&entry->offset_index);
1407 if (n) {
1408 entry = rb_entry(n, struct btrfs_free_space,
1409 offset_index);
Josef Bacikb12d6862013-08-26 17:14:08 -04001410 ASSERT(entry->offset <= offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001411 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001412 if (fuzzy)
1413 return entry;
1414 else
1415 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001416 }
1417 }
1418
Josef Bacik96303082009-07-13 21:29:25 -04001419 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001420 n = rb_prev(&entry->offset_index);
1421 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001422 prev = rb_entry(n, struct btrfs_free_space,
1423 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001424 if (!prev->bitmap &&
1425 prev->offset + prev->bytes > offset)
1426 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001427 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001428 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001429 return entry;
1430 } else if (entry->offset + entry->bytes > offset)
1431 return entry;
1432
1433 if (!fuzzy)
1434 return NULL;
1435
1436 while (1) {
1437 if (entry->bitmap) {
1438 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001439 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001440 break;
1441 } else {
1442 if (entry->offset + entry->bytes > offset)
1443 break;
1444 }
1445
1446 n = rb_next(&entry->offset_index);
1447 if (!n)
1448 return NULL;
1449 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1450 }
1451 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001452}
1453
Li Zefanf333adb2010-11-09 14:57:39 +08001454static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001455__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001456 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001457{
Li Zefan34d52cb2011-03-29 13:46:06 +08001458 rb_erase(&info->offset_index, &ctl->free_space_offset);
1459 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001460}
1461
Li Zefan34d52cb2011-03-29 13:46:06 +08001462static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001463 struct btrfs_free_space *info)
1464{
Li Zefan34d52cb2011-03-29 13:46:06 +08001465 __unlink_free_space(ctl, info);
1466 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001467}
1468
Li Zefan34d52cb2011-03-29 13:46:06 +08001469static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001470 struct btrfs_free_space *info)
1471{
1472 int ret = 0;
1473
Josef Bacikb12d6862013-08-26 17:14:08 -04001474 ASSERT(info->bytes || info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001475 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001476 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001477 if (ret)
1478 return ret;
1479
Li Zefan34d52cb2011-03-29 13:46:06 +08001480 ctl->free_space += info->bytes;
1481 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001482 return ret;
1483}
1484
Li Zefan34d52cb2011-03-29 13:46:06 +08001485static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001486{
Li Zefan34d52cb2011-03-29 13:46:06 +08001487 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001488 u64 max_bytes;
1489 u64 bitmap_bytes;
1490 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001491 u64 size = block_group->key.offset;
Wang Sheng-Hui96009762012-11-30 06:30:14 +00001492 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001493 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1494
Josef Bacikdde57402013-02-12 14:07:51 -05001495 max_bitmaps = max(max_bitmaps, 1);
1496
Josef Bacikb12d6862013-08-26 17:14:08 -04001497 ASSERT(ctl->total_bitmaps <= max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001498
1499 /*
1500 * The goal is to keep the total amount of memory used per 1gb of space
1501 * at or below 32k, so we need to adjust how much memory we allow to be
1502 * used by extent based free space tracking
1503 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001504 if (size < 1024 * 1024 * 1024)
1505 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1506 else
1507 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1508 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001509
Josef Bacik25891f72009-09-11 16:11:20 -04001510 /*
1511 * we want to account for 1 more bitmap than what we have so we can make
1512 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1513 * we add more bitmaps.
1514 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001515 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001516
Josef Bacik25891f72009-09-11 16:11:20 -04001517 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001518 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001519 return;
Josef Bacik96303082009-07-13 21:29:25 -04001520 }
Josef Bacik25891f72009-09-11 16:11:20 -04001521
1522 /*
1523 * we want the extent entry threshold to always be at most 1/2 the maxw
1524 * bytes we can have, or whatever is less than that.
1525 */
1526 extent_bytes = max_bytes - bitmap_bytes;
1527 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1528
Li Zefan34d52cb2011-03-29 13:46:06 +08001529 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001530 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001531}
1532
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001533static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1534 struct btrfs_free_space *info,
1535 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001536{
Li Zefanf38b6e72011-03-14 13:40:51 +08001537 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001538
Li Zefan34d52cb2011-03-29 13:46:06 +08001539 start = offset_to_bit(info->offset, ctl->unit, offset);
1540 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001541 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001542
Li Zefanf38b6e72011-03-14 13:40:51 +08001543 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001544
1545 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001546}
1547
1548static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1549 struct btrfs_free_space *info, u64 offset,
1550 u64 bytes)
1551{
1552 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001553 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001554}
1555
Li Zefan34d52cb2011-03-29 13:46:06 +08001556static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001557 struct btrfs_free_space *info, u64 offset,
1558 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001559{
Li Zefanf38b6e72011-03-14 13:40:51 +08001560 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001561
Li Zefan34d52cb2011-03-29 13:46:06 +08001562 start = offset_to_bit(info->offset, ctl->unit, offset);
1563 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001564 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001565
Li Zefanf38b6e72011-03-14 13:40:51 +08001566 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001567
1568 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001569 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001570}
1571
Miao Xiea4820392013-09-09 13:19:42 +08001572/*
1573 * If we can not find suitable extent, we will use bytes to record
1574 * the size of the max extent.
1575 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001576static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001577 struct btrfs_free_space *bitmap_info, u64 *offset,
1578 u64 *bytes)
1579{
1580 unsigned long found_bits = 0;
Miao Xiea4820392013-09-09 13:19:42 +08001581 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001582 unsigned long bits, i;
1583 unsigned long next_zero;
Miao Xiea4820392013-09-09 13:19:42 +08001584 unsigned long extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001585
Li Zefan34d52cb2011-03-29 13:46:06 +08001586 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001587 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001588 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001589
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001590 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04001591 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1592 BITS_PER_BITMAP, i);
Miao Xiea4820392013-09-09 13:19:42 +08001593 extent_bits = next_zero - i;
1594 if (extent_bits >= bits) {
1595 found_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001596 break;
Miao Xiea4820392013-09-09 13:19:42 +08001597 } else if (extent_bits > max_bits) {
1598 max_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001599 }
1600 i = next_zero;
1601 }
1602
1603 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001604 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1605 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001606 return 0;
1607 }
1608
Miao Xiea4820392013-09-09 13:19:42 +08001609 *bytes = (u64)(max_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001610 return -1;
1611}
1612
Miao Xiea4820392013-09-09 13:19:42 +08001613/* Cache the size of the max extent in bytes */
Li Zefan34d52cb2011-03-29 13:46:06 +08001614static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001615find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
Miao Xiea4820392013-09-09 13:19:42 +08001616 unsigned long align, u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04001617{
1618 struct btrfs_free_space *entry;
1619 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001620 u64 tmp;
1621 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001622 int ret;
1623
Li Zefan34d52cb2011-03-29 13:46:06 +08001624 if (!ctl->free_space_offset.rb_node)
Miao Xiea4820392013-09-09 13:19:42 +08001625 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001626
Li Zefan34d52cb2011-03-29 13:46:06 +08001627 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001628 if (!entry)
Miao Xiea4820392013-09-09 13:19:42 +08001629 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001630
1631 for (node = &entry->offset_index; node; node = rb_next(node)) {
1632 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Miao Xiea4820392013-09-09 13:19:42 +08001633 if (entry->bytes < *bytes) {
1634 if (entry->bytes > *max_extent_size)
1635 *max_extent_size = entry->bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001636 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001637 }
Josef Bacik96303082009-07-13 21:29:25 -04001638
David Woodhouse53b381b2013-01-29 18:40:14 -05001639 /* make sure the space returned is big enough
1640 * to match our requested alignment
1641 */
1642 if (*bytes >= align) {
Miao Xiea4820392013-09-09 13:19:42 +08001643 tmp = entry->offset - ctl->start + align - 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05001644 do_div(tmp, align);
1645 tmp = tmp * align + ctl->start;
1646 align_off = tmp - entry->offset;
1647 } else {
1648 align_off = 0;
1649 tmp = entry->offset;
1650 }
1651
Miao Xiea4820392013-09-09 13:19:42 +08001652 if (entry->bytes < *bytes + align_off) {
1653 if (entry->bytes > *max_extent_size)
1654 *max_extent_size = entry->bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05001655 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001656 }
David Woodhouse53b381b2013-01-29 18:40:14 -05001657
Josef Bacik96303082009-07-13 21:29:25 -04001658 if (entry->bitmap) {
Miao Xiea4820392013-09-09 13:19:42 +08001659 u64 size = *bytes;
1660
1661 ret = search_bitmap(ctl, entry, &tmp, &size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001662 if (!ret) {
1663 *offset = tmp;
Miao Xiea4820392013-09-09 13:19:42 +08001664 *bytes = size;
Josef Bacik96303082009-07-13 21:29:25 -04001665 return entry;
Miao Xiea4820392013-09-09 13:19:42 +08001666 } else if (size > *max_extent_size) {
1667 *max_extent_size = size;
David Woodhouse53b381b2013-01-29 18:40:14 -05001668 }
Josef Bacik96303082009-07-13 21:29:25 -04001669 continue;
1670 }
1671
David Woodhouse53b381b2013-01-29 18:40:14 -05001672 *offset = tmp;
1673 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001674 return entry;
1675 }
Miao Xiea4820392013-09-09 13:19:42 +08001676out:
Josef Bacik96303082009-07-13 21:29:25 -04001677 return NULL;
1678}
1679
Li Zefan34d52cb2011-03-29 13:46:06 +08001680static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001681 struct btrfs_free_space *info, u64 offset)
1682{
Li Zefan34d52cb2011-03-29 13:46:06 +08001683 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001684 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001685 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001686 link_free_space(ctl, info);
1687 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001688
Li Zefan34d52cb2011-03-29 13:46:06 +08001689 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001690}
1691
Li Zefan34d52cb2011-03-29 13:46:06 +08001692static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001693 struct btrfs_free_space *bitmap_info)
1694{
Li Zefan34d52cb2011-03-29 13:46:06 +08001695 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001696 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001697 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001698 ctl->total_bitmaps--;
1699 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001700}
1701
Li Zefan34d52cb2011-03-29 13:46:06 +08001702static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001703 struct btrfs_free_space *bitmap_info,
1704 u64 *offset, u64 *bytes)
1705{
1706 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001707 u64 search_start, search_bytes;
1708 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001709
1710again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001711 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001712
Josef Bacik6606bb92009-07-31 11:03:58 -04001713 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001714 * We need to search for bits in this bitmap. We could only cover some
1715 * of the extent in this bitmap thanks to how we add space, so we need
1716 * to search for as much as it as we can and clear that amount, and then
1717 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001718 */
1719 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001720 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001721 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001722 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001723 if (ret < 0 || search_start != *offset)
1724 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001725
Josef Bacikbdb7d302012-06-27 15:10:56 -04001726 /* We may have found more bits than what we need */
1727 search_bytes = min(search_bytes, *bytes);
1728
1729 /* Cannot clear past the end of the bitmap */
1730 search_bytes = min(search_bytes, end - search_start + 1);
1731
1732 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1733 *offset += search_bytes;
1734 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001735
1736 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001737 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001738 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001739 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001740
Josef Bacik6606bb92009-07-31 11:03:58 -04001741 /*
1742 * no entry after this bitmap, but we still have bytes to
1743 * remove, so something has gone wrong.
1744 */
1745 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001746 return -EINVAL;
1747
Josef Bacik6606bb92009-07-31 11:03:58 -04001748 bitmap_info = rb_entry(next, struct btrfs_free_space,
1749 offset_index);
1750
1751 /*
1752 * if the next entry isn't a bitmap we need to return to let the
1753 * extent stuff do its work.
1754 */
Josef Bacik96303082009-07-13 21:29:25 -04001755 if (!bitmap_info->bitmap)
1756 return -EAGAIN;
1757
Josef Bacik6606bb92009-07-31 11:03:58 -04001758 /*
1759 * Ok the next item is a bitmap, but it may not actually hold
1760 * the information for the rest of this free space stuff, so
1761 * look for it, and if we don't find it return so we can try
1762 * everything over again.
1763 */
1764 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001765 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001766 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001767 &search_bytes);
1768 if (ret < 0 || search_start != *offset)
1769 return -EAGAIN;
1770
Josef Bacik96303082009-07-13 21:29:25 -04001771 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001772 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001773 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001774
1775 return 0;
1776}
1777
Josef Bacik2cdc3422011-05-27 14:07:49 -04001778static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1779 struct btrfs_free_space *info, u64 offset,
1780 u64 bytes)
1781{
1782 u64 bytes_to_set = 0;
1783 u64 end;
1784
1785 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1786
1787 bytes_to_set = min(end - offset, bytes);
1788
1789 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1790
1791 return bytes_to_set;
1792
1793}
1794
Li Zefan34d52cb2011-03-29 13:46:06 +08001795static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1796 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001797{
Li Zefan34d52cb2011-03-29 13:46:06 +08001798 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001799
1800 /*
1801 * If we are below the extents threshold then we can add this as an
1802 * extent, and don't have to deal with the bitmap
1803 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001804 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001805 /*
1806 * If this block group has some small extents we don't want to
1807 * use up all of our free slots in the cache with them, we want
1808 * to reserve them to larger extents, however if we have plent
1809 * of cache left then go ahead an dadd them, no sense in adding
1810 * the overhead of a bitmap if we don't have to.
1811 */
1812 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001813 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1814 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001815 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001816 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001817 }
1818 }
Josef Bacik96303082009-07-13 21:29:25 -04001819
1820 /*
Josef Bacikdde57402013-02-12 14:07:51 -05001821 * The original block groups from mkfs can be really small, like 8
1822 * megabytes, so don't bother with a bitmap for those entries. However
1823 * some block groups can be smaller than what a bitmap would cover but
1824 * are still large enough that they could overflow the 32k memory limit,
1825 * so allow those block groups to still be allowed to have a bitmap
1826 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04001827 */
Josef Bacikdde57402013-02-12 14:07:51 -05001828 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001829 return false;
1830
1831 return true;
1832}
1833
Josef Bacik2cdc3422011-05-27 14:07:49 -04001834static struct btrfs_free_space_op free_space_op = {
1835 .recalc_thresholds = recalculate_thresholds,
1836 .use_bitmap = use_bitmap,
1837};
1838
Li Zefan34d52cb2011-03-29 13:46:06 +08001839static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1840 struct btrfs_free_space *info)
1841{
1842 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001843 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08001844 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001845 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08001846 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001847
1848 bytes = info->bytes;
1849 offset = info->offset;
1850
Li Zefan34d52cb2011-03-29 13:46:06 +08001851 if (!ctl->op->use_bitmap(ctl, info))
1852 return 0;
1853
Josef Bacik2cdc3422011-05-27 14:07:49 -04001854 if (ctl->op == &free_space_op)
1855 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001856again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001857 /*
1858 * Since we link bitmaps right into the cluster we need to see if we
1859 * have a cluster here, and if so and it has our bitmap we need to add
1860 * the free space to that bitmap.
1861 */
1862 if (block_group && !list_empty(&block_group->cluster_list)) {
1863 struct btrfs_free_cluster *cluster;
1864 struct rb_node *node;
1865 struct btrfs_free_space *entry;
1866
1867 cluster = list_entry(block_group->cluster_list.next,
1868 struct btrfs_free_cluster,
1869 block_group_list);
1870 spin_lock(&cluster->lock);
1871 node = rb_first(&cluster->root);
1872 if (!node) {
1873 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001874 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001875 }
1876
1877 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1878 if (!entry->bitmap) {
1879 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001880 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001881 }
1882
1883 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1884 bytes_added = add_bytes_to_bitmap(ctl, entry,
1885 offset, bytes);
1886 bytes -= bytes_added;
1887 offset += bytes_added;
1888 }
1889 spin_unlock(&cluster->lock);
1890 if (!bytes) {
1891 ret = 1;
1892 goto out;
1893 }
1894 }
Chris Mason38e87882011-06-10 16:36:57 -04001895
1896no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08001897 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001898 1, 0);
1899 if (!bitmap_info) {
Josef Bacikb12d6862013-08-26 17:14:08 -04001900 ASSERT(added == 0);
Josef Bacik96303082009-07-13 21:29:25 -04001901 goto new_bitmap;
1902 }
1903
Josef Bacik2cdc3422011-05-27 14:07:49 -04001904 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1905 bytes -= bytes_added;
1906 offset += bytes_added;
1907 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001908
1909 if (!bytes) {
1910 ret = 1;
1911 goto out;
1912 } else
1913 goto again;
1914
1915new_bitmap:
1916 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001917 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001918 added = 1;
1919 info = NULL;
1920 goto again;
1921 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001922 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001923
1924 /* no pre-allocated info, allocate a new one */
1925 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001926 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1927 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001928 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001929 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001930 ret = -ENOMEM;
1931 goto out;
1932 }
1933 }
1934
1935 /* allocate the bitmap */
1936 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001937 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001938 if (!info->bitmap) {
1939 ret = -ENOMEM;
1940 goto out;
1941 }
1942 goto again;
1943 }
1944
1945out:
1946 if (info) {
1947 if (info->bitmap)
1948 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001949 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001950 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001951
1952 return ret;
1953}
1954
Chris Mason945d8962011-05-22 12:33:42 -04001955static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001956 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001957{
Li Zefan120d66e2010-11-09 14:56:50 +08001958 struct btrfs_free_space *left_info;
1959 struct btrfs_free_space *right_info;
1960 bool merged = false;
1961 u64 offset = info->offset;
1962 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001963
Josef Bacik0f9dd462008-09-23 13:14:11 -04001964 /*
1965 * first we want to see if there is free space adjacent to the range we
1966 * are adding, if there is remove that struct and add a new one to
1967 * cover the entire range
1968 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001969 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001970 if (right_info && rb_prev(&right_info->offset_index))
1971 left_info = rb_entry(rb_prev(&right_info->offset_index),
1972 struct btrfs_free_space, offset_index);
1973 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001974 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001975
Josef Bacik96303082009-07-13 21:29:25 -04001976 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001977 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001978 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001979 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001980 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001981 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001982 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001983 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001984 }
1985
Josef Bacik96303082009-07-13 21:29:25 -04001986 if (left_info && !left_info->bitmap &&
1987 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001988 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001989 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001990 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001991 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001992 info->offset = left_info->offset;
1993 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001994 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001995 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001996 }
1997
Li Zefan120d66e2010-11-09 14:56:50 +08001998 return merged;
1999}
2000
Filipe Manana20005522014-08-29 13:35:13 +01002001static bool steal_from_bitmap_to_end(struct btrfs_free_space_ctl *ctl,
2002 struct btrfs_free_space *info,
2003 bool update_stat)
2004{
2005 struct btrfs_free_space *bitmap;
2006 unsigned long i;
2007 unsigned long j;
2008 const u64 end = info->offset + info->bytes;
2009 const u64 bitmap_offset = offset_to_bitmap(ctl, end);
2010 u64 bytes;
2011
2012 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2013 if (!bitmap)
2014 return false;
2015
2016 i = offset_to_bit(bitmap->offset, ctl->unit, end);
2017 j = find_next_zero_bit(bitmap->bitmap, BITS_PER_BITMAP, i);
2018 if (j == i)
2019 return false;
2020 bytes = (j - i) * ctl->unit;
2021 info->bytes += bytes;
2022
2023 if (update_stat)
2024 bitmap_clear_bits(ctl, bitmap, end, bytes);
2025 else
2026 __bitmap_clear_bits(ctl, bitmap, end, bytes);
2027
2028 if (!bitmap->bytes)
2029 free_bitmap(ctl, bitmap);
2030
2031 return true;
2032}
2033
2034static bool steal_from_bitmap_to_front(struct btrfs_free_space_ctl *ctl,
2035 struct btrfs_free_space *info,
2036 bool update_stat)
2037{
2038 struct btrfs_free_space *bitmap;
2039 u64 bitmap_offset;
2040 unsigned long i;
2041 unsigned long j;
2042 unsigned long prev_j;
2043 u64 bytes;
2044
2045 bitmap_offset = offset_to_bitmap(ctl, info->offset);
2046 /* If we're on a boundary, try the previous logical bitmap. */
2047 if (bitmap_offset == info->offset) {
2048 if (info->offset == 0)
2049 return false;
2050 bitmap_offset = offset_to_bitmap(ctl, info->offset - 1);
2051 }
2052
2053 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2054 if (!bitmap)
2055 return false;
2056
2057 i = offset_to_bit(bitmap->offset, ctl->unit, info->offset) - 1;
2058 j = 0;
2059 prev_j = (unsigned long)-1;
2060 for_each_clear_bit_from(j, bitmap->bitmap, BITS_PER_BITMAP) {
2061 if (j > i)
2062 break;
2063 prev_j = j;
2064 }
2065 if (prev_j == i)
2066 return false;
2067
2068 if (prev_j == (unsigned long)-1)
2069 bytes = (i + 1) * ctl->unit;
2070 else
2071 bytes = (i - prev_j) * ctl->unit;
2072
2073 info->offset -= bytes;
2074 info->bytes += bytes;
2075
2076 if (update_stat)
2077 bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2078 else
2079 __bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2080
2081 if (!bitmap->bytes)
2082 free_bitmap(ctl, bitmap);
2083
2084 return true;
2085}
2086
2087/*
2088 * We prefer always to allocate from extent entries, both for clustered and
2089 * non-clustered allocation requests. So when attempting to add a new extent
2090 * entry, try to see if there's adjacent free space in bitmap entries, and if
2091 * there is, migrate that space from the bitmaps to the extent.
2092 * Like this we get better chances of satisfying space allocation requests
2093 * because we attempt to satisfy them based on a single cache entry, and never
2094 * on 2 or more entries - even if the entries represent a contiguous free space
2095 * region (e.g. 1 extent entry + 1 bitmap entry starting where the extent entry
2096 * ends).
2097 */
2098static void steal_from_bitmap(struct btrfs_free_space_ctl *ctl,
2099 struct btrfs_free_space *info,
2100 bool update_stat)
2101{
2102 /*
2103 * Only work with disconnected entries, as we can change their offset,
2104 * and must be extent entries.
2105 */
2106 ASSERT(!info->bitmap);
2107 ASSERT(RB_EMPTY_NODE(&info->offset_index));
2108
2109 if (ctl->total_bitmaps > 0) {
2110 bool stole_end;
2111 bool stole_front = false;
2112
2113 stole_end = steal_from_bitmap_to_end(ctl, info, update_stat);
2114 if (ctl->total_bitmaps > 0)
2115 stole_front = steal_from_bitmap_to_front(ctl, info,
2116 update_stat);
2117
2118 if (stole_end || stole_front)
2119 try_merge_free_space(ctl, info, update_stat);
2120 }
2121}
2122
Li Zefan581bb052011-04-20 10:06:11 +08002123int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
2124 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08002125{
2126 struct btrfs_free_space *info;
2127 int ret = 0;
2128
Josef Bacikdc89e982011-01-28 17:05:48 -05002129 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08002130 if (!info)
2131 return -ENOMEM;
2132
2133 info->offset = offset;
2134 info->bytes = bytes;
Filipe Manana20005522014-08-29 13:35:13 +01002135 RB_CLEAR_NODE(&info->offset_index);
Li Zefan120d66e2010-11-09 14:56:50 +08002136
Li Zefan34d52cb2011-03-29 13:46:06 +08002137 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08002138
Li Zefan34d52cb2011-03-29 13:46:06 +08002139 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08002140 goto link;
2141
2142 /*
2143 * There was no extent directly to the left or right of this new
2144 * extent then we know we're going to have to allocate a new extent, so
2145 * before we do that see if we need to drop this into a bitmap
2146 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002147 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08002148 if (ret < 0) {
2149 goto out;
2150 } else if (ret) {
2151 ret = 0;
2152 goto out;
2153 }
2154link:
Filipe Manana20005522014-08-29 13:35:13 +01002155 /*
2156 * Only steal free space from adjacent bitmaps if we're sure we're not
2157 * going to add the new free space to existing bitmap entries - because
2158 * that would mean unnecessary work that would be reverted. Therefore
2159 * attempt to steal space from bitmaps if we're adding an extent entry.
2160 */
2161 steal_from_bitmap(ctl, info, true);
2162
Li Zefan34d52cb2011-03-29 13:46:06 +08002163 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002164 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05002165 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002166out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002167 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002168
Josef Bacik0f9dd462008-09-23 13:14:11 -04002169 if (ret) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002170 printk(KERN_CRIT "BTRFS: unable to add free space :%d\n", ret);
Josef Bacikb12d6862013-08-26 17:14:08 -04002171 ASSERT(ret != -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002172 }
2173
Josef Bacik0f9dd462008-09-23 13:14:11 -04002174 return ret;
2175}
2176
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002177int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
2178 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002179{
Li Zefan34d52cb2011-03-29 13:46:06 +08002180 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002181 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05002182 int ret;
2183 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002184
Li Zefan34d52cb2011-03-29 13:46:06 +08002185 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002186
Josef Bacik96303082009-07-13 21:29:25 -04002187again:
Josef Bacikb0175112012-12-18 11:39:19 -05002188 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002189 if (!bytes)
2190 goto out_lock;
2191
Li Zefan34d52cb2011-03-29 13:46:06 +08002192 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002193 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04002194 /*
2195 * oops didn't find an extent that matched the space we wanted
2196 * to remove, look for a bitmap instead
2197 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002198 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04002199 1, 0);
2200 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05002201 /*
2202 * If we found a partial bit of our free space in a
2203 * bitmap but then couldn't find the other part this may
2204 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05002205 */
Josef Bacikb0175112012-12-18 11:39:19 -05002206 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04002207 goto out_lock;
2208 }
Josef Bacik96303082009-07-13 21:29:25 -04002209 }
2210
Josef Bacikb0175112012-12-18 11:39:19 -05002211 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002212 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002213 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04002214 if (offset == info->offset) {
2215 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002216
Josef Bacikbdb7d302012-06-27 15:10:56 -04002217 info->bytes -= to_free;
2218 info->offset += to_free;
2219 if (info->bytes) {
2220 ret = link_free_space(ctl, info);
2221 WARN_ON(ret);
2222 } else {
2223 kmem_cache_free(btrfs_free_space_cachep, info);
2224 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002225
Josef Bacikbdb7d302012-06-27 15:10:56 -04002226 offset += to_free;
2227 bytes -= to_free;
2228 goto again;
2229 } else {
2230 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04002231
Josef Bacikbdb7d302012-06-27 15:10:56 -04002232 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002233 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04002234 WARN_ON(ret);
2235 if (ret)
2236 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04002237
Josef Bacikbdb7d302012-06-27 15:10:56 -04002238 /* Not enough bytes in this entry to satisfy us */
2239 if (old_end < offset + bytes) {
2240 bytes -= old_end - offset;
2241 offset = old_end;
2242 goto again;
2243 } else if (old_end == offset + bytes) {
2244 /* all done */
2245 goto out_lock;
2246 }
2247 spin_unlock(&ctl->tree_lock);
2248
2249 ret = btrfs_add_free_space(block_group, offset + bytes,
2250 old_end - (offset + bytes));
2251 WARN_ON(ret);
2252 goto out;
2253 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002254 }
Josef Bacik96303082009-07-13 21:29:25 -04002255
Li Zefan34d52cb2011-03-29 13:46:06 +08002256 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05002257 if (ret == -EAGAIN) {
2258 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04002259 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05002260 }
Josef Bacik96303082009-07-13 21:29:25 -04002261out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08002262 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002263out:
Josef Bacik25179202008-10-29 14:49:05 -04002264 return ret;
2265}
2266
Josef Bacik0f9dd462008-09-23 13:14:11 -04002267void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
2268 u64 bytes)
2269{
Li Zefan34d52cb2011-03-29 13:46:06 +08002270 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002271 struct btrfs_free_space *info;
2272 struct rb_node *n;
2273 int count = 0;
2274
Li Zefan34d52cb2011-03-29 13:46:06 +08002275 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04002276 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06002277 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002278 count++;
Frank Holtonefe120a2013-12-20 11:37:06 -05002279 btrfs_crit(block_group->fs_info,
2280 "entry offset %llu, bytes %llu, bitmap %s",
2281 info->offset, info->bytes,
Josef Bacik96303082009-07-13 21:29:25 -04002282 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002283 }
Frank Holtonefe120a2013-12-20 11:37:06 -05002284 btrfs_info(block_group->fs_info, "block group has cluster?: %s",
Josef Bacik96303082009-07-13 21:29:25 -04002285 list_empty(&block_group->cluster_list) ? "no" : "yes");
Frank Holtonefe120a2013-12-20 11:37:06 -05002286 btrfs_info(block_group->fs_info,
2287 "%d blocks of free space at or bigger than bytes is", count);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002288}
2289
Li Zefan34d52cb2011-03-29 13:46:06 +08002290void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002291{
Li Zefan34d52cb2011-03-29 13:46:06 +08002292 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002293
Li Zefan34d52cb2011-03-29 13:46:06 +08002294 spin_lock_init(&ctl->tree_lock);
2295 ctl->unit = block_group->sectorsize;
2296 ctl->start = block_group->key.objectid;
2297 ctl->private = block_group;
2298 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002299
Li Zefan34d52cb2011-03-29 13:46:06 +08002300 /*
2301 * we only want to have 32k of ram per block group for keeping
2302 * track of free space, and if we pass 1/2 of that we want to
2303 * start converting things over to using bitmaps
2304 */
2305 ctl->extents_thresh = ((1024 * 32) / 2) /
2306 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002307}
2308
Chris Masonfa9c0d792009-04-03 09:47:43 -04002309/*
2310 * for a given cluster, put all of its extents back into the free
2311 * space cache. If the block group passed doesn't match the block group
2312 * pointed to by the cluster, someone else raced in and freed the
2313 * cluster already. In that case, we just return without changing anything
2314 */
2315static int
2316__btrfs_return_cluster_to_free_space(
2317 struct btrfs_block_group_cache *block_group,
2318 struct btrfs_free_cluster *cluster)
2319{
Li Zefan34d52cb2011-03-29 13:46:06 +08002320 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002321 struct btrfs_free_space *entry;
2322 struct rb_node *node;
2323
2324 spin_lock(&cluster->lock);
2325 if (cluster->block_group != block_group)
2326 goto out;
2327
Josef Bacik96303082009-07-13 21:29:25 -04002328 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002329 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002330 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002331
Chris Masonfa9c0d792009-04-03 09:47:43 -04002332 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002333 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002334 bool bitmap;
2335
Chris Masonfa9c0d792009-04-03 09:47:43 -04002336 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2337 node = rb_next(&entry->offset_index);
2338 rb_erase(&entry->offset_index, &cluster->root);
Filipe Manana20005522014-08-29 13:35:13 +01002339 RB_CLEAR_NODE(&entry->offset_index);
Josef Bacik4e69b592011-03-21 10:11:24 -04002340
2341 bitmap = (entry->bitmap != NULL);
Filipe Manana20005522014-08-29 13:35:13 +01002342 if (!bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002343 try_merge_free_space(ctl, entry, false);
Filipe Manana20005522014-08-29 13:35:13 +01002344 steal_from_bitmap(ctl, entry, false);
2345 }
Li Zefan34d52cb2011-03-29 13:46:06 +08002346 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002347 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002348 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002349 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002350
Chris Masonfa9c0d792009-04-03 09:47:43 -04002351out:
2352 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002353 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002354 return 0;
2355}
2356
Eric Sandeen48a3b632013-04-25 20:41:01 +00002357static void __btrfs_remove_free_space_cache_locked(
2358 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002359{
2360 struct btrfs_free_space *info;
2361 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002362
Li Zefan581bb052011-04-20 10:06:11 +08002363 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2364 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002365 if (!info->bitmap) {
2366 unlink_free_space(ctl, info);
2367 kmem_cache_free(btrfs_free_space_cachep, info);
2368 } else {
2369 free_bitmap(ctl, info);
2370 }
Li Zefan581bb052011-04-20 10:06:11 +08002371 if (need_resched()) {
2372 spin_unlock(&ctl->tree_lock);
2373 cond_resched();
2374 spin_lock(&ctl->tree_lock);
2375 }
2376 }
Chris Mason09655372011-05-21 09:27:38 -04002377}
2378
2379void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2380{
2381 spin_lock(&ctl->tree_lock);
2382 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002383 spin_unlock(&ctl->tree_lock);
2384}
2385
Josef Bacik0f9dd462008-09-23 13:14:11 -04002386void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2387{
Li Zefan34d52cb2011-03-29 13:46:06 +08002388 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002389 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002390 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002391
Li Zefan34d52cb2011-03-29 13:46:06 +08002392 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002393 while ((head = block_group->cluster_list.next) !=
2394 &block_group->cluster_list) {
2395 cluster = list_entry(head, struct btrfs_free_cluster,
2396 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002397
2398 WARN_ON(cluster->block_group != block_group);
2399 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04002400 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002401 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002402 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08002403 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002404 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002405 }
Chris Mason09655372011-05-21 09:27:38 -04002406 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002407 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002408
Josef Bacik0f9dd462008-09-23 13:14:11 -04002409}
2410
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002411u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
Miao Xiea4820392013-09-09 13:19:42 +08002412 u64 offset, u64 bytes, u64 empty_size,
2413 u64 *max_extent_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002414{
Li Zefan34d52cb2011-03-29 13:46:06 +08002415 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002416 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002417 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002418 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002419 u64 align_gap = 0;
2420 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002421
Li Zefan34d52cb2011-03-29 13:46:06 +08002422 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002423 entry = find_free_space(ctl, &offset, &bytes_search,
Miao Xiea4820392013-09-09 13:19:42 +08002424 block_group->full_stripe_len, max_extent_size);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002425 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002426 goto out;
2427
2428 ret = offset;
2429 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002430 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002431 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002432 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002433 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002434 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002435 align_gap_len = offset - entry->offset;
2436 align_gap = entry->offset;
2437
2438 entry->offset = offset + bytes;
2439 WARN_ON(entry->bytes < bytes + align_gap_len);
2440
2441 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002442 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002443 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002444 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002445 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002446 }
Josef Bacik96303082009-07-13 21:29:25 -04002447out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002448 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002449
David Woodhouse53b381b2013-01-29 18:40:14 -05002450 if (align_gap_len)
2451 __btrfs_add_free_space(ctl, align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002452 return ret;
2453}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002454
2455/*
2456 * given a cluster, put all of its extents back into the free space
2457 * cache. If a block group is passed, this function will only free
2458 * a cluster that belongs to the passed block group.
2459 *
2460 * Otherwise, it'll get a reference on the block group pointed to by the
2461 * cluster and remove the cluster from it.
2462 */
2463int btrfs_return_cluster_to_free_space(
2464 struct btrfs_block_group_cache *block_group,
2465 struct btrfs_free_cluster *cluster)
2466{
Li Zefan34d52cb2011-03-29 13:46:06 +08002467 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002468 int ret;
2469
2470 /* first, get a safe pointer to the block group */
2471 spin_lock(&cluster->lock);
2472 if (!block_group) {
2473 block_group = cluster->block_group;
2474 if (!block_group) {
2475 spin_unlock(&cluster->lock);
2476 return 0;
2477 }
2478 } else if (cluster->block_group != block_group) {
2479 /* someone else has already freed it don't redo their work */
2480 spin_unlock(&cluster->lock);
2481 return 0;
2482 }
2483 atomic_inc(&block_group->count);
2484 spin_unlock(&cluster->lock);
2485
Li Zefan34d52cb2011-03-29 13:46:06 +08002486 ctl = block_group->free_space_ctl;
2487
Chris Masonfa9c0d792009-04-03 09:47:43 -04002488 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002489 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002490 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002491 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002492
2493 /* finally drop our ref */
2494 btrfs_put_block_group(block_group);
2495 return ret;
2496}
2497
Josef Bacik96303082009-07-13 21:29:25 -04002498static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2499 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002500 struct btrfs_free_space *entry,
Miao Xiea4820392013-09-09 13:19:42 +08002501 u64 bytes, u64 min_start,
2502 u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04002503{
Li Zefan34d52cb2011-03-29 13:46:06 +08002504 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002505 int err;
2506 u64 search_start = cluster->window_start;
2507 u64 search_bytes = bytes;
2508 u64 ret = 0;
2509
Josef Bacik96303082009-07-13 21:29:25 -04002510 search_start = min_start;
2511 search_bytes = bytes;
2512
Li Zefan34d52cb2011-03-29 13:46:06 +08002513 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Miao Xiea4820392013-09-09 13:19:42 +08002514 if (err) {
2515 if (search_bytes > *max_extent_size)
2516 *max_extent_size = search_bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002517 return 0;
Miao Xiea4820392013-09-09 13:19:42 +08002518 }
Josef Bacik96303082009-07-13 21:29:25 -04002519
2520 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002521 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002522
2523 return ret;
2524}
2525
Chris Masonfa9c0d792009-04-03 09:47:43 -04002526/*
2527 * given a cluster, try to allocate 'bytes' from it, returns 0
2528 * if it couldn't find anything suitably large, or a logical disk offset
2529 * if things worked out
2530 */
2531u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2532 struct btrfs_free_cluster *cluster, u64 bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002533 u64 min_start, u64 *max_extent_size)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002534{
Li Zefan34d52cb2011-03-29 13:46:06 +08002535 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002536 struct btrfs_free_space *entry = NULL;
2537 struct rb_node *node;
2538 u64 ret = 0;
2539
2540 spin_lock(&cluster->lock);
2541 if (bytes > cluster->max_size)
2542 goto out;
2543
2544 if (cluster->block_group != block_group)
2545 goto out;
2546
2547 node = rb_first(&cluster->root);
2548 if (!node)
2549 goto out;
2550
2551 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302552 while (1) {
Miao Xiea4820392013-09-09 13:19:42 +08002553 if (entry->bytes < bytes && entry->bytes > *max_extent_size)
2554 *max_extent_size = entry->bytes;
2555
Josef Bacik4e69b592011-03-21 10:11:24 -04002556 if (entry->bytes < bytes ||
2557 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002558 node = rb_next(&entry->offset_index);
2559 if (!node)
2560 break;
2561 entry = rb_entry(node, struct btrfs_free_space,
2562 offset_index);
2563 continue;
2564 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002565
Josef Bacik4e69b592011-03-21 10:11:24 -04002566 if (entry->bitmap) {
2567 ret = btrfs_alloc_from_bitmap(block_group,
2568 cluster, entry, bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002569 cluster->window_start,
2570 max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002571 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002572 node = rb_next(&entry->offset_index);
2573 if (!node)
2574 break;
2575 entry = rb_entry(node, struct btrfs_free_space,
2576 offset_index);
2577 continue;
2578 }
Josef Bacik9b230622012-01-26 15:01:12 -05002579 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002580 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002581 ret = entry->offset;
2582
2583 entry->offset += bytes;
2584 entry->bytes -= bytes;
2585 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002586
Li Zefan5e71b5d2010-11-09 14:55:34 +08002587 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002588 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002589 break;
2590 }
2591out:
2592 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002593
Li Zefan5e71b5d2010-11-09 14:55:34 +08002594 if (!ret)
2595 return 0;
2596
Li Zefan34d52cb2011-03-29 13:46:06 +08002597 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002598
Li Zefan34d52cb2011-03-29 13:46:06 +08002599 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002600 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002601 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002602 if (entry->bitmap) {
2603 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002604 ctl->total_bitmaps--;
2605 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002606 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002607 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002608 }
2609
Li Zefan34d52cb2011-03-29 13:46:06 +08002610 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002611
Chris Masonfa9c0d792009-04-03 09:47:43 -04002612 return ret;
2613}
2614
Josef Bacik96303082009-07-13 21:29:25 -04002615static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2616 struct btrfs_free_space *entry,
2617 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002618 u64 offset, u64 bytes,
2619 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002620{
Li Zefan34d52cb2011-03-29 13:46:06 +08002621 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002622 unsigned long next_zero;
2623 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002624 unsigned long want_bits;
2625 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002626 unsigned long found_bits;
2627 unsigned long start = 0;
2628 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002629 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002630
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002631 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002632 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002633 want_bits = bytes_to_bits(bytes, ctl->unit);
2634 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002635
2636again:
2637 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002638 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002639 next_zero = find_next_zero_bit(entry->bitmap,
2640 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002641 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002642 found_bits = next_zero - i;
2643 break;
2644 }
2645 i = next_zero;
2646 }
2647
2648 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002649 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002650
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002651 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002652 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002653 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002654 }
2655
2656 total_found += found_bits;
2657
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002658 if (cluster->max_size < found_bits * ctl->unit)
2659 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002660
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002661 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2662 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002663 goto again;
2664 }
2665
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002666 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002667 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002668 ret = tree_insert_offset(&cluster->root, entry->offset,
2669 &entry->offset_index, 1);
Josef Bacikb12d6862013-08-26 17:14:08 -04002670 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002671
Josef Bacik3f7de032011-11-10 08:29:20 -05002672 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002673 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002674 return 0;
2675}
2676
Chris Masonfa9c0d792009-04-03 09:47:43 -04002677/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002678 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002679 * Try to find a cluster with at least bytes total bytes, at least one
2680 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002681 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002682static noinline int
2683setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2684 struct btrfs_free_cluster *cluster,
2685 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002686 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002687{
Li Zefan34d52cb2011-03-29 13:46:06 +08002688 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002689 struct btrfs_free_space *first = NULL;
2690 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002691 struct btrfs_free_space *last;
2692 struct rb_node *node;
Josef Bacik4e69b592011-03-21 10:11:24 -04002693 u64 window_free;
2694 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002695 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002696
Li Zefan34d52cb2011-03-29 13:46:06 +08002697 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002698 if (!entry)
2699 return -ENOSPC;
2700
2701 /*
2702 * We don't want bitmaps, so just move along until we find a normal
2703 * extent entry.
2704 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002705 while (entry->bitmap || entry->bytes < min_bytes) {
2706 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002707 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002708 node = rb_next(&entry->offset_index);
2709 if (!node)
2710 return -ENOSPC;
2711 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2712 }
2713
Josef Bacik4e69b592011-03-21 10:11:24 -04002714 window_free = entry->bytes;
2715 max_extent = entry->bytes;
2716 first = entry;
2717 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002718
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002719 for (node = rb_next(&entry->offset_index); node;
2720 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002721 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2722
Josef Bacik86d4a772011-05-25 13:03:16 -04002723 if (entry->bitmap) {
2724 if (list_empty(&entry->list))
2725 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002726 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002727 }
2728
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002729 if (entry->bytes < min_bytes)
2730 continue;
2731
2732 last = entry;
2733 window_free += entry->bytes;
2734 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002735 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002736 }
2737
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002738 if (window_free < bytes || max_extent < cont1_bytes)
2739 return -ENOSPC;
2740
Josef Bacik4e69b592011-03-21 10:11:24 -04002741 cluster->window_start = first->offset;
2742
2743 node = &first->offset_index;
2744
2745 /*
2746 * now we've found our entries, pull them out of the free space
2747 * cache and put them into the cluster rbtree
2748 */
2749 do {
2750 int ret;
2751
2752 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2753 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002754 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002755 continue;
2756
Li Zefan34d52cb2011-03-29 13:46:06 +08002757 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002758 ret = tree_insert_offset(&cluster->root, entry->offset,
2759 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002760 total_size += entry->bytes;
Josef Bacikb12d6862013-08-26 17:14:08 -04002761 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002762 } while (node && entry != last);
2763
2764 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002765 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002766 return 0;
2767}
2768
2769/*
2770 * This specifically looks for bitmaps that may work in the cluster, we assume
2771 * that we have already failed to find extents that will work.
2772 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002773static noinline int
2774setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2775 struct btrfs_free_cluster *cluster,
2776 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002777 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002778{
Li Zefan34d52cb2011-03-29 13:46:06 +08002779 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002780 struct btrfs_free_space *entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002781 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002782 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002783
Li Zefan34d52cb2011-03-29 13:46:06 +08002784 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002785 return -ENOSPC;
2786
Josef Bacik86d4a772011-05-25 13:03:16 -04002787 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05002788 * The bitmap that covers offset won't be in the list unless offset
2789 * is just its start offset.
2790 */
2791 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
2792 if (entry->offset != bitmap_offset) {
2793 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
2794 if (entry && list_empty(&entry->list))
2795 list_add(&entry->list, bitmaps);
2796 }
2797
Josef Bacik86d4a772011-05-25 13:03:16 -04002798 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05002799 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04002800 continue;
2801 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002802 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002803 if (!ret)
2804 return 0;
2805 }
2806
2807 /*
Li Zefan52621cb2011-11-20 07:33:38 -05002808 * The bitmaps list has all the bitmaps that record free space
2809 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04002810 */
Li Zefan52621cb2011-11-20 07:33:38 -05002811 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04002812}
2813
2814/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002815 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002816 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04002817 * We might not find them all in one contiguous area.
2818 *
2819 * returns zero and sets up cluster if things worked out, otherwise
2820 * it returns -enospc
2821 */
Josef Bacik00361582013-08-14 14:02:47 -04002822int btrfs_find_space_cluster(struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002823 struct btrfs_block_group_cache *block_group,
2824 struct btrfs_free_cluster *cluster,
2825 u64 offset, u64 bytes, u64 empty_size)
2826{
Li Zefan34d52cb2011-03-29 13:46:06 +08002827 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002828 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05002829 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002830 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002831 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002832 int ret;
2833
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002834 /*
2835 * Choose the minimum extent size we'll require for this
2836 * cluster. For SSD_SPREAD, don't allow any fragmentation.
2837 * For metadata, allow allocates with smaller extents. For
2838 * data, keep it dense.
2839 */
Chris Mason451d7582009-06-09 20:28:34 -04002840 if (btrfs_test_opt(root, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002841 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04002842 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002843 cont1_bytes = bytes;
2844 min_bytes = block_group->sectorsize;
2845 } else {
2846 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
2847 min_bytes = block_group->sectorsize;
2848 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002849
Li Zefan34d52cb2011-03-29 13:46:06 +08002850 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002851
2852 /*
2853 * If we know we don't have enough space to make a cluster don't even
2854 * bother doing all the work to try and find one.
2855 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002856 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002857 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002858 return -ENOSPC;
2859 }
2860
Chris Masonfa9c0d792009-04-03 09:47:43 -04002861 spin_lock(&cluster->lock);
2862
2863 /* someone already found a cluster, hooray */
2864 if (cluster->block_group) {
2865 ret = 0;
2866 goto out;
2867 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002868
Josef Bacik3f7de032011-11-10 08:29:20 -05002869 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
2870 min_bytes);
2871
2872 INIT_LIST_HEAD(&bitmaps);
Josef Bacik86d4a772011-05-25 13:03:16 -04002873 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002874 bytes + empty_size,
2875 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002876 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002877 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002878 offset, bytes + empty_size,
2879 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002880
2881 /* Clear our temporary list */
2882 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2883 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002884
2885 if (!ret) {
2886 atomic_inc(&block_group->count);
2887 list_add_tail(&cluster->block_group_list,
2888 &block_group->cluster_list);
2889 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05002890 } else {
2891 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002892 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002893out:
2894 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002895 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002896
2897 return ret;
2898}
2899
2900/*
2901 * simple code to zero out a cluster
2902 */
2903void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2904{
2905 spin_lock_init(&cluster->lock);
2906 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002907 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002908 cluster->max_size = 0;
2909 INIT_LIST_HEAD(&cluster->block_group_list);
2910 cluster->block_group = NULL;
2911}
2912
Li Zefan7fe1e642011-12-29 14:47:27 +08002913static int do_trimming(struct btrfs_block_group_cache *block_group,
2914 u64 *total_trimmed, u64 start, u64 bytes,
2915 u64 reserved_start, u64 reserved_bytes)
2916{
2917 struct btrfs_space_info *space_info = block_group->space_info;
2918 struct btrfs_fs_info *fs_info = block_group->fs_info;
2919 int ret;
2920 int update = 0;
2921 u64 trimmed = 0;
2922
2923 spin_lock(&space_info->lock);
2924 spin_lock(&block_group->lock);
2925 if (!block_group->ro) {
2926 block_group->reserved += reserved_bytes;
2927 space_info->bytes_reserved += reserved_bytes;
2928 update = 1;
2929 }
2930 spin_unlock(&block_group->lock);
2931 spin_unlock(&space_info->lock);
2932
2933 ret = btrfs_error_discard_extent(fs_info->extent_root,
2934 start, bytes, &trimmed);
2935 if (!ret)
2936 *total_trimmed += trimmed;
2937
2938 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
2939
2940 if (update) {
2941 spin_lock(&space_info->lock);
2942 spin_lock(&block_group->lock);
2943 if (block_group->ro)
2944 space_info->bytes_readonly += reserved_bytes;
2945 block_group->reserved -= reserved_bytes;
2946 space_info->bytes_reserved -= reserved_bytes;
2947 spin_unlock(&space_info->lock);
2948 spin_unlock(&block_group->lock);
2949 }
2950
2951 return ret;
2952}
2953
2954static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
2955 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00002956{
Li Zefan34d52cb2011-03-29 13:46:06 +08002957 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08002958 struct btrfs_free_space *entry;
2959 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00002960 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08002961 u64 extent_start;
2962 u64 extent_bytes;
2963 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002964
2965 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002966 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002967
Li Zefan34d52cb2011-03-29 13:46:06 +08002968 if (ctl->free_space < minlen) {
2969 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002970 break;
2971 }
2972
Li Zefan34d52cb2011-03-29 13:46:06 +08002973 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08002974 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002975 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002976 break;
2977 }
2978
Li Zefan7fe1e642011-12-29 14:47:27 +08002979 /* skip bitmaps */
2980 while (entry->bitmap) {
2981 node = rb_next(&entry->offset_index);
2982 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002983 spin_unlock(&ctl->tree_lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08002984 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00002985 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002986 entry = rb_entry(node, struct btrfs_free_space,
2987 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00002988 }
2989
Li Zefan7fe1e642011-12-29 14:47:27 +08002990 if (entry->offset >= end) {
2991 spin_unlock(&ctl->tree_lock);
2992 break;
2993 }
2994
2995 extent_start = entry->offset;
2996 extent_bytes = entry->bytes;
2997 start = max(start, extent_start);
2998 bytes = min(extent_start + extent_bytes, end) - start;
2999 if (bytes < minlen) {
3000 spin_unlock(&ctl->tree_lock);
3001 goto next;
3002 }
3003
3004 unlink_free_space(ctl, entry);
3005 kmem_cache_free(btrfs_free_space_cachep, entry);
3006
Li Zefan34d52cb2011-03-29 13:46:06 +08003007 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00003008
Li Zefan7fe1e642011-12-29 14:47:27 +08003009 ret = do_trimming(block_group, total_trimmed, start, bytes,
3010 extent_start, extent_bytes);
3011 if (ret)
3012 break;
3013next:
Li Dongyangf7039b12011-03-24 10:24:28 +00003014 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003015
3016 if (fatal_signal_pending(current)) {
3017 ret = -ERESTARTSYS;
3018 break;
3019 }
3020
3021 cond_resched();
3022 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003023out:
3024 return ret;
3025}
3026
3027static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
3028 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
3029{
3030 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
3031 struct btrfs_free_space *entry;
3032 int ret = 0;
3033 int ret2;
3034 u64 bytes;
3035 u64 offset = offset_to_bitmap(ctl, start);
3036
3037 while (offset < end) {
3038 bool next_bitmap = false;
3039
3040 spin_lock(&ctl->tree_lock);
3041
3042 if (ctl->free_space < minlen) {
3043 spin_unlock(&ctl->tree_lock);
3044 break;
3045 }
3046
3047 entry = tree_search_offset(ctl, offset, 1, 0);
3048 if (!entry) {
3049 spin_unlock(&ctl->tree_lock);
3050 next_bitmap = true;
3051 goto next;
3052 }
3053
3054 bytes = minlen;
3055 ret2 = search_bitmap(ctl, entry, &start, &bytes);
3056 if (ret2 || start >= end) {
3057 spin_unlock(&ctl->tree_lock);
3058 next_bitmap = true;
3059 goto next;
3060 }
3061
3062 bytes = min(bytes, end - start);
3063 if (bytes < minlen) {
3064 spin_unlock(&ctl->tree_lock);
3065 goto next;
3066 }
3067
3068 bitmap_clear_bits(ctl, entry, start, bytes);
3069 if (entry->bytes == 0)
3070 free_bitmap(ctl, entry);
3071
3072 spin_unlock(&ctl->tree_lock);
3073
3074 ret = do_trimming(block_group, total_trimmed, start, bytes,
3075 start, bytes);
3076 if (ret)
3077 break;
3078next:
3079 if (next_bitmap) {
3080 offset += BITS_PER_BITMAP * ctl->unit;
3081 } else {
3082 start += bytes;
3083 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
3084 offset += BITS_PER_BITMAP * ctl->unit;
3085 }
3086
3087 if (fatal_signal_pending(current)) {
3088 ret = -ERESTARTSYS;
3089 break;
3090 }
3091
3092 cond_resched();
3093 }
3094
3095 return ret;
3096}
3097
3098int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
3099 u64 *trimmed, u64 start, u64 end, u64 minlen)
3100{
3101 int ret;
3102
3103 *trimmed = 0;
3104
Filipe Manana04216822014-11-27 21:14:15 +00003105 spin_lock(&block_group->lock);
3106 if (block_group->removed) {
3107 spin_unlock(&block_group->lock);
3108 return 0;
3109 }
3110 atomic_inc(&block_group->trimming);
3111 spin_unlock(&block_group->lock);
3112
Li Zefan7fe1e642011-12-29 14:47:27 +08003113 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
3114 if (ret)
Filipe Manana04216822014-11-27 21:14:15 +00003115 goto out;
Li Zefan7fe1e642011-12-29 14:47:27 +08003116
3117 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
Filipe Manana04216822014-11-27 21:14:15 +00003118out:
3119 spin_lock(&block_group->lock);
3120 if (atomic_dec_and_test(&block_group->trimming) &&
3121 block_group->removed) {
3122 struct extent_map_tree *em_tree;
3123 struct extent_map *em;
3124
3125 spin_unlock(&block_group->lock);
3126
3127 em_tree = &block_group->fs_info->mapping_tree.map_tree;
3128 write_lock(&em_tree->lock);
3129 em = lookup_extent_mapping(em_tree, block_group->key.objectid,
3130 1);
3131 BUG_ON(!em); /* logic error, can't happen */
3132 remove_extent_mapping(em_tree, em);
3133 write_unlock(&em_tree->lock);
3134
3135 lock_chunks(block_group->fs_info->chunk_root);
3136 list_del_init(&em->list);
3137 unlock_chunks(block_group->fs_info->chunk_root);
3138
3139 /* once for us and once for the tree */
3140 free_extent_map(em);
3141 free_extent_map(em);
3142 } else {
3143 spin_unlock(&block_group->lock);
3144 }
Li Dongyangf7039b12011-03-24 10:24:28 +00003145
3146 return ret;
3147}
Li Zefan581bb052011-04-20 10:06:11 +08003148
3149/*
3150 * Find the left-most item in the cache tree, and then return the
3151 * smallest inode number in the item.
3152 *
3153 * Note: the returned inode number may not be the smallest one in
3154 * the tree, if the left-most item is a bitmap.
3155 */
3156u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
3157{
3158 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
3159 struct btrfs_free_space *entry = NULL;
3160 u64 ino = 0;
3161
3162 spin_lock(&ctl->tree_lock);
3163
3164 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
3165 goto out;
3166
3167 entry = rb_entry(rb_first(&ctl->free_space_offset),
3168 struct btrfs_free_space, offset_index);
3169
3170 if (!entry->bitmap) {
3171 ino = entry->offset;
3172
3173 unlink_free_space(ctl, entry);
3174 entry->offset++;
3175 entry->bytes--;
3176 if (!entry->bytes)
3177 kmem_cache_free(btrfs_free_space_cachep, entry);
3178 else
3179 link_free_space(ctl, entry);
3180 } else {
3181 u64 offset = 0;
3182 u64 count = 1;
3183 int ret;
3184
3185 ret = search_bitmap(ctl, entry, &offset, &count);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003186 /* Logic error; Should be empty if it can't find anything */
Josef Bacikb12d6862013-08-26 17:14:08 -04003187 ASSERT(!ret);
Li Zefan581bb052011-04-20 10:06:11 +08003188
3189 ino = offset;
3190 bitmap_clear_bits(ctl, entry, offset, 1);
3191 if (entry->bytes == 0)
3192 free_bitmap(ctl, entry);
3193 }
3194out:
3195 spin_unlock(&ctl->tree_lock);
3196
3197 return ino;
3198}
Li Zefan82d59022011-04-20 10:33:24 +08003199
3200struct inode *lookup_free_ino_inode(struct btrfs_root *root,
3201 struct btrfs_path *path)
3202{
3203 struct inode *inode = NULL;
3204
David Sterba57cdc8d2014-02-05 02:37:48 +01003205 spin_lock(&root->ino_cache_lock);
3206 if (root->ino_cache_inode)
3207 inode = igrab(root->ino_cache_inode);
3208 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003209 if (inode)
3210 return inode;
3211
3212 inode = __lookup_free_space_inode(root, path, 0);
3213 if (IS_ERR(inode))
3214 return inode;
3215
David Sterba57cdc8d2014-02-05 02:37:48 +01003216 spin_lock(&root->ino_cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02003217 if (!btrfs_fs_closing(root->fs_info))
David Sterba57cdc8d2014-02-05 02:37:48 +01003218 root->ino_cache_inode = igrab(inode);
3219 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003220
3221 return inode;
3222}
3223
3224int create_free_ino_inode(struct btrfs_root *root,
3225 struct btrfs_trans_handle *trans,
3226 struct btrfs_path *path)
3227{
3228 return __create_free_space_inode(root, trans, path,
3229 BTRFS_FREE_INO_OBJECTID, 0);
3230}
3231
3232int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
3233{
3234 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
3235 struct btrfs_path *path;
3236 struct inode *inode;
3237 int ret = 0;
3238 u64 root_gen = btrfs_root_generation(&root->root_item);
3239
Chris Mason4b9465c2011-06-03 09:36:29 -04003240 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
3241 return 0;
3242
Li Zefan82d59022011-04-20 10:33:24 +08003243 /*
3244 * If we're unmounting then just return, since this does a search on the
3245 * normal root and not the commit root and we could deadlock.
3246 */
David Sterba7841cb22011-05-31 18:07:27 +02003247 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08003248 return 0;
3249
3250 path = btrfs_alloc_path();
3251 if (!path)
3252 return 0;
3253
3254 inode = lookup_free_ino_inode(root, path);
3255 if (IS_ERR(inode))
3256 goto out;
3257
3258 if (root_gen != BTRFS_I(inode)->generation)
3259 goto out_put;
3260
3261 ret = __load_free_space_cache(root, inode, ctl, path, 0);
3262
3263 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003264 btrfs_err(fs_info,
3265 "failed to load free ino cache for root %llu",
3266 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08003267out_put:
3268 iput(inode);
3269out:
3270 btrfs_free_path(path);
3271 return ret;
3272}
3273
3274int btrfs_write_out_ino_cache(struct btrfs_root *root,
3275 struct btrfs_trans_handle *trans,
Filipe David Borba Manana53645a92013-09-20 14:43:28 +01003276 struct btrfs_path *path,
3277 struct inode *inode)
Li Zefan82d59022011-04-20 10:33:24 +08003278{
3279 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
Li Zefan82d59022011-04-20 10:33:24 +08003280 int ret;
3281
Chris Mason4b9465c2011-06-03 09:36:29 -04003282 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
3283 return 0;
3284
Li Zefan82d59022011-04-20 10:33:24 +08003285 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
Josef Bacikc09544e2011-08-30 10:19:10 -04003286 if (ret) {
3287 btrfs_delalloc_release_metadata(inode, inode->i_size);
3288#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003289 btrfs_err(root->fs_info,
3290 "failed to write free ino cache for root %llu",
3291 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04003292#endif
3293 }
Li Zefan82d59022011-04-20 10:33:24 +08003294
Li Zefan82d59022011-04-20 10:33:24 +08003295 return ret;
3296}
Josef Bacik74255aa2013-03-15 09:47:08 -04003297
3298#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003299/*
3300 * Use this if you need to make a bitmap or extent entry specifically, it
3301 * doesn't do any of the merging that add_free_space does, this acts a lot like
3302 * how the free space cache loading stuff works, so you can get really weird
3303 * configurations.
3304 */
3305int test_add_free_space_entry(struct btrfs_block_group_cache *cache,
3306 u64 offset, u64 bytes, bool bitmap)
Josef Bacik74255aa2013-03-15 09:47:08 -04003307{
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003308 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3309 struct btrfs_free_space *info = NULL, *bitmap_info;
3310 void *map = NULL;
3311 u64 bytes_added;
3312 int ret;
Josef Bacik74255aa2013-03-15 09:47:08 -04003313
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003314again:
3315 if (!info) {
3316 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3317 if (!info)
3318 return -ENOMEM;
Josef Bacik74255aa2013-03-15 09:47:08 -04003319 }
3320
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003321 if (!bitmap) {
3322 spin_lock(&ctl->tree_lock);
3323 info->offset = offset;
3324 info->bytes = bytes;
3325 ret = link_free_space(ctl, info);
3326 spin_unlock(&ctl->tree_lock);
3327 if (ret)
3328 kmem_cache_free(btrfs_free_space_cachep, info);
3329 return ret;
3330 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003331
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003332 if (!map) {
3333 map = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
3334 if (!map) {
3335 kmem_cache_free(btrfs_free_space_cachep, info);
3336 return -ENOMEM;
3337 }
3338 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003339
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003340 spin_lock(&ctl->tree_lock);
3341 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3342 1, 0);
3343 if (!bitmap_info) {
3344 info->bitmap = map;
3345 map = NULL;
3346 add_new_bitmap(ctl, info, offset);
3347 bitmap_info = info;
Filipe Manana20005522014-08-29 13:35:13 +01003348 info = NULL;
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003349 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003350
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003351 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
3352 bytes -= bytes_added;
3353 offset += bytes_added;
3354 spin_unlock(&ctl->tree_lock);
3355
3356 if (bytes)
3357 goto again;
3358
Filipe Manana20005522014-08-29 13:35:13 +01003359 if (info)
3360 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003361 if (map)
3362 kfree(map);
3363 return 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003364}
3365
3366/*
3367 * Checks to see if the given range is in the free space cache. This is really
3368 * just used to check the absence of space, so if there is free space in the
3369 * range at all we will return 1.
3370 */
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003371int test_check_exists(struct btrfs_block_group_cache *cache,
3372 u64 offset, u64 bytes)
Josef Bacik74255aa2013-03-15 09:47:08 -04003373{
3374 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3375 struct btrfs_free_space *info;
3376 int ret = 0;
3377
3378 spin_lock(&ctl->tree_lock);
3379 info = tree_search_offset(ctl, offset, 0, 0);
3380 if (!info) {
3381 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3382 1, 0);
3383 if (!info)
3384 goto out;
3385 }
3386
3387have_info:
3388 if (info->bitmap) {
3389 u64 bit_off, bit_bytes;
3390 struct rb_node *n;
3391 struct btrfs_free_space *tmp;
3392
3393 bit_off = offset;
3394 bit_bytes = ctl->unit;
3395 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes);
3396 if (!ret) {
3397 if (bit_off == offset) {
3398 ret = 1;
3399 goto out;
3400 } else if (bit_off > offset &&
3401 offset + bytes > bit_off) {
3402 ret = 1;
3403 goto out;
3404 }
3405 }
3406
3407 n = rb_prev(&info->offset_index);
3408 while (n) {
3409 tmp = rb_entry(n, struct btrfs_free_space,
3410 offset_index);
3411 if (tmp->offset + tmp->bytes < offset)
3412 break;
3413 if (offset + bytes < tmp->offset) {
3414 n = rb_prev(&info->offset_index);
3415 continue;
3416 }
3417 info = tmp;
3418 goto have_info;
3419 }
3420
3421 n = rb_next(&info->offset_index);
3422 while (n) {
3423 tmp = rb_entry(n, struct btrfs_free_space,
3424 offset_index);
3425 if (offset + bytes < tmp->offset)
3426 break;
3427 if (tmp->offset + tmp->bytes < offset) {
3428 n = rb_next(&info->offset_index);
3429 continue;
3430 }
3431 info = tmp;
3432 goto have_info;
3433 }
3434
Filipe Manana20005522014-08-29 13:35:13 +01003435 ret = 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003436 goto out;
3437 }
3438
3439 if (info->offset == offset) {
3440 ret = 1;
3441 goto out;
3442 }
3443
3444 if (offset > info->offset && offset < info->offset + info->bytes)
3445 ret = 1;
3446out:
3447 spin_unlock(&ctl->tree_lock);
3448 return ret;
3449}
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003450#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */