blob: ecca6c7375a610dbee385a71781cece9082935e0 [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"
Chris Masonfa9c0d792009-04-03 09:47:43 -040030
Josef Bacik96303082009-07-13 21:29:25 -040031#define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8)
32#define MAX_CACHE_BYTES_PER_GIG (32 * 1024)
33
Li Zefan34d52cb2011-03-29 13:46:06 +080034static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040035 struct btrfs_free_space *info);
Josef Bacikcd023e72012-05-14 10:06:40 -040036static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
37 struct btrfs_free_space *info);
Josef Bacik0cb59c92010-07-02 12:14:14 -040038
Li Zefan0414efa2011-04-20 10:20:14 +080039static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
40 struct btrfs_path *path,
41 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040042{
43 struct btrfs_key key;
44 struct btrfs_key location;
45 struct btrfs_disk_key disk_key;
46 struct btrfs_free_space_header *header;
47 struct extent_buffer *leaf;
48 struct inode *inode = NULL;
49 int ret;
50
Josef Bacik0af3d002010-06-21 14:48:16 -040051 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080052 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040053 key.type = 0;
54
55 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
56 if (ret < 0)
57 return ERR_PTR(ret);
58 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020059 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040060 return ERR_PTR(-ENOENT);
61 }
62
63 leaf = path->nodes[0];
64 header = btrfs_item_ptr(leaf, path->slots[0],
65 struct btrfs_free_space_header);
66 btrfs_free_space_key(leaf, header, &disk_key);
67 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020068 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040069
70 inode = btrfs_iget(root->fs_info->sb, &location, root, NULL);
71 if (!inode)
72 return ERR_PTR(-ENOENT);
73 if (IS_ERR(inode))
74 return inode;
75 if (is_bad_inode(inode)) {
76 iput(inode);
77 return ERR_PTR(-ENOENT);
78 }
79
Al Viro528c0322012-04-13 11:03:55 -040080 mapping_set_gfp_mask(inode->i_mapping,
81 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
Miao Xieadae52b2011-03-31 09:43:23 +000082
Li Zefan0414efa2011-04-20 10:20:14 +080083 return inode;
84}
85
86struct inode *lookup_free_space_inode(struct btrfs_root *root,
87 struct btrfs_block_group_cache
88 *block_group, struct btrfs_path *path)
89{
90 struct inode *inode = NULL;
Josef Bacik5b0e95b2011-10-06 08:58:24 -040091 u32 flags = BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
Li Zefan0414efa2011-04-20 10:20:14 +080092
93 spin_lock(&block_group->lock);
94 if (block_group->inode)
95 inode = igrab(block_group->inode);
96 spin_unlock(&block_group->lock);
97 if (inode)
98 return inode;
99
100 inode = __lookup_free_space_inode(root, path,
101 block_group->key.objectid);
102 if (IS_ERR(inode))
103 return inode;
104
Josef Bacik0af3d002010-06-21 14:48:16 -0400105 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400106 if (!((BTRFS_I(inode)->flags & flags) == flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000107 btrfs_info(root->fs_info,
108 "Old style space inode found, converting.");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400109 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
110 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400111 block_group->disk_cache_state = BTRFS_DC_CLEAR;
112 }
113
Josef Bacik300e4f82011-08-29 14:06:00 -0400114 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400115 block_group->inode = igrab(inode);
116 block_group->iref = 1;
117 }
118 spin_unlock(&block_group->lock);
119
120 return inode;
121}
122
Eric Sandeen48a3b632013-04-25 20:41:01 +0000123static int __create_free_space_inode(struct btrfs_root *root,
124 struct btrfs_trans_handle *trans,
125 struct btrfs_path *path,
126 u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400127{
128 struct btrfs_key key;
129 struct btrfs_disk_key disk_key;
130 struct btrfs_free_space_header *header;
131 struct btrfs_inode_item *inode_item;
132 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400133 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400134 int ret;
135
Li Zefan0414efa2011-04-20 10:20:14 +0800136 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400137 if (ret)
138 return ret;
139
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400140 /* We inline crc's for the free disk space cache */
141 if (ino != BTRFS_FREE_INO_OBJECTID)
142 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
143
Josef Bacik0af3d002010-06-21 14:48:16 -0400144 leaf = path->nodes[0];
145 inode_item = btrfs_item_ptr(leaf, path->slots[0],
146 struct btrfs_inode_item);
147 btrfs_item_key(leaf, &disk_key, path->slots[0]);
148 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
149 sizeof(*inode_item));
150 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
151 btrfs_set_inode_size(leaf, inode_item, 0);
152 btrfs_set_inode_nbytes(leaf, inode_item, 0);
153 btrfs_set_inode_uid(leaf, inode_item, 0);
154 btrfs_set_inode_gid(leaf, inode_item, 0);
155 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400156 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400157 btrfs_set_inode_nlink(leaf, inode_item, 1);
158 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800159 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400160 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200161 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400162
163 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800164 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400165 key.type = 0;
166
167 ret = btrfs_insert_empty_item(trans, root, path, &key,
168 sizeof(struct btrfs_free_space_header));
169 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200170 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400171 return ret;
172 }
173 leaf = path->nodes[0];
174 header = btrfs_item_ptr(leaf, path->slots[0],
175 struct btrfs_free_space_header);
176 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
177 btrfs_set_free_space_key(leaf, header, &disk_key);
178 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200179 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400180
181 return 0;
182}
183
Li Zefan0414efa2011-04-20 10:20:14 +0800184int create_free_space_inode(struct btrfs_root *root,
185 struct btrfs_trans_handle *trans,
186 struct btrfs_block_group_cache *block_group,
187 struct btrfs_path *path)
188{
189 int ret;
190 u64 ino;
191
192 ret = btrfs_find_free_objectid(root, &ino);
193 if (ret < 0)
194 return ret;
195
196 return __create_free_space_inode(root, trans, path, ino,
197 block_group->key.objectid);
198}
199
Josef Bacik0af3d002010-06-21 14:48:16 -0400200int btrfs_truncate_free_space_cache(struct btrfs_root *root,
201 struct btrfs_trans_handle *trans,
202 struct btrfs_path *path,
203 struct inode *inode)
204{
Liu Bo65450aa2011-09-11 10:52:24 -0400205 struct btrfs_block_rsv *rsv;
Josef Bacikc8174312011-11-02 09:29:35 -0400206 u64 needed_bytes;
Josef Bacik0af3d002010-06-21 14:48:16 -0400207 loff_t oldsize;
208 int ret = 0;
209
Liu Bo65450aa2011-09-11 10:52:24 -0400210 rsv = trans->block_rsv;
Josef Bacikc8174312011-11-02 09:29:35 -0400211 trans->block_rsv = &root->fs_info->global_block_rsv;
212
213 /* 1 for slack space, 1 for updating the inode */
214 needed_bytes = btrfs_calc_trunc_metadata_size(root, 1) +
215 btrfs_calc_trans_metadata_size(root, 1);
216
217 spin_lock(&trans->block_rsv->lock);
218 if (trans->block_rsv->reserved < needed_bytes) {
219 spin_unlock(&trans->block_rsv->lock);
220 trans->block_rsv = rsv;
221 return -ENOSPC;
222 }
223 spin_unlock(&trans->block_rsv->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -0400224
225 oldsize = i_size_read(inode);
226 btrfs_i_size_write(inode, 0);
227 truncate_pagecache(inode, oldsize, 0);
228
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);
Liu Bo65450aa2011-09-11 10:52:24 -0400235
Josef Bacik0af3d002010-06-21 14:48:16 -0400236 if (ret) {
Josef Bacikc8174312011-11-02 09:29:35 -0400237 trans->block_rsv = rsv;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100238 btrfs_abort_transaction(trans, root, ret);
Josef Bacik0af3d002010-06-21 14:48:16 -0400239 return ret;
240 }
241
Li Zefan82d59022011-04-20 10:33:24 +0800242 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100243 if (ret)
244 btrfs_abort_transaction(trans, root, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400245 trans->block_rsv = rsv;
246
Li Zefan82d59022011-04-20 10:33:24 +0800247 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400248}
249
Josef Bacik9d66e232010-08-25 16:54:15 -0400250static int readahead_cache(struct inode *inode)
251{
252 struct file_ra_state *ra;
253 unsigned long last_index;
254
255 ra = kzalloc(sizeof(*ra), GFP_NOFS);
256 if (!ra)
257 return -ENOMEM;
258
259 file_ra_state_init(ra, inode->i_mapping);
260 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
261
262 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
263
264 kfree(ra);
265
266 return 0;
267}
268
Josef Bacika67509c2011-10-05 15:18:58 -0400269struct io_ctl {
270 void *cur, *orig;
271 struct page *page;
272 struct page **pages;
273 struct btrfs_root *root;
274 unsigned long size;
275 int index;
276 int num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400277 unsigned check_crcs:1;
Josef Bacika67509c2011-10-05 15:18:58 -0400278};
279
280static int io_ctl_init(struct io_ctl *io_ctl, struct inode *inode,
281 struct btrfs_root *root)
282{
283 memset(io_ctl, 0, sizeof(struct io_ctl));
284 io_ctl->num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
285 PAGE_CACHE_SHIFT;
286 io_ctl->pages = kzalloc(sizeof(struct page *) * io_ctl->num_pages,
287 GFP_NOFS);
288 if (!io_ctl->pages)
289 return -ENOMEM;
290 io_ctl->root = root;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400291 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
292 io_ctl->check_crcs = 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400293 return 0;
294}
295
296static void io_ctl_free(struct io_ctl *io_ctl)
297{
298 kfree(io_ctl->pages);
299}
300
301static void io_ctl_unmap_page(struct io_ctl *io_ctl)
302{
303 if (io_ctl->cur) {
304 kunmap(io_ctl->page);
305 io_ctl->cur = NULL;
306 io_ctl->orig = NULL;
307 }
308}
309
310static void io_ctl_map_page(struct io_ctl *io_ctl, int clear)
311{
Josef Bacika67509c2011-10-05 15:18:58 -0400312 BUG_ON(io_ctl->index >= io_ctl->num_pages);
313 io_ctl->page = io_ctl->pages[io_ctl->index++];
314 io_ctl->cur = kmap(io_ctl->page);
315 io_ctl->orig = io_ctl->cur;
316 io_ctl->size = PAGE_CACHE_SIZE;
317 if (clear)
318 memset(io_ctl->cur, 0, PAGE_CACHE_SIZE);
319}
320
321static void io_ctl_drop_pages(struct io_ctl *io_ctl)
322{
323 int i;
324
325 io_ctl_unmap_page(io_ctl);
326
327 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800328 if (io_ctl->pages[i]) {
329 ClearPageChecked(io_ctl->pages[i]);
330 unlock_page(io_ctl->pages[i]);
331 page_cache_release(io_ctl->pages[i]);
332 }
Josef Bacika67509c2011-10-05 15:18:58 -0400333 }
334}
335
336static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct inode *inode,
337 int uptodate)
338{
339 struct page *page;
340 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
341 int i;
342
343 for (i = 0; i < io_ctl->num_pages; i++) {
344 page = find_or_create_page(inode->i_mapping, i, mask);
345 if (!page) {
346 io_ctl_drop_pages(io_ctl);
347 return -ENOMEM;
348 }
349 io_ctl->pages[i] = page;
350 if (uptodate && !PageUptodate(page)) {
351 btrfs_readpage(NULL, page);
352 lock_page(page);
353 if (!PageUptodate(page)) {
354 printk(KERN_ERR "btrfs: error reading free "
355 "space cache\n");
356 io_ctl_drop_pages(io_ctl);
357 return -EIO;
358 }
359 }
360 }
361
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500362 for (i = 0; i < io_ctl->num_pages; i++) {
363 clear_page_dirty_for_io(io_ctl->pages[i]);
364 set_page_extent_mapped(io_ctl->pages[i]);
365 }
366
Josef Bacika67509c2011-10-05 15:18:58 -0400367 return 0;
368}
369
370static void io_ctl_set_generation(struct io_ctl *io_ctl, u64 generation)
371{
Al Viro528c0322012-04-13 11:03:55 -0400372 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400373
374 io_ctl_map_page(io_ctl, 1);
375
376 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400377 * Skip the csum areas. If we don't check crcs then we just have a
378 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400379 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400380 if (io_ctl->check_crcs) {
381 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
382 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
383 } else {
384 io_ctl->cur += sizeof(u64);
385 io_ctl->size -= sizeof(u64) * 2;
386 }
Josef Bacika67509c2011-10-05 15:18:58 -0400387
388 val = io_ctl->cur;
389 *val = cpu_to_le64(generation);
390 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400391}
392
393static int io_ctl_check_generation(struct io_ctl *io_ctl, u64 generation)
394{
Al Viro528c0322012-04-13 11:03:55 -0400395 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400396
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400397 /*
398 * Skip the crc area. If we don't check crcs then we just have a 64bit
399 * chunk at the front of the first page.
400 */
401 if (io_ctl->check_crcs) {
402 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
403 io_ctl->size -= sizeof(u64) +
404 (sizeof(u32) * io_ctl->num_pages);
405 } else {
406 io_ctl->cur += sizeof(u64);
407 io_ctl->size -= sizeof(u64) * 2;
408 }
Josef Bacika67509c2011-10-05 15:18:58 -0400409
Josef Bacika67509c2011-10-05 15:18:58 -0400410 gen = io_ctl->cur;
411 if (le64_to_cpu(*gen) != generation) {
412 printk_ratelimited(KERN_ERR "btrfs: space cache generation "
413 "(%Lu) does not match inode (%Lu)\n", *gen,
414 generation);
415 io_ctl_unmap_page(io_ctl);
416 return -EIO;
417 }
418 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400419 return 0;
420}
421
422static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
423{
424 u32 *tmp;
425 u32 crc = ~(u32)0;
426 unsigned offset = 0;
427
428 if (!io_ctl->check_crcs) {
429 io_ctl_unmap_page(io_ctl);
430 return;
431 }
432
433 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800434 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400435
Liu Bob0496682013-03-14 14:57:45 +0000436 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400437 PAGE_CACHE_SIZE - offset);
438 btrfs_csum_final(crc, (char *)&crc);
439 io_ctl_unmap_page(io_ctl);
440 tmp = kmap(io_ctl->pages[0]);
441 tmp += index;
442 *tmp = crc;
443 kunmap(io_ctl->pages[0]);
444}
445
446static int io_ctl_check_crc(struct io_ctl *io_ctl, int index)
447{
448 u32 *tmp, val;
449 u32 crc = ~(u32)0;
450 unsigned offset = 0;
451
452 if (!io_ctl->check_crcs) {
453 io_ctl_map_page(io_ctl, 0);
454 return 0;
455 }
456
457 if (index == 0)
458 offset = sizeof(u32) * io_ctl->num_pages;
459
460 tmp = kmap(io_ctl->pages[0]);
461 tmp += index;
462 val = *tmp;
463 kunmap(io_ctl->pages[0]);
464
465 io_ctl_map_page(io_ctl, 0);
Liu Bob0496682013-03-14 14:57:45 +0000466 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400467 PAGE_CACHE_SIZE - offset);
468 btrfs_csum_final(crc, (char *)&crc);
469 if (val != crc) {
470 printk_ratelimited(KERN_ERR "btrfs: csum mismatch on free "
471 "space cache\n");
472 io_ctl_unmap_page(io_ctl);
473 return -EIO;
474 }
475
Josef Bacika67509c2011-10-05 15:18:58 -0400476 return 0;
477}
478
479static int io_ctl_add_entry(struct io_ctl *io_ctl, u64 offset, u64 bytes,
480 void *bitmap)
481{
482 struct btrfs_free_space_entry *entry;
483
484 if (!io_ctl->cur)
485 return -ENOSPC;
486
487 entry = io_ctl->cur;
488 entry->offset = cpu_to_le64(offset);
489 entry->bytes = cpu_to_le64(bytes);
490 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
491 BTRFS_FREE_SPACE_EXTENT;
492 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
493 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
494
495 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
496 return 0;
497
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400498 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400499
500 /* No more pages to map */
501 if (io_ctl->index >= io_ctl->num_pages)
502 return 0;
503
504 /* map the next page */
505 io_ctl_map_page(io_ctl, 1);
506 return 0;
507}
508
509static int io_ctl_add_bitmap(struct io_ctl *io_ctl, void *bitmap)
510{
511 if (!io_ctl->cur)
512 return -ENOSPC;
513
514 /*
515 * If we aren't at the start of the current page, unmap this one and
516 * map the next one if there is any left.
517 */
518 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400519 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400520 if (io_ctl->index >= io_ctl->num_pages)
521 return -ENOSPC;
522 io_ctl_map_page(io_ctl, 0);
523 }
524
525 memcpy(io_ctl->cur, bitmap, PAGE_CACHE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400526 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400527 if (io_ctl->index < io_ctl->num_pages)
528 io_ctl_map_page(io_ctl, 0);
529 return 0;
530}
531
532static void io_ctl_zero_remaining_pages(struct io_ctl *io_ctl)
533{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400534 /*
535 * If we're not on the boundary we know we've modified the page and we
536 * need to crc the page.
537 */
538 if (io_ctl->cur != io_ctl->orig)
539 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
540 else
541 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400542
543 while (io_ctl->index < io_ctl->num_pages) {
544 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400545 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400546 }
547}
548
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400549static int io_ctl_read_entry(struct io_ctl *io_ctl,
550 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400551{
552 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500553 int ret;
554
555 if (!io_ctl->cur) {
556 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
557 if (ret)
558 return ret;
559 }
Josef Bacika67509c2011-10-05 15:18:58 -0400560
561 e = io_ctl->cur;
562 entry->offset = le64_to_cpu(e->offset);
563 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400564 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400565 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
566 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
567
568 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400569 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400570
571 io_ctl_unmap_page(io_ctl);
572
Josef Bacik2f120c02011-11-10 20:45:05 -0500573 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400574}
575
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400576static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
577 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400578{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400579 int ret;
580
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400581 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
582 if (ret)
583 return ret;
584
Josef Bacika67509c2011-10-05 15:18:58 -0400585 memcpy(entry->bitmap, io_ctl->cur, PAGE_CACHE_SIZE);
586 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400587
588 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400589}
590
Josef Bacikcd023e72012-05-14 10:06:40 -0400591/*
592 * Since we attach pinned extents after the fact we can have contiguous sections
593 * of free space that are split up in entries. This poses a problem with the
594 * tree logging stuff since it could have allocated across what appears to be 2
595 * entries since we would have merged the entries when adding the pinned extents
596 * back to the free space cache. So run through the space cache that we just
597 * loaded and merge contiguous entries. This will make the log replay stuff not
598 * blow up and it will make for nicer allocator behavior.
599 */
600static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
601{
602 struct btrfs_free_space *e, *prev = NULL;
603 struct rb_node *n;
604
605again:
606 spin_lock(&ctl->tree_lock);
607 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
608 e = rb_entry(n, struct btrfs_free_space, offset_index);
609 if (!prev)
610 goto next;
611 if (e->bitmap || prev->bitmap)
612 goto next;
613 if (prev->offset + prev->bytes == e->offset) {
614 unlink_free_space(ctl, prev);
615 unlink_free_space(ctl, e);
616 prev->bytes += e->bytes;
617 kmem_cache_free(btrfs_free_space_cachep, e);
618 link_free_space(ctl, prev);
619 prev = NULL;
620 spin_unlock(&ctl->tree_lock);
621 goto again;
622 }
623next:
624 prev = e;
625 }
626 spin_unlock(&ctl->tree_lock);
627}
628
Eric Sandeen48a3b632013-04-25 20:41:01 +0000629static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
630 struct btrfs_free_space_ctl *ctl,
631 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400632{
Josef Bacik9d66e232010-08-25 16:54:15 -0400633 struct btrfs_free_space_header *header;
634 struct extent_buffer *leaf;
Josef Bacika67509c2011-10-05 15:18:58 -0400635 struct io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400636 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400637 struct btrfs_free_space *e, *n;
Josef Bacik9d66e232010-08-25 16:54:15 -0400638 struct list_head bitmaps;
639 u64 num_entries;
640 u64 num_bitmaps;
641 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400642 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400643 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400644
645 INIT_LIST_HEAD(&bitmaps);
646
Josef Bacik9d66e232010-08-25 16:54:15 -0400647 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800648 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400649 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400650
651 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800652 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400653 key.type = 0;
654
655 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800656 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400657 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800658 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400659 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400660 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400661 }
662
Li Zefan0414efa2011-04-20 10:20:14 +0800663 ret = -1;
664
Josef Bacik9d66e232010-08-25 16:54:15 -0400665 leaf = path->nodes[0];
666 header = btrfs_item_ptr(leaf, path->slots[0],
667 struct btrfs_free_space_header);
668 num_entries = btrfs_free_space_entries(leaf, header);
669 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
670 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400671 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400672
673 if (BTRFS_I(inode)->generation != generation) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000674 btrfs_err(root->fs_info,
675 "free space inode generation (%llu) "
676 "did not match free space cache generation (%llu)",
677 (unsigned long long)BTRFS_I(inode)->generation,
678 (unsigned long long)generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400679 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400680 }
681
682 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400683 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400684
Li Zefan706efc62012-01-09 14:36:28 +0800685 ret = io_ctl_init(&io_ctl, inode, root);
686 if (ret)
687 return ret;
688
Josef Bacik9d66e232010-08-25 16:54:15 -0400689 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800690 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400691 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400692
Josef Bacika67509c2011-10-05 15:18:58 -0400693 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
694 if (ret)
695 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400696
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400697 ret = io_ctl_check_crc(&io_ctl, 0);
698 if (ret)
699 goto free_cache;
700
Josef Bacika67509c2011-10-05 15:18:58 -0400701 ret = io_ctl_check_generation(&io_ctl, generation);
702 if (ret)
703 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400704
Josef Bacika67509c2011-10-05 15:18:58 -0400705 while (num_entries) {
706 e = kmem_cache_zalloc(btrfs_free_space_cachep,
707 GFP_NOFS);
708 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400709 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400710
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400711 ret = io_ctl_read_entry(&io_ctl, e, &type);
712 if (ret) {
713 kmem_cache_free(btrfs_free_space_cachep, e);
714 goto free_cache;
715 }
716
Josef Bacika67509c2011-10-05 15:18:58 -0400717 if (!e->bytes) {
718 kmem_cache_free(btrfs_free_space_cachep, e);
719 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400720 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400721
Josef Bacika67509c2011-10-05 15:18:58 -0400722 if (type == BTRFS_FREE_SPACE_EXTENT) {
723 spin_lock(&ctl->tree_lock);
724 ret = link_free_space(ctl, e);
725 spin_unlock(&ctl->tree_lock);
726 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000727 btrfs_err(root->fs_info,
728 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500729 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400730 goto free_cache;
731 }
Josef Bacika67509c2011-10-05 15:18:58 -0400732 } else {
733 BUG_ON(!num_bitmaps);
734 num_bitmaps--;
735 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
736 if (!e->bitmap) {
737 kmem_cache_free(
738 btrfs_free_space_cachep, e);
739 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400740 }
Josef Bacika67509c2011-10-05 15:18:58 -0400741 spin_lock(&ctl->tree_lock);
742 ret = link_free_space(ctl, e);
743 ctl->total_bitmaps++;
744 ctl->op->recalc_thresholds(ctl);
745 spin_unlock(&ctl->tree_lock);
746 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000747 btrfs_err(root->fs_info,
748 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400749 kmem_cache_free(btrfs_free_space_cachep, e);
750 goto free_cache;
751 }
752 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400753 }
754
Josef Bacika67509c2011-10-05 15:18:58 -0400755 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400756 }
757
Josef Bacik2f120c02011-11-10 20:45:05 -0500758 io_ctl_unmap_page(&io_ctl);
759
Josef Bacika67509c2011-10-05 15:18:58 -0400760 /*
761 * We add the bitmaps at the end of the entries in order that
762 * the bitmap entries are added to the cache.
763 */
764 list_for_each_entry_safe(e, n, &bitmaps, list) {
765 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400766 ret = io_ctl_read_bitmap(&io_ctl, e);
767 if (ret)
768 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400769 }
770
771 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400772 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400773 ret = 1;
774out:
Josef Bacika67509c2011-10-05 15:18:58 -0400775 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400776 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400777free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400778 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800779 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400780 goto out;
781}
782
Li Zefan0414efa2011-04-20 10:20:14 +0800783int load_free_space_cache(struct btrfs_fs_info *fs_info,
784 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400785{
Li Zefan34d52cb2011-03-29 13:46:06 +0800786 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800787 struct btrfs_root *root = fs_info->tree_root;
788 struct inode *inode;
789 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400790 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800791 bool matched;
792 u64 used = btrfs_block_group_used(&block_group->item);
793
794 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800795 * If this block group has been marked to be cleared for one reason or
796 * another then we can't trust the on disk cache, so just return.
797 */
798 spin_lock(&block_group->lock);
799 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
800 spin_unlock(&block_group->lock);
801 return 0;
802 }
803 spin_unlock(&block_group->lock);
804
805 path = btrfs_alloc_path();
806 if (!path)
807 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400808 path->search_commit_root = 1;
809 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800810
811 inode = lookup_free_space_inode(root, block_group, path);
812 if (IS_ERR(inode)) {
813 btrfs_free_path(path);
814 return 0;
815 }
816
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400817 /* We may have converted the inode and made the cache invalid. */
818 spin_lock(&block_group->lock);
819 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
820 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900821 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400822 goto out;
823 }
824 spin_unlock(&block_group->lock);
825
Li Zefan0414efa2011-04-20 10:20:14 +0800826 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
827 path, block_group->key.objectid);
828 btrfs_free_path(path);
829 if (ret <= 0)
830 goto out;
831
832 spin_lock(&ctl->tree_lock);
833 matched = (ctl->free_space == (block_group->key.offset - used -
834 block_group->bytes_super));
835 spin_unlock(&ctl->tree_lock);
836
837 if (!matched) {
838 __btrfs_remove_free_space_cache(ctl);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000839 btrfs_err(fs_info, "block group %llu has wrong amount of free space",
840 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800841 ret = -1;
842 }
843out:
844 if (ret < 0) {
845 /* This cache is bogus, make sure it gets cleared */
846 spin_lock(&block_group->lock);
847 block_group->disk_cache_state = BTRFS_DC_CLEAR;
848 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800849 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800850
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000851 btrfs_err(fs_info, "failed to load free space cache for block group %llu",
852 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800853 }
854
855 iput(inode);
856 return ret;
857}
858
Josef Bacikc09544e2011-08-30 10:19:10 -0400859/**
860 * __btrfs_write_out_cache - write out cached info to an inode
861 * @root - the root the inode belongs to
862 * @ctl - the free space cache we are going to write out
863 * @block_group - the block_group for this cache if it belongs to a block_group
864 * @trans - the trans handle
865 * @path - the path to use
866 * @offset - the offset for the key we'll insert
867 *
868 * This function writes out a free space cache struct to disk for quick recovery
869 * on mount. This will return 0 if it was successfull in writing the cache out,
870 * and -1 if it was not.
871 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000872static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
873 struct btrfs_free_space_ctl *ctl,
874 struct btrfs_block_group_cache *block_group,
875 struct btrfs_trans_handle *trans,
876 struct btrfs_path *path, u64 offset)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400877{
878 struct btrfs_free_space_header *header;
879 struct extent_buffer *leaf;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400880 struct rb_node *node;
881 struct list_head *pos, *n;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400882 struct extent_state *cached_state = NULL;
Josef Bacik43be2142011-04-01 14:55:00 +0000883 struct btrfs_free_cluster *cluster = NULL;
884 struct extent_io_tree *unpin = NULL;
Josef Bacika67509c2011-10-05 15:18:58 -0400885 struct io_ctl io_ctl;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400886 struct list_head bitmap_list;
887 struct btrfs_key key;
Li Zefandb804f22012-01-10 16:41:01 +0800888 u64 start, extent_start, extent_end, len;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400889 int entries = 0;
890 int bitmaps = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -0400891 int ret;
892 int err = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400893
Josef Bacik0cb59c92010-07-02 12:14:14 -0400894 INIT_LIST_HEAD(&bitmap_list);
895
Li Zefan0414efa2011-04-20 10:20:14 +0800896 if (!i_size_read(inode))
897 return -1;
Josef Bacik2b209822010-12-03 13:17:53 -0500898
Li Zefan706efc62012-01-09 14:36:28 +0800899 ret = io_ctl_init(&io_ctl, inode, root);
900 if (ret)
901 return -1;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400902
Josef Bacik43be2142011-04-01 14:55:00 +0000903 /* Get the cluster for this block_group if it exists */
Li Zefan0414efa2011-04-20 10:20:14 +0800904 if (block_group && !list_empty(&block_group->cluster_list))
Josef Bacik43be2142011-04-01 14:55:00 +0000905 cluster = list_entry(block_group->cluster_list.next,
906 struct btrfs_free_cluster,
907 block_group_list);
908
Josef Bacika67509c2011-10-05 15:18:58 -0400909 /* Lock all pages first so we can lock the extent safely. */
910 io_ctl_prepare_pages(&io_ctl, inode, 0);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400911
Josef Bacik0cb59c92010-07-02 12:14:14 -0400912 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100913 0, &cached_state);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400914
Josef Bacikf75b1302011-10-05 10:00:18 -0400915 node = rb_first(&ctl->free_space_offset);
916 if (!node && cluster) {
917 node = rb_first(&cluster->root);
918 cluster = NULL;
919 }
920
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400921 /* Make sure we can fit our crcs into the first page */
922 if (io_ctl.check_crcs &&
923 (io_ctl.num_pages * sizeof(u32)) >= PAGE_CACHE_SIZE) {
924 WARN_ON(1);
925 goto out_nospc;
926 }
927
Josef Bacika67509c2011-10-05 15:18:58 -0400928 io_ctl_set_generation(&io_ctl, trans->transid);
929
Josef Bacik0cb59c92010-07-02 12:14:14 -0400930 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400931 while (node) {
932 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400933
Josef Bacika67509c2011-10-05 15:18:58 -0400934 e = rb_entry(node, struct btrfs_free_space, offset_index);
935 entries++;
Josef Bacik43be2142011-04-01 14:55:00 +0000936
Josef Bacika67509c2011-10-05 15:18:58 -0400937 ret = io_ctl_add_entry(&io_ctl, e->offset, e->bytes,
938 e->bitmap);
939 if (ret)
940 goto out_nospc;
941
942 if (e->bitmap) {
943 list_add_tail(&e->list, &bitmap_list);
944 bitmaps++;
945 }
946 node = rb_next(node);
947 if (!node && cluster) {
948 node = rb_first(&cluster->root);
949 cluster = NULL;
950 }
951 }
952
953 /*
954 * We want to add any pinned extents to our free space cache
955 * so we don't leak the space
956 */
Li Zefandb804f22012-01-10 16:41:01 +0800957
958 /*
959 * We shouldn't have switched the pinned extents yet so this is the
960 * right one
961 */
962 unpin = root->fs_info->pinned_extents;
963
964 if (block_group)
965 start = block_group->key.objectid;
966
Josef Bacika67509c2011-10-05 15:18:58 -0400967 while (block_group && (start < block_group->key.objectid +
968 block_group->key.offset)) {
Li Zefandb804f22012-01-10 16:41:01 +0800969 ret = find_first_extent_bit(unpin, start,
970 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400971 EXTENT_DIRTY, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400972 if (ret) {
973 ret = 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400974 break;
975 }
976
Josef Bacika67509c2011-10-05 15:18:58 -0400977 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +0800978 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -0400979 block_group->key.offset)
980 break;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400981
Li Zefandb804f22012-01-10 16:41:01 +0800982 extent_start = max(extent_start, start);
983 extent_end = min(block_group->key.objectid +
984 block_group->key.offset, extent_end + 1);
985 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400986
Josef Bacika67509c2011-10-05 15:18:58 -0400987 entries++;
Li Zefandb804f22012-01-10 16:41:01 +0800988 ret = io_ctl_add_entry(&io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400989 if (ret)
990 goto out_nospc;
Josef Bacik2f356122011-06-10 15:31:13 -0400991
Li Zefandb804f22012-01-10 16:41:01 +0800992 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -0400993 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400994
995 /* Write out the bitmaps */
996 list_for_each_safe(pos, n, &bitmap_list) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400997 struct btrfs_free_space *entry =
998 list_entry(pos, struct btrfs_free_space, list);
999
Josef Bacika67509c2011-10-05 15:18:58 -04001000 ret = io_ctl_add_bitmap(&io_ctl, entry->bitmap);
1001 if (ret)
1002 goto out_nospc;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001003 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001004 }
1005
Josef Bacik0cb59c92010-07-02 12:14:14 -04001006 /* Zero out the rest of the pages just to make sure */
Josef Bacika67509c2011-10-05 15:18:58 -04001007 io_ctl_zero_remaining_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001008
Josef Bacika67509c2011-10-05 15:18:58 -04001009 ret = btrfs_dirty_pages(root, inode, io_ctl.pages, io_ctl.num_pages,
1010 0, i_size_read(inode), &cached_state);
1011 io_ctl_drop_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001012 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1013 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1014
Josef Bacikc09544e2011-08-30 10:19:10 -04001015 if (ret)
Josef Bacik2f356122011-06-10 15:31:13 -04001016 goto out;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001017
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001018
Josef Bacik5fd02042012-05-02 14:00:54 -04001019 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001020
1021 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +08001022 key.offset = offset;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001023 key.type = 0;
1024
Josef Bacika9b5fcd2011-08-19 12:06:12 -04001025 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001026 if (ret < 0) {
Josef Bacika67509c2011-10-05 15:18:58 -04001027 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001028 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1029 GFP_NOFS);
Josef Bacik2f356122011-06-10 15:31:13 -04001030 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001031 }
1032 leaf = path->nodes[0];
1033 if (ret > 0) {
1034 struct btrfs_key found_key;
1035 BUG_ON(!path->slots[0]);
1036 path->slots[0]--;
1037 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1038 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
Li Zefan0414efa2011-04-20 10:20:14 +08001039 found_key.offset != offset) {
Josef Bacika67509c2011-10-05 15:18:58 -04001040 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
1041 inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001042 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
1043 NULL, GFP_NOFS);
David Sterbab3b4aa72011-04-21 01:20:15 +02001044 btrfs_release_path(path);
Josef Bacik2f356122011-06-10 15:31:13 -04001045 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001046 }
1047 }
Josef Bacik549b4fd2011-10-05 16:33:53 -04001048
1049 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001050 header = btrfs_item_ptr(leaf, path->slots[0],
1051 struct btrfs_free_space_header);
1052 btrfs_set_free_space_entries(leaf, header, entries);
1053 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
1054 btrfs_set_free_space_generation(leaf, header, trans->transid);
1055 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02001056 btrfs_release_path(path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001057
Josef Bacikc09544e2011-08-30 10:19:10 -04001058 err = 0;
Josef Bacik2f356122011-06-10 15:31:13 -04001059out:
Josef Bacika67509c2011-10-05 15:18:58 -04001060 io_ctl_free(&io_ctl);
Josef Bacikc09544e2011-08-30 10:19:10 -04001061 if (err) {
Josef Bacika67509c2011-10-05 15:18:58 -04001062 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001063 BTRFS_I(inode)->generation = 0;
1064 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001065 btrfs_update_inode(trans, root, inode);
Josef Bacikc09544e2011-08-30 10:19:10 -04001066 return err;
Josef Bacika67509c2011-10-05 15:18:58 -04001067
1068out_nospc:
1069 list_for_each_safe(pos, n, &bitmap_list) {
1070 struct btrfs_free_space *entry =
1071 list_entry(pos, struct btrfs_free_space, list);
1072 list_del_init(&entry->list);
1073 }
1074 io_ctl_drop_pages(&io_ctl);
1075 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1076 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1077 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001078}
1079
1080int btrfs_write_out_cache(struct btrfs_root *root,
1081 struct btrfs_trans_handle *trans,
1082 struct btrfs_block_group_cache *block_group,
1083 struct btrfs_path *path)
1084{
1085 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1086 struct inode *inode;
1087 int ret = 0;
1088
1089 root = root->fs_info->tree_root;
1090
1091 spin_lock(&block_group->lock);
1092 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1093 spin_unlock(&block_group->lock);
1094 return 0;
1095 }
1096 spin_unlock(&block_group->lock);
1097
1098 inode = lookup_free_space_inode(root, block_group, path);
1099 if (IS_ERR(inode))
1100 return 0;
1101
1102 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
1103 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001104 if (ret) {
Li Zefan0414efa2011-04-20 10:20:14 +08001105 spin_lock(&block_group->lock);
1106 block_group->disk_cache_state = BTRFS_DC_ERROR;
1107 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +08001108 ret = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04001109#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00001110 btrfs_err(root->fs_info,
1111 "failed to write free space cache for block group %llu",
1112 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001113#endif
Li Zefan0414efa2011-04-20 10:20:14 +08001114 }
1115
Josef Bacik0cb59c92010-07-02 12:14:14 -04001116 iput(inode);
1117 return ret;
1118}
1119
Li Zefan34d52cb2011-03-29 13:46:06 +08001120static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001121 u64 offset)
1122{
1123 BUG_ON(offset < bitmap_start);
1124 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001125 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001126}
1127
Li Zefan34d52cb2011-03-29 13:46:06 +08001128static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001129{
Li Zefan34d52cb2011-03-29 13:46:06 +08001130 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001131}
1132
Li Zefan34d52cb2011-03-29 13:46:06 +08001133static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001134 u64 offset)
1135{
1136 u64 bitmap_start;
1137 u64 bytes_per_bitmap;
1138
Li Zefan34d52cb2011-03-29 13:46:06 +08001139 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1140 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001141 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
1142 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001143 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001144
1145 return bitmap_start;
1146}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001147
1148static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001149 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001150{
1151 struct rb_node **p = &root->rb_node;
1152 struct rb_node *parent = NULL;
1153 struct btrfs_free_space *info;
1154
1155 while (*p) {
1156 parent = *p;
1157 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1158
Josef Bacik96303082009-07-13 21:29:25 -04001159 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001160 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001161 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001162 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001163 } else {
1164 /*
1165 * we could have a bitmap entry and an extent entry
1166 * share the same offset. If this is the case, we want
1167 * the extent entry to always be found first if we do a
1168 * linear search through the tree, since we want to have
1169 * the quickest allocation time, and allocating from an
1170 * extent is faster than allocating from a bitmap. So
1171 * if we're inserting a bitmap and we find an entry at
1172 * this offset, we want to go right, or after this entry
1173 * logically. If we are inserting an extent and we've
1174 * found a bitmap, we want to go left, or before
1175 * logically.
1176 */
1177 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001178 if (info->bitmap) {
1179 WARN_ON_ONCE(1);
1180 return -EEXIST;
1181 }
Josef Bacik96303082009-07-13 21:29:25 -04001182 p = &(*p)->rb_right;
1183 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001184 if (!info->bitmap) {
1185 WARN_ON_ONCE(1);
1186 return -EEXIST;
1187 }
Josef Bacik96303082009-07-13 21:29:25 -04001188 p = &(*p)->rb_left;
1189 }
1190 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001191 }
1192
1193 rb_link_node(node, parent, p);
1194 rb_insert_color(node, root);
1195
1196 return 0;
1197}
1198
1199/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001200 * searches the tree for the given offset.
1201 *
Josef Bacik96303082009-07-13 21:29:25 -04001202 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1203 * want a section that has at least bytes size and comes at or after the given
1204 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001205 */
Josef Bacik96303082009-07-13 21:29:25 -04001206static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001207tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001208 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001209{
Li Zefan34d52cb2011-03-29 13:46:06 +08001210 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001211 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001212
Josef Bacik96303082009-07-13 21:29:25 -04001213 /* find entry that is closest to the 'offset' */
1214 while (1) {
1215 if (!n) {
1216 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001217 break;
1218 }
Josef Bacik96303082009-07-13 21:29:25 -04001219
1220 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1221 prev = entry;
1222
1223 if (offset < entry->offset)
1224 n = n->rb_left;
1225 else if (offset > entry->offset)
1226 n = n->rb_right;
1227 else
1228 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001229 }
1230
Josef Bacik96303082009-07-13 21:29:25 -04001231 if (bitmap_only) {
1232 if (!entry)
1233 return NULL;
1234 if (entry->bitmap)
1235 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001236
Josef Bacik96303082009-07-13 21:29:25 -04001237 /*
1238 * bitmap entry and extent entry may share same offset,
1239 * in that case, bitmap entry comes after extent entry.
1240 */
1241 n = rb_next(n);
1242 if (!n)
1243 return NULL;
1244 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1245 if (entry->offset != offset)
1246 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001247
Josef Bacik96303082009-07-13 21:29:25 -04001248 WARN_ON(!entry->bitmap);
1249 return entry;
1250 } else if (entry) {
1251 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001252 /*
Josef Bacik96303082009-07-13 21:29:25 -04001253 * if previous extent entry covers the offset,
1254 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001255 */
Miao Xiede6c4112012-10-18 08:18:01 +00001256 n = rb_prev(&entry->offset_index);
1257 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001258 prev = rb_entry(n, struct btrfs_free_space,
1259 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001260 if (!prev->bitmap &&
1261 prev->offset + prev->bytes > offset)
1262 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001263 }
Josef Bacik96303082009-07-13 21:29:25 -04001264 }
1265 return entry;
1266 }
1267
1268 if (!prev)
1269 return NULL;
1270
1271 /* find last entry before the 'offset' */
1272 entry = prev;
1273 if (entry->offset > offset) {
1274 n = rb_prev(&entry->offset_index);
1275 if (n) {
1276 entry = rb_entry(n, struct btrfs_free_space,
1277 offset_index);
1278 BUG_ON(entry->offset > offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001279 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001280 if (fuzzy)
1281 return entry;
1282 else
1283 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001284 }
1285 }
1286
Josef Bacik96303082009-07-13 21:29:25 -04001287 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001288 n = rb_prev(&entry->offset_index);
1289 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001290 prev = rb_entry(n, struct btrfs_free_space,
1291 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001292 if (!prev->bitmap &&
1293 prev->offset + prev->bytes > offset)
1294 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001295 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001296 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001297 return entry;
1298 } else if (entry->offset + entry->bytes > offset)
1299 return entry;
1300
1301 if (!fuzzy)
1302 return NULL;
1303
1304 while (1) {
1305 if (entry->bitmap) {
1306 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001307 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001308 break;
1309 } else {
1310 if (entry->offset + entry->bytes > offset)
1311 break;
1312 }
1313
1314 n = rb_next(&entry->offset_index);
1315 if (!n)
1316 return NULL;
1317 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1318 }
1319 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001320}
1321
Li Zefanf333adb2010-11-09 14:57:39 +08001322static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001323__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001324 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001325{
Li Zefan34d52cb2011-03-29 13:46:06 +08001326 rb_erase(&info->offset_index, &ctl->free_space_offset);
1327 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001328}
1329
Li Zefan34d52cb2011-03-29 13:46:06 +08001330static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001331 struct btrfs_free_space *info)
1332{
Li Zefan34d52cb2011-03-29 13:46:06 +08001333 __unlink_free_space(ctl, info);
1334 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001335}
1336
Li Zefan34d52cb2011-03-29 13:46:06 +08001337static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001338 struct btrfs_free_space *info)
1339{
1340 int ret = 0;
1341
Josef Bacik96303082009-07-13 21:29:25 -04001342 BUG_ON(!info->bitmap && !info->bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001343 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001344 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001345 if (ret)
1346 return ret;
1347
Li Zefan34d52cb2011-03-29 13:46:06 +08001348 ctl->free_space += info->bytes;
1349 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001350 return ret;
1351}
1352
Li Zefan34d52cb2011-03-29 13:46:06 +08001353static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001354{
Li Zefan34d52cb2011-03-29 13:46:06 +08001355 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001356 u64 max_bytes;
1357 u64 bitmap_bytes;
1358 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001359 u64 size = block_group->key.offset;
Wang Sheng-Hui96009762012-11-30 06:30:14 +00001360 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001361 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1362
Josef Bacikdde57402013-02-12 14:07:51 -05001363 max_bitmaps = max(max_bitmaps, 1);
1364
Li Zefan34d52cb2011-03-29 13:46:06 +08001365 BUG_ON(ctl->total_bitmaps > max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001366
1367 /*
1368 * The goal is to keep the total amount of memory used per 1gb of space
1369 * at or below 32k, so we need to adjust how much memory we allow to be
1370 * used by extent based free space tracking
1371 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001372 if (size < 1024 * 1024 * 1024)
1373 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1374 else
1375 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1376 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001377
Josef Bacik25891f72009-09-11 16:11:20 -04001378 /*
1379 * we want to account for 1 more bitmap than what we have so we can make
1380 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1381 * we add more bitmaps.
1382 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001383 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001384
Josef Bacik25891f72009-09-11 16:11:20 -04001385 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001386 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001387 return;
Josef Bacik96303082009-07-13 21:29:25 -04001388 }
Josef Bacik25891f72009-09-11 16:11:20 -04001389
1390 /*
1391 * we want the extent entry threshold to always be at most 1/2 the maxw
1392 * bytes we can have, or whatever is less than that.
1393 */
1394 extent_bytes = max_bytes - bitmap_bytes;
1395 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1396
Li Zefan34d52cb2011-03-29 13:46:06 +08001397 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001398 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001399}
1400
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001401static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1402 struct btrfs_free_space *info,
1403 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001404{
Li Zefanf38b6e72011-03-14 13:40:51 +08001405 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001406
Li Zefan34d52cb2011-03-29 13:46:06 +08001407 start = offset_to_bit(info->offset, ctl->unit, offset);
1408 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001409 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001410
Li Zefanf38b6e72011-03-14 13:40:51 +08001411 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001412
1413 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001414}
1415
1416static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1417 struct btrfs_free_space *info, u64 offset,
1418 u64 bytes)
1419{
1420 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001421 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001422}
1423
Li Zefan34d52cb2011-03-29 13:46:06 +08001424static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001425 struct btrfs_free_space *info, u64 offset,
1426 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001427{
Li Zefanf38b6e72011-03-14 13:40:51 +08001428 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001429
Li Zefan34d52cb2011-03-29 13:46:06 +08001430 start = offset_to_bit(info->offset, ctl->unit, offset);
1431 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001432 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001433
Li Zefanf38b6e72011-03-14 13:40:51 +08001434 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001435
1436 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001437 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001438}
1439
Li Zefan34d52cb2011-03-29 13:46:06 +08001440static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001441 struct btrfs_free_space *bitmap_info, u64 *offset,
1442 u64 *bytes)
1443{
1444 unsigned long found_bits = 0;
1445 unsigned long bits, i;
1446 unsigned long next_zero;
1447
Li Zefan34d52cb2011-03-29 13:46:06 +08001448 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001449 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001450 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001451
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001452 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04001453 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1454 BITS_PER_BITMAP, i);
1455 if ((next_zero - i) >= bits) {
1456 found_bits = next_zero - i;
1457 break;
1458 }
1459 i = next_zero;
1460 }
1461
1462 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001463 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1464 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001465 return 0;
1466 }
1467
1468 return -1;
1469}
1470
Li Zefan34d52cb2011-03-29 13:46:06 +08001471static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001472find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
1473 unsigned long align)
Josef Bacik96303082009-07-13 21:29:25 -04001474{
1475 struct btrfs_free_space *entry;
1476 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001477 u64 ctl_off;
1478 u64 tmp;
1479 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001480 int ret;
1481
Li Zefan34d52cb2011-03-29 13:46:06 +08001482 if (!ctl->free_space_offset.rb_node)
Josef Bacik96303082009-07-13 21:29:25 -04001483 return NULL;
1484
Li Zefan34d52cb2011-03-29 13:46:06 +08001485 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001486 if (!entry)
1487 return NULL;
1488
1489 for (node = &entry->offset_index; node; node = rb_next(node)) {
1490 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1491 if (entry->bytes < *bytes)
1492 continue;
1493
David Woodhouse53b381b2013-01-29 18:40:14 -05001494 /* make sure the space returned is big enough
1495 * to match our requested alignment
1496 */
1497 if (*bytes >= align) {
1498 ctl_off = entry->offset - ctl->start;
1499 tmp = ctl_off + align - 1;;
1500 do_div(tmp, align);
1501 tmp = tmp * align + ctl->start;
1502 align_off = tmp - entry->offset;
1503 } else {
1504 align_off = 0;
1505 tmp = entry->offset;
1506 }
1507
1508 if (entry->bytes < *bytes + align_off)
1509 continue;
1510
Josef Bacik96303082009-07-13 21:29:25 -04001511 if (entry->bitmap) {
David Woodhouse53b381b2013-01-29 18:40:14 -05001512 ret = search_bitmap(ctl, entry, &tmp, bytes);
1513 if (!ret) {
1514 *offset = tmp;
Josef Bacik96303082009-07-13 21:29:25 -04001515 return entry;
David Woodhouse53b381b2013-01-29 18:40:14 -05001516 }
Josef Bacik96303082009-07-13 21:29:25 -04001517 continue;
1518 }
1519
David Woodhouse53b381b2013-01-29 18:40:14 -05001520 *offset = tmp;
1521 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001522 return entry;
1523 }
1524
1525 return NULL;
1526}
1527
Li Zefan34d52cb2011-03-29 13:46:06 +08001528static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001529 struct btrfs_free_space *info, u64 offset)
1530{
Li Zefan34d52cb2011-03-29 13:46:06 +08001531 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001532 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001533 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001534 link_free_space(ctl, info);
1535 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001536
Li Zefan34d52cb2011-03-29 13:46:06 +08001537 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001538}
1539
Li Zefan34d52cb2011-03-29 13:46:06 +08001540static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001541 struct btrfs_free_space *bitmap_info)
1542{
Li Zefan34d52cb2011-03-29 13:46:06 +08001543 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001544 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001545 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001546 ctl->total_bitmaps--;
1547 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001548}
1549
Li Zefan34d52cb2011-03-29 13:46:06 +08001550static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001551 struct btrfs_free_space *bitmap_info,
1552 u64 *offset, u64 *bytes)
1553{
1554 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001555 u64 search_start, search_bytes;
1556 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001557
1558again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001559 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001560
Josef Bacik6606bb92009-07-31 11:03:58 -04001561 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001562 * We need to search for bits in this bitmap. We could only cover some
1563 * of the extent in this bitmap thanks to how we add space, so we need
1564 * to search for as much as it as we can and clear that amount, and then
1565 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001566 */
1567 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001568 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001569 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001570 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001571 if (ret < 0 || search_start != *offset)
1572 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001573
Josef Bacikbdb7d302012-06-27 15:10:56 -04001574 /* We may have found more bits than what we need */
1575 search_bytes = min(search_bytes, *bytes);
1576
1577 /* Cannot clear past the end of the bitmap */
1578 search_bytes = min(search_bytes, end - search_start + 1);
1579
1580 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1581 *offset += search_bytes;
1582 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001583
1584 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001585 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001586 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001587 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001588
Josef Bacik6606bb92009-07-31 11:03:58 -04001589 /*
1590 * no entry after this bitmap, but we still have bytes to
1591 * remove, so something has gone wrong.
1592 */
1593 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001594 return -EINVAL;
1595
Josef Bacik6606bb92009-07-31 11:03:58 -04001596 bitmap_info = rb_entry(next, struct btrfs_free_space,
1597 offset_index);
1598
1599 /*
1600 * if the next entry isn't a bitmap we need to return to let the
1601 * extent stuff do its work.
1602 */
Josef Bacik96303082009-07-13 21:29:25 -04001603 if (!bitmap_info->bitmap)
1604 return -EAGAIN;
1605
Josef Bacik6606bb92009-07-31 11:03:58 -04001606 /*
1607 * Ok the next item is a bitmap, but it may not actually hold
1608 * the information for the rest of this free space stuff, so
1609 * look for it, and if we don't find it return so we can try
1610 * everything over again.
1611 */
1612 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001613 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001614 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001615 &search_bytes);
1616 if (ret < 0 || search_start != *offset)
1617 return -EAGAIN;
1618
Josef Bacik96303082009-07-13 21:29:25 -04001619 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001620 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001621 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001622
1623 return 0;
1624}
1625
Josef Bacik2cdc3422011-05-27 14:07:49 -04001626static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1627 struct btrfs_free_space *info, u64 offset,
1628 u64 bytes)
1629{
1630 u64 bytes_to_set = 0;
1631 u64 end;
1632
1633 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1634
1635 bytes_to_set = min(end - offset, bytes);
1636
1637 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1638
1639 return bytes_to_set;
1640
1641}
1642
Li Zefan34d52cb2011-03-29 13:46:06 +08001643static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1644 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001645{
Li Zefan34d52cb2011-03-29 13:46:06 +08001646 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001647
1648 /*
1649 * If we are below the extents threshold then we can add this as an
1650 * extent, and don't have to deal with the bitmap
1651 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001652 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001653 /*
1654 * If this block group has some small extents we don't want to
1655 * use up all of our free slots in the cache with them, we want
1656 * to reserve them to larger extents, however if we have plent
1657 * of cache left then go ahead an dadd them, no sense in adding
1658 * the overhead of a bitmap if we don't have to.
1659 */
1660 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001661 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1662 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001663 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001664 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001665 }
1666 }
Josef Bacik96303082009-07-13 21:29:25 -04001667
1668 /*
Josef Bacikdde57402013-02-12 14:07:51 -05001669 * The original block groups from mkfs can be really small, like 8
1670 * megabytes, so don't bother with a bitmap for those entries. However
1671 * some block groups can be smaller than what a bitmap would cover but
1672 * are still large enough that they could overflow the 32k memory limit,
1673 * so allow those block groups to still be allowed to have a bitmap
1674 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04001675 */
Josef Bacikdde57402013-02-12 14:07:51 -05001676 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001677 return false;
1678
1679 return true;
1680}
1681
Josef Bacik2cdc3422011-05-27 14:07:49 -04001682static struct btrfs_free_space_op free_space_op = {
1683 .recalc_thresholds = recalculate_thresholds,
1684 .use_bitmap = use_bitmap,
1685};
1686
Li Zefan34d52cb2011-03-29 13:46:06 +08001687static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1688 struct btrfs_free_space *info)
1689{
1690 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001691 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08001692 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001693 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08001694 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001695
1696 bytes = info->bytes;
1697 offset = info->offset;
1698
Li Zefan34d52cb2011-03-29 13:46:06 +08001699 if (!ctl->op->use_bitmap(ctl, info))
1700 return 0;
1701
Josef Bacik2cdc3422011-05-27 14:07:49 -04001702 if (ctl->op == &free_space_op)
1703 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001704again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001705 /*
1706 * Since we link bitmaps right into the cluster we need to see if we
1707 * have a cluster here, and if so and it has our bitmap we need to add
1708 * the free space to that bitmap.
1709 */
1710 if (block_group && !list_empty(&block_group->cluster_list)) {
1711 struct btrfs_free_cluster *cluster;
1712 struct rb_node *node;
1713 struct btrfs_free_space *entry;
1714
1715 cluster = list_entry(block_group->cluster_list.next,
1716 struct btrfs_free_cluster,
1717 block_group_list);
1718 spin_lock(&cluster->lock);
1719 node = rb_first(&cluster->root);
1720 if (!node) {
1721 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001722 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001723 }
1724
1725 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1726 if (!entry->bitmap) {
1727 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001728 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001729 }
1730
1731 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1732 bytes_added = add_bytes_to_bitmap(ctl, entry,
1733 offset, bytes);
1734 bytes -= bytes_added;
1735 offset += bytes_added;
1736 }
1737 spin_unlock(&cluster->lock);
1738 if (!bytes) {
1739 ret = 1;
1740 goto out;
1741 }
1742 }
Chris Mason38e87882011-06-10 16:36:57 -04001743
1744no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08001745 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001746 1, 0);
1747 if (!bitmap_info) {
1748 BUG_ON(added);
1749 goto new_bitmap;
1750 }
1751
Josef Bacik2cdc3422011-05-27 14:07:49 -04001752 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1753 bytes -= bytes_added;
1754 offset += bytes_added;
1755 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001756
1757 if (!bytes) {
1758 ret = 1;
1759 goto out;
1760 } else
1761 goto again;
1762
1763new_bitmap:
1764 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001765 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001766 added = 1;
1767 info = NULL;
1768 goto again;
1769 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001770 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001771
1772 /* no pre-allocated info, allocate a new one */
1773 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001774 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1775 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001776 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001777 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001778 ret = -ENOMEM;
1779 goto out;
1780 }
1781 }
1782
1783 /* allocate the bitmap */
1784 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001785 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001786 if (!info->bitmap) {
1787 ret = -ENOMEM;
1788 goto out;
1789 }
1790 goto again;
1791 }
1792
1793out:
1794 if (info) {
1795 if (info->bitmap)
1796 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001797 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001798 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001799
1800 return ret;
1801}
1802
Chris Mason945d8962011-05-22 12:33:42 -04001803static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001804 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001805{
Li Zefan120d66e2010-11-09 14:56:50 +08001806 struct btrfs_free_space *left_info;
1807 struct btrfs_free_space *right_info;
1808 bool merged = false;
1809 u64 offset = info->offset;
1810 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001811
Josef Bacik0f9dd462008-09-23 13:14:11 -04001812 /*
1813 * first we want to see if there is free space adjacent to the range we
1814 * are adding, if there is remove that struct and add a new one to
1815 * cover the entire range
1816 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001817 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001818 if (right_info && rb_prev(&right_info->offset_index))
1819 left_info = rb_entry(rb_prev(&right_info->offset_index),
1820 struct btrfs_free_space, offset_index);
1821 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001822 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001823
Josef Bacik96303082009-07-13 21:29:25 -04001824 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001825 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001826 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001827 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001828 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001829 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001830 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001831 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001832 }
1833
Josef Bacik96303082009-07-13 21:29:25 -04001834 if (left_info && !left_info->bitmap &&
1835 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001836 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001837 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001838 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001839 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001840 info->offset = left_info->offset;
1841 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001842 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001843 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001844 }
1845
Li Zefan120d66e2010-11-09 14:56:50 +08001846 return merged;
1847}
1848
Li Zefan581bb052011-04-20 10:06:11 +08001849int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1850 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001851{
1852 struct btrfs_free_space *info;
1853 int ret = 0;
1854
Josef Bacikdc89e982011-01-28 17:05:48 -05001855 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001856 if (!info)
1857 return -ENOMEM;
1858
1859 info->offset = offset;
1860 info->bytes = bytes;
1861
Li Zefan34d52cb2011-03-29 13:46:06 +08001862 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001863
Li Zefan34d52cb2011-03-29 13:46:06 +08001864 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001865 goto link;
1866
1867 /*
1868 * There was no extent directly to the left or right of this new
1869 * extent then we know we're going to have to allocate a new extent, so
1870 * before we do that see if we need to drop this into a bitmap
1871 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001872 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001873 if (ret < 0) {
1874 goto out;
1875 } else if (ret) {
1876 ret = 0;
1877 goto out;
1878 }
1879link:
Li Zefan34d52cb2011-03-29 13:46:06 +08001880 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001881 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001882 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001883out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001884 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001885
Josef Bacik0f9dd462008-09-23 13:14:11 -04001886 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001887 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001888 BUG_ON(ret == -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001889 }
1890
Josef Bacik0f9dd462008-09-23 13:14:11 -04001891 return ret;
1892}
1893
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001894int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1895 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001896{
Li Zefan34d52cb2011-03-29 13:46:06 +08001897 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001898 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05001899 int ret;
1900 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001901
Li Zefan34d52cb2011-03-29 13:46:06 +08001902 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001903
Josef Bacik96303082009-07-13 21:29:25 -04001904again:
Josef Bacikb0175112012-12-18 11:39:19 -05001905 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001906 if (!bytes)
1907 goto out_lock;
1908
Li Zefan34d52cb2011-03-29 13:46:06 +08001909 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001910 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001911 /*
1912 * oops didn't find an extent that matched the space we wanted
1913 * to remove, look for a bitmap instead
1914 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001915 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04001916 1, 0);
1917 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05001918 /*
1919 * If we found a partial bit of our free space in a
1920 * bitmap but then couldn't find the other part this may
1921 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05001922 */
Josef Bacikb0175112012-12-18 11:39:19 -05001923 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04001924 goto out_lock;
1925 }
Josef Bacik96303082009-07-13 21:29:25 -04001926 }
1927
Josef Bacikb0175112012-12-18 11:39:19 -05001928 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001929 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001930 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04001931 if (offset == info->offset) {
1932 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001933
Josef Bacikbdb7d302012-06-27 15:10:56 -04001934 info->bytes -= to_free;
1935 info->offset += to_free;
1936 if (info->bytes) {
1937 ret = link_free_space(ctl, info);
1938 WARN_ON(ret);
1939 } else {
1940 kmem_cache_free(btrfs_free_space_cachep, info);
1941 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001942
Josef Bacikbdb7d302012-06-27 15:10:56 -04001943 offset += to_free;
1944 bytes -= to_free;
1945 goto again;
1946 } else {
1947 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001948
Josef Bacikbdb7d302012-06-27 15:10:56 -04001949 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001950 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001951 WARN_ON(ret);
1952 if (ret)
1953 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04001954
Josef Bacikbdb7d302012-06-27 15:10:56 -04001955 /* Not enough bytes in this entry to satisfy us */
1956 if (old_end < offset + bytes) {
1957 bytes -= old_end - offset;
1958 offset = old_end;
1959 goto again;
1960 } else if (old_end == offset + bytes) {
1961 /* all done */
1962 goto out_lock;
1963 }
1964 spin_unlock(&ctl->tree_lock);
1965
1966 ret = btrfs_add_free_space(block_group, offset + bytes,
1967 old_end - (offset + bytes));
1968 WARN_ON(ret);
1969 goto out;
1970 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001971 }
Josef Bacik96303082009-07-13 21:29:25 -04001972
Li Zefan34d52cb2011-03-29 13:46:06 +08001973 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05001974 if (ret == -EAGAIN) {
1975 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04001976 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05001977 }
Josef Bacik96303082009-07-13 21:29:25 -04001978out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08001979 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001980out:
Josef Bacik25179202008-10-29 14:49:05 -04001981 return ret;
1982}
1983
Josef Bacik0f9dd462008-09-23 13:14:11 -04001984void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1985 u64 bytes)
1986{
Li Zefan34d52cb2011-03-29 13:46:06 +08001987 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001988 struct btrfs_free_space *info;
1989 struct rb_node *n;
1990 int count = 0;
1991
Li Zefan34d52cb2011-03-29 13:46:06 +08001992 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001993 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06001994 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001995 count++;
Josef Bacik96303082009-07-13 21:29:25 -04001996 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Joel Becker21380932009-04-21 12:38:29 -07001997 (unsigned long long)info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001998 (unsigned long long)info->bytes,
1999 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002000 }
Josef Bacik96303082009-07-13 21:29:25 -04002001 printk(KERN_INFO "block group has cluster?: %s\n",
2002 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002003 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
2004 "\n", count);
2005}
2006
Li Zefan34d52cb2011-03-29 13:46:06 +08002007void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002008{
Li Zefan34d52cb2011-03-29 13:46:06 +08002009 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002010
Li Zefan34d52cb2011-03-29 13:46:06 +08002011 spin_lock_init(&ctl->tree_lock);
2012 ctl->unit = block_group->sectorsize;
2013 ctl->start = block_group->key.objectid;
2014 ctl->private = block_group;
2015 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002016
Li Zefan34d52cb2011-03-29 13:46:06 +08002017 /*
2018 * we only want to have 32k of ram per block group for keeping
2019 * track of free space, and if we pass 1/2 of that we want to
2020 * start converting things over to using bitmaps
2021 */
2022 ctl->extents_thresh = ((1024 * 32) / 2) /
2023 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002024}
2025
Chris Masonfa9c0d792009-04-03 09:47:43 -04002026/*
2027 * for a given cluster, put all of its extents back into the free
2028 * space cache. If the block group passed doesn't match the block group
2029 * pointed to by the cluster, someone else raced in and freed the
2030 * cluster already. In that case, we just return without changing anything
2031 */
2032static int
2033__btrfs_return_cluster_to_free_space(
2034 struct btrfs_block_group_cache *block_group,
2035 struct btrfs_free_cluster *cluster)
2036{
Li Zefan34d52cb2011-03-29 13:46:06 +08002037 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002038 struct btrfs_free_space *entry;
2039 struct rb_node *node;
2040
2041 spin_lock(&cluster->lock);
2042 if (cluster->block_group != block_group)
2043 goto out;
2044
Josef Bacik96303082009-07-13 21:29:25 -04002045 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002046 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002047 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002048
Chris Masonfa9c0d792009-04-03 09:47:43 -04002049 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002050 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002051 bool bitmap;
2052
Chris Masonfa9c0d792009-04-03 09:47:43 -04002053 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2054 node = rb_next(&entry->offset_index);
2055 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04002056
2057 bitmap = (entry->bitmap != NULL);
2058 if (!bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08002059 try_merge_free_space(ctl, entry, false);
2060 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002061 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002062 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002063 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002064
Chris Masonfa9c0d792009-04-03 09:47:43 -04002065out:
2066 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002067 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002068 return 0;
2069}
2070
Eric Sandeen48a3b632013-04-25 20:41:01 +00002071static void __btrfs_remove_free_space_cache_locked(
2072 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002073{
2074 struct btrfs_free_space *info;
2075 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002076
Li Zefan581bb052011-04-20 10:06:11 +08002077 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2078 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002079 if (!info->bitmap) {
2080 unlink_free_space(ctl, info);
2081 kmem_cache_free(btrfs_free_space_cachep, info);
2082 } else {
2083 free_bitmap(ctl, info);
2084 }
Li Zefan581bb052011-04-20 10:06:11 +08002085 if (need_resched()) {
2086 spin_unlock(&ctl->tree_lock);
2087 cond_resched();
2088 spin_lock(&ctl->tree_lock);
2089 }
2090 }
Chris Mason09655372011-05-21 09:27:38 -04002091}
2092
2093void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2094{
2095 spin_lock(&ctl->tree_lock);
2096 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002097 spin_unlock(&ctl->tree_lock);
2098}
2099
Josef Bacik0f9dd462008-09-23 13:14:11 -04002100void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2101{
Li Zefan34d52cb2011-03-29 13:46:06 +08002102 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002103 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002104 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002105
Li Zefan34d52cb2011-03-29 13:46:06 +08002106 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002107 while ((head = block_group->cluster_list.next) !=
2108 &block_group->cluster_list) {
2109 cluster = list_entry(head, struct btrfs_free_cluster,
2110 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002111
2112 WARN_ON(cluster->block_group != block_group);
2113 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04002114 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002115 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002116 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08002117 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002118 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002119 }
Chris Mason09655372011-05-21 09:27:38 -04002120 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002121 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002122
Josef Bacik0f9dd462008-09-23 13:14:11 -04002123}
2124
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002125u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
2126 u64 offset, u64 bytes, u64 empty_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002127{
Li Zefan34d52cb2011-03-29 13:46:06 +08002128 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002129 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002130 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002131 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002132 u64 align_gap = 0;
2133 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002134
Li Zefan34d52cb2011-03-29 13:46:06 +08002135 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002136 entry = find_free_space(ctl, &offset, &bytes_search,
2137 block_group->full_stripe_len);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002138 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002139 goto out;
2140
2141 ret = offset;
2142 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002143 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002144 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002145 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002146 } else {
David Woodhouse53b381b2013-01-29 18:40:14 -05002147
Li Zefan34d52cb2011-03-29 13:46:06 +08002148 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002149 align_gap_len = offset - entry->offset;
2150 align_gap = entry->offset;
2151
2152 entry->offset = offset + bytes;
2153 WARN_ON(entry->bytes < bytes + align_gap_len);
2154
2155 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002156 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002157 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002158 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002159 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002160 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002161
Josef Bacik96303082009-07-13 21:29:25 -04002162out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002163 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002164
David Woodhouse53b381b2013-01-29 18:40:14 -05002165 if (align_gap_len)
2166 __btrfs_add_free_space(ctl, align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002167 return ret;
2168}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002169
2170/*
2171 * given a cluster, put all of its extents back into the free space
2172 * cache. If a block group is passed, this function will only free
2173 * a cluster that belongs to the passed block group.
2174 *
2175 * Otherwise, it'll get a reference on the block group pointed to by the
2176 * cluster and remove the cluster from it.
2177 */
2178int btrfs_return_cluster_to_free_space(
2179 struct btrfs_block_group_cache *block_group,
2180 struct btrfs_free_cluster *cluster)
2181{
Li Zefan34d52cb2011-03-29 13:46:06 +08002182 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002183 int ret;
2184
2185 /* first, get a safe pointer to the block group */
2186 spin_lock(&cluster->lock);
2187 if (!block_group) {
2188 block_group = cluster->block_group;
2189 if (!block_group) {
2190 spin_unlock(&cluster->lock);
2191 return 0;
2192 }
2193 } else if (cluster->block_group != block_group) {
2194 /* someone else has already freed it don't redo their work */
2195 spin_unlock(&cluster->lock);
2196 return 0;
2197 }
2198 atomic_inc(&block_group->count);
2199 spin_unlock(&cluster->lock);
2200
Li Zefan34d52cb2011-03-29 13:46:06 +08002201 ctl = block_group->free_space_ctl;
2202
Chris Masonfa9c0d792009-04-03 09:47:43 -04002203 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002204 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002205 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002206 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002207
2208 /* finally drop our ref */
2209 btrfs_put_block_group(block_group);
2210 return ret;
2211}
2212
Josef Bacik96303082009-07-13 21:29:25 -04002213static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2214 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002215 struct btrfs_free_space *entry,
Josef Bacik96303082009-07-13 21:29:25 -04002216 u64 bytes, u64 min_start)
2217{
Li Zefan34d52cb2011-03-29 13:46:06 +08002218 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002219 int err;
2220 u64 search_start = cluster->window_start;
2221 u64 search_bytes = bytes;
2222 u64 ret = 0;
2223
Josef Bacik96303082009-07-13 21:29:25 -04002224 search_start = min_start;
2225 search_bytes = bytes;
2226
Li Zefan34d52cb2011-03-29 13:46:06 +08002227 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002228 if (err)
Josef Bacik4e69b592011-03-21 10:11:24 -04002229 return 0;
Josef Bacik96303082009-07-13 21:29:25 -04002230
2231 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002232 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002233
2234 return ret;
2235}
2236
Chris Masonfa9c0d792009-04-03 09:47:43 -04002237/*
2238 * given a cluster, try to allocate 'bytes' from it, returns 0
2239 * if it couldn't find anything suitably large, or a logical disk offset
2240 * if things worked out
2241 */
2242u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2243 struct btrfs_free_cluster *cluster, u64 bytes,
2244 u64 min_start)
2245{
Li Zefan34d52cb2011-03-29 13:46:06 +08002246 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002247 struct btrfs_free_space *entry = NULL;
2248 struct rb_node *node;
2249 u64 ret = 0;
2250
2251 spin_lock(&cluster->lock);
2252 if (bytes > cluster->max_size)
2253 goto out;
2254
2255 if (cluster->block_group != block_group)
2256 goto out;
2257
2258 node = rb_first(&cluster->root);
2259 if (!node)
2260 goto out;
2261
2262 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002263 while(1) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002264 if (entry->bytes < bytes ||
2265 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002266 node = rb_next(&entry->offset_index);
2267 if (!node)
2268 break;
2269 entry = rb_entry(node, struct btrfs_free_space,
2270 offset_index);
2271 continue;
2272 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002273
Josef Bacik4e69b592011-03-21 10:11:24 -04002274 if (entry->bitmap) {
2275 ret = btrfs_alloc_from_bitmap(block_group,
2276 cluster, entry, bytes,
Josef Bacik0b4a9d22012-01-26 15:01:11 -05002277 cluster->window_start);
Josef Bacik4e69b592011-03-21 10:11:24 -04002278 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002279 node = rb_next(&entry->offset_index);
2280 if (!node)
2281 break;
2282 entry = rb_entry(node, struct btrfs_free_space,
2283 offset_index);
2284 continue;
2285 }
Josef Bacik9b230622012-01-26 15:01:12 -05002286 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002287 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002288 ret = entry->offset;
2289
2290 entry->offset += bytes;
2291 entry->bytes -= bytes;
2292 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002293
Li Zefan5e71b5d2010-11-09 14:55:34 +08002294 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002295 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002296 break;
2297 }
2298out:
2299 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002300
Li Zefan5e71b5d2010-11-09 14:55:34 +08002301 if (!ret)
2302 return 0;
2303
Li Zefan34d52cb2011-03-29 13:46:06 +08002304 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002305
Li Zefan34d52cb2011-03-29 13:46:06 +08002306 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002307 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002308 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002309 if (entry->bitmap) {
2310 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002311 ctl->total_bitmaps--;
2312 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002313 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002314 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002315 }
2316
Li Zefan34d52cb2011-03-29 13:46:06 +08002317 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002318
Chris Masonfa9c0d792009-04-03 09:47:43 -04002319 return ret;
2320}
2321
Josef Bacik96303082009-07-13 21:29:25 -04002322static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2323 struct btrfs_free_space *entry,
2324 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002325 u64 offset, u64 bytes,
2326 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002327{
Li Zefan34d52cb2011-03-29 13:46:06 +08002328 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002329 unsigned long next_zero;
2330 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002331 unsigned long want_bits;
2332 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002333 unsigned long found_bits;
2334 unsigned long start = 0;
2335 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002336 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002337
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002338 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002339 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002340 want_bits = bytes_to_bits(bytes, ctl->unit);
2341 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002342
2343again:
2344 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002345 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002346 next_zero = find_next_zero_bit(entry->bitmap,
2347 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002348 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002349 found_bits = next_zero - i;
2350 break;
2351 }
2352 i = next_zero;
2353 }
2354
2355 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002356 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002357
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002358 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002359 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002360 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002361 }
2362
2363 total_found += found_bits;
2364
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002365 if (cluster->max_size < found_bits * ctl->unit)
2366 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002367
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002368 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2369 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002370 goto again;
2371 }
2372
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002373 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002374 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002375 ret = tree_insert_offset(&cluster->root, entry->offset,
2376 &entry->offset_index, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002377 BUG_ON(ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002378
Josef Bacik3f7de032011-11-10 08:29:20 -05002379 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002380 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002381 return 0;
2382}
2383
Chris Masonfa9c0d792009-04-03 09:47:43 -04002384/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002385 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002386 * Try to find a cluster with at least bytes total bytes, at least one
2387 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002388 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002389static noinline int
2390setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2391 struct btrfs_free_cluster *cluster,
2392 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002393 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002394{
Li Zefan34d52cb2011-03-29 13:46:06 +08002395 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002396 struct btrfs_free_space *first = NULL;
2397 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002398 struct btrfs_free_space *last;
2399 struct rb_node *node;
2400 u64 window_start;
2401 u64 window_free;
2402 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002403 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002404
Li Zefan34d52cb2011-03-29 13:46:06 +08002405 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002406 if (!entry)
2407 return -ENOSPC;
2408
2409 /*
2410 * We don't want bitmaps, so just move along until we find a normal
2411 * extent entry.
2412 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002413 while (entry->bitmap || entry->bytes < min_bytes) {
2414 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002415 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002416 node = rb_next(&entry->offset_index);
2417 if (!node)
2418 return -ENOSPC;
2419 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2420 }
2421
2422 window_start = entry->offset;
2423 window_free = entry->bytes;
2424 max_extent = entry->bytes;
2425 first = entry;
2426 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002427
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002428 for (node = rb_next(&entry->offset_index); node;
2429 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002430 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2431
Josef Bacik86d4a772011-05-25 13:03:16 -04002432 if (entry->bitmap) {
2433 if (list_empty(&entry->list))
2434 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002435 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002436 }
2437
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002438 if (entry->bytes < min_bytes)
2439 continue;
2440
2441 last = entry;
2442 window_free += entry->bytes;
2443 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002444 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002445 }
2446
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002447 if (window_free < bytes || max_extent < cont1_bytes)
2448 return -ENOSPC;
2449
Josef Bacik4e69b592011-03-21 10:11:24 -04002450 cluster->window_start = first->offset;
2451
2452 node = &first->offset_index;
2453
2454 /*
2455 * now we've found our entries, pull them out of the free space
2456 * cache and put them into the cluster rbtree
2457 */
2458 do {
2459 int ret;
2460
2461 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2462 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002463 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002464 continue;
2465
Li Zefan34d52cb2011-03-29 13:46:06 +08002466 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002467 ret = tree_insert_offset(&cluster->root, entry->offset,
2468 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002469 total_size += entry->bytes;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002470 BUG_ON(ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002471 } while (node && entry != last);
2472
2473 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002474 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002475 return 0;
2476}
2477
2478/*
2479 * This specifically looks for bitmaps that may work in the cluster, we assume
2480 * that we have already failed to find extents that will work.
2481 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002482static noinline int
2483setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2484 struct btrfs_free_cluster *cluster,
2485 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002486 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002487{
Li Zefan34d52cb2011-03-29 13:46:06 +08002488 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002489 struct btrfs_free_space *entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002490 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002491 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002492
Li Zefan34d52cb2011-03-29 13:46:06 +08002493 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002494 return -ENOSPC;
2495
Josef Bacik86d4a772011-05-25 13:03:16 -04002496 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05002497 * The bitmap that covers offset won't be in the list unless offset
2498 * is just its start offset.
2499 */
2500 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
2501 if (entry->offset != bitmap_offset) {
2502 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
2503 if (entry && list_empty(&entry->list))
2504 list_add(&entry->list, bitmaps);
2505 }
2506
Josef Bacik86d4a772011-05-25 13:03:16 -04002507 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05002508 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04002509 continue;
2510 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002511 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002512 if (!ret)
2513 return 0;
2514 }
2515
2516 /*
Li Zefan52621cb2011-11-20 07:33:38 -05002517 * The bitmaps list has all the bitmaps that record free space
2518 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04002519 */
Li Zefan52621cb2011-11-20 07:33:38 -05002520 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04002521}
2522
2523/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002524 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002525 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04002526 * We might not find them all in one contiguous area.
2527 *
2528 * returns zero and sets up cluster if things worked out, otherwise
2529 * it returns -enospc
2530 */
2531int btrfs_find_space_cluster(struct btrfs_trans_handle *trans,
Chris Mason451d7582009-06-09 20:28:34 -04002532 struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002533 struct btrfs_block_group_cache *block_group,
2534 struct btrfs_free_cluster *cluster,
2535 u64 offset, u64 bytes, u64 empty_size)
2536{
Li Zefan34d52cb2011-03-29 13:46:06 +08002537 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002538 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05002539 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002540 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002541 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002542 int ret;
2543
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002544 /*
2545 * Choose the minimum extent size we'll require for this
2546 * cluster. For SSD_SPREAD, don't allow any fragmentation.
2547 * For metadata, allow allocates with smaller extents. For
2548 * data, keep it dense.
2549 */
Chris Mason451d7582009-06-09 20:28:34 -04002550 if (btrfs_test_opt(root, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002551 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04002552 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002553 cont1_bytes = bytes;
2554 min_bytes = block_group->sectorsize;
2555 } else {
2556 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
2557 min_bytes = block_group->sectorsize;
2558 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002559
Li Zefan34d52cb2011-03-29 13:46:06 +08002560 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002561
2562 /*
2563 * If we know we don't have enough space to make a cluster don't even
2564 * bother doing all the work to try and find one.
2565 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002566 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002567 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002568 return -ENOSPC;
2569 }
2570
Chris Masonfa9c0d792009-04-03 09:47:43 -04002571 spin_lock(&cluster->lock);
2572
2573 /* someone already found a cluster, hooray */
2574 if (cluster->block_group) {
2575 ret = 0;
2576 goto out;
2577 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002578
Josef Bacik3f7de032011-11-10 08:29:20 -05002579 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
2580 min_bytes);
2581
2582 INIT_LIST_HEAD(&bitmaps);
Josef Bacik86d4a772011-05-25 13:03:16 -04002583 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002584 bytes + empty_size,
2585 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002586 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002587 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002588 offset, bytes + empty_size,
2589 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002590
2591 /* Clear our temporary list */
2592 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2593 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002594
2595 if (!ret) {
2596 atomic_inc(&block_group->count);
2597 list_add_tail(&cluster->block_group_list,
2598 &block_group->cluster_list);
2599 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05002600 } else {
2601 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002602 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002603out:
2604 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002605 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002606
2607 return ret;
2608}
2609
2610/*
2611 * simple code to zero out a cluster
2612 */
2613void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2614{
2615 spin_lock_init(&cluster->lock);
2616 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002617 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002618 cluster->max_size = 0;
2619 INIT_LIST_HEAD(&cluster->block_group_list);
2620 cluster->block_group = NULL;
2621}
2622
Li Zefan7fe1e642011-12-29 14:47:27 +08002623static int do_trimming(struct btrfs_block_group_cache *block_group,
2624 u64 *total_trimmed, u64 start, u64 bytes,
2625 u64 reserved_start, u64 reserved_bytes)
2626{
2627 struct btrfs_space_info *space_info = block_group->space_info;
2628 struct btrfs_fs_info *fs_info = block_group->fs_info;
2629 int ret;
2630 int update = 0;
2631 u64 trimmed = 0;
2632
2633 spin_lock(&space_info->lock);
2634 spin_lock(&block_group->lock);
2635 if (!block_group->ro) {
2636 block_group->reserved += reserved_bytes;
2637 space_info->bytes_reserved += reserved_bytes;
2638 update = 1;
2639 }
2640 spin_unlock(&block_group->lock);
2641 spin_unlock(&space_info->lock);
2642
2643 ret = btrfs_error_discard_extent(fs_info->extent_root,
2644 start, bytes, &trimmed);
2645 if (!ret)
2646 *total_trimmed += trimmed;
2647
2648 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
2649
2650 if (update) {
2651 spin_lock(&space_info->lock);
2652 spin_lock(&block_group->lock);
2653 if (block_group->ro)
2654 space_info->bytes_readonly += reserved_bytes;
2655 block_group->reserved -= reserved_bytes;
2656 space_info->bytes_reserved -= reserved_bytes;
2657 spin_unlock(&space_info->lock);
2658 spin_unlock(&block_group->lock);
2659 }
2660
2661 return ret;
2662}
2663
2664static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
2665 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00002666{
Li Zefan34d52cb2011-03-29 13:46:06 +08002667 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08002668 struct btrfs_free_space *entry;
2669 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00002670 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08002671 u64 extent_start;
2672 u64 extent_bytes;
2673 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002674
2675 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002676 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002677
Li Zefan34d52cb2011-03-29 13:46:06 +08002678 if (ctl->free_space < minlen) {
2679 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002680 break;
2681 }
2682
Li Zefan34d52cb2011-03-29 13:46:06 +08002683 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08002684 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002685 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002686 break;
2687 }
2688
Li Zefan7fe1e642011-12-29 14:47:27 +08002689 /* skip bitmaps */
2690 while (entry->bitmap) {
2691 node = rb_next(&entry->offset_index);
2692 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002693 spin_unlock(&ctl->tree_lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08002694 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00002695 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002696 entry = rb_entry(node, struct btrfs_free_space,
2697 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00002698 }
2699
Li Zefan7fe1e642011-12-29 14:47:27 +08002700 if (entry->offset >= end) {
2701 spin_unlock(&ctl->tree_lock);
2702 break;
2703 }
2704
2705 extent_start = entry->offset;
2706 extent_bytes = entry->bytes;
2707 start = max(start, extent_start);
2708 bytes = min(extent_start + extent_bytes, end) - start;
2709 if (bytes < minlen) {
2710 spin_unlock(&ctl->tree_lock);
2711 goto next;
2712 }
2713
2714 unlink_free_space(ctl, entry);
2715 kmem_cache_free(btrfs_free_space_cachep, entry);
2716
Li Zefan34d52cb2011-03-29 13:46:06 +08002717 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002718
Li Zefan7fe1e642011-12-29 14:47:27 +08002719 ret = do_trimming(block_group, total_trimmed, start, bytes,
2720 extent_start, extent_bytes);
2721 if (ret)
2722 break;
2723next:
Li Dongyangf7039b12011-03-24 10:24:28 +00002724 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002725
2726 if (fatal_signal_pending(current)) {
2727 ret = -ERESTARTSYS;
2728 break;
2729 }
2730
2731 cond_resched();
2732 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002733out:
2734 return ret;
2735}
2736
2737static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
2738 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
2739{
2740 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
2741 struct btrfs_free_space *entry;
2742 int ret = 0;
2743 int ret2;
2744 u64 bytes;
2745 u64 offset = offset_to_bitmap(ctl, start);
2746
2747 while (offset < end) {
2748 bool next_bitmap = false;
2749
2750 spin_lock(&ctl->tree_lock);
2751
2752 if (ctl->free_space < minlen) {
2753 spin_unlock(&ctl->tree_lock);
2754 break;
2755 }
2756
2757 entry = tree_search_offset(ctl, offset, 1, 0);
2758 if (!entry) {
2759 spin_unlock(&ctl->tree_lock);
2760 next_bitmap = true;
2761 goto next;
2762 }
2763
2764 bytes = minlen;
2765 ret2 = search_bitmap(ctl, entry, &start, &bytes);
2766 if (ret2 || start >= end) {
2767 spin_unlock(&ctl->tree_lock);
2768 next_bitmap = true;
2769 goto next;
2770 }
2771
2772 bytes = min(bytes, end - start);
2773 if (bytes < minlen) {
2774 spin_unlock(&ctl->tree_lock);
2775 goto next;
2776 }
2777
2778 bitmap_clear_bits(ctl, entry, start, bytes);
2779 if (entry->bytes == 0)
2780 free_bitmap(ctl, entry);
2781
2782 spin_unlock(&ctl->tree_lock);
2783
2784 ret = do_trimming(block_group, total_trimmed, start, bytes,
2785 start, bytes);
2786 if (ret)
2787 break;
2788next:
2789 if (next_bitmap) {
2790 offset += BITS_PER_BITMAP * ctl->unit;
2791 } else {
2792 start += bytes;
2793 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
2794 offset += BITS_PER_BITMAP * ctl->unit;
2795 }
2796
2797 if (fatal_signal_pending(current)) {
2798 ret = -ERESTARTSYS;
2799 break;
2800 }
2801
2802 cond_resched();
2803 }
2804
2805 return ret;
2806}
2807
2808int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2809 u64 *trimmed, u64 start, u64 end, u64 minlen)
2810{
2811 int ret;
2812
2813 *trimmed = 0;
2814
2815 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
2816 if (ret)
2817 return ret;
2818
2819 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
Li Dongyangf7039b12011-03-24 10:24:28 +00002820
2821 return ret;
2822}
Li Zefan581bb052011-04-20 10:06:11 +08002823
2824/*
2825 * Find the left-most item in the cache tree, and then return the
2826 * smallest inode number in the item.
2827 *
2828 * Note: the returned inode number may not be the smallest one in
2829 * the tree, if the left-most item is a bitmap.
2830 */
2831u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2832{
2833 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2834 struct btrfs_free_space *entry = NULL;
2835 u64 ino = 0;
2836
2837 spin_lock(&ctl->tree_lock);
2838
2839 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2840 goto out;
2841
2842 entry = rb_entry(rb_first(&ctl->free_space_offset),
2843 struct btrfs_free_space, offset_index);
2844
2845 if (!entry->bitmap) {
2846 ino = entry->offset;
2847
2848 unlink_free_space(ctl, entry);
2849 entry->offset++;
2850 entry->bytes--;
2851 if (!entry->bytes)
2852 kmem_cache_free(btrfs_free_space_cachep, entry);
2853 else
2854 link_free_space(ctl, entry);
2855 } else {
2856 u64 offset = 0;
2857 u64 count = 1;
2858 int ret;
2859
2860 ret = search_bitmap(ctl, entry, &offset, &count);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002861 /* Logic error; Should be empty if it can't find anything */
Li Zefan581bb052011-04-20 10:06:11 +08002862 BUG_ON(ret);
2863
2864 ino = offset;
2865 bitmap_clear_bits(ctl, entry, offset, 1);
2866 if (entry->bytes == 0)
2867 free_bitmap(ctl, entry);
2868 }
2869out:
2870 spin_unlock(&ctl->tree_lock);
2871
2872 return ino;
2873}
Li Zefan82d59022011-04-20 10:33:24 +08002874
2875struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2876 struct btrfs_path *path)
2877{
2878 struct inode *inode = NULL;
2879
2880 spin_lock(&root->cache_lock);
2881 if (root->cache_inode)
2882 inode = igrab(root->cache_inode);
2883 spin_unlock(&root->cache_lock);
2884 if (inode)
2885 return inode;
2886
2887 inode = __lookup_free_space_inode(root, path, 0);
2888 if (IS_ERR(inode))
2889 return inode;
2890
2891 spin_lock(&root->cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02002892 if (!btrfs_fs_closing(root->fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002893 root->cache_inode = igrab(inode);
2894 spin_unlock(&root->cache_lock);
2895
2896 return inode;
2897}
2898
2899int create_free_ino_inode(struct btrfs_root *root,
2900 struct btrfs_trans_handle *trans,
2901 struct btrfs_path *path)
2902{
2903 return __create_free_space_inode(root, trans, path,
2904 BTRFS_FREE_INO_OBJECTID, 0);
2905}
2906
2907int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2908{
2909 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2910 struct btrfs_path *path;
2911 struct inode *inode;
2912 int ret = 0;
2913 u64 root_gen = btrfs_root_generation(&root->root_item);
2914
Chris Mason4b9465c2011-06-03 09:36:29 -04002915 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2916 return 0;
2917
Li Zefan82d59022011-04-20 10:33:24 +08002918 /*
2919 * If we're unmounting then just return, since this does a search on the
2920 * normal root and not the commit root and we could deadlock.
2921 */
David Sterba7841cb22011-05-31 18:07:27 +02002922 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002923 return 0;
2924
2925 path = btrfs_alloc_path();
2926 if (!path)
2927 return 0;
2928
2929 inode = lookup_free_ino_inode(root, path);
2930 if (IS_ERR(inode))
2931 goto out;
2932
2933 if (root_gen != BTRFS_I(inode)->generation)
2934 goto out_put;
2935
2936 ret = __load_free_space_cache(root, inode, ctl, path, 0);
2937
2938 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002939 btrfs_err(fs_info,
2940 "failed to load free ino cache for root %llu",
2941 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08002942out_put:
2943 iput(inode);
2944out:
2945 btrfs_free_path(path);
2946 return ret;
2947}
2948
2949int btrfs_write_out_ino_cache(struct btrfs_root *root,
2950 struct btrfs_trans_handle *trans,
2951 struct btrfs_path *path)
2952{
2953 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2954 struct inode *inode;
2955 int ret;
2956
Chris Mason4b9465c2011-06-03 09:36:29 -04002957 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2958 return 0;
2959
Li Zefan82d59022011-04-20 10:33:24 +08002960 inode = lookup_free_ino_inode(root, path);
2961 if (IS_ERR(inode))
2962 return 0;
2963
2964 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
Josef Bacikc09544e2011-08-30 10:19:10 -04002965 if (ret) {
2966 btrfs_delalloc_release_metadata(inode, inode->i_size);
2967#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002968 btrfs_err(root->fs_info,
2969 "failed to write free ino cache for root %llu",
2970 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04002971#endif
2972 }
Li Zefan82d59022011-04-20 10:33:24 +08002973
2974 iput(inode);
2975 return ret;
2976}
Josef Bacik74255aa2013-03-15 09:47:08 -04002977
2978#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
2979static struct btrfs_block_group_cache *init_test_block_group(void)
2980{
2981 struct btrfs_block_group_cache *cache;
2982
2983 cache = kzalloc(sizeof(*cache), GFP_NOFS);
2984 if (!cache)
2985 return NULL;
2986 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
2987 GFP_NOFS);
2988 if (!cache->free_space_ctl) {
2989 kfree(cache);
2990 return NULL;
2991 }
2992
2993 cache->key.objectid = 0;
2994 cache->key.offset = 1024 * 1024 * 1024;
2995 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
2996 cache->sectorsize = 4096;
2997
2998 spin_lock_init(&cache->lock);
2999 INIT_LIST_HEAD(&cache->list);
3000 INIT_LIST_HEAD(&cache->cluster_list);
3001 INIT_LIST_HEAD(&cache->new_bg_list);
3002
3003 btrfs_init_free_space_ctl(cache);
3004
3005 return cache;
3006}
3007
3008/*
3009 * Checks to see if the given range is in the free space cache. This is really
3010 * just used to check the absence of space, so if there is free space in the
3011 * range at all we will return 1.
3012 */
3013static int check_exists(struct btrfs_block_group_cache *cache, u64 offset,
3014 u64 bytes)
3015{
3016 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3017 struct btrfs_free_space *info;
3018 int ret = 0;
3019
3020 spin_lock(&ctl->tree_lock);
3021 info = tree_search_offset(ctl, offset, 0, 0);
3022 if (!info) {
3023 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3024 1, 0);
3025 if (!info)
3026 goto out;
3027 }
3028
3029have_info:
3030 if (info->bitmap) {
3031 u64 bit_off, bit_bytes;
3032 struct rb_node *n;
3033 struct btrfs_free_space *tmp;
3034
3035 bit_off = offset;
3036 bit_bytes = ctl->unit;
3037 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes);
3038 if (!ret) {
3039 if (bit_off == offset) {
3040 ret = 1;
3041 goto out;
3042 } else if (bit_off > offset &&
3043 offset + bytes > bit_off) {
3044 ret = 1;
3045 goto out;
3046 }
3047 }
3048
3049 n = rb_prev(&info->offset_index);
3050 while (n) {
3051 tmp = rb_entry(n, struct btrfs_free_space,
3052 offset_index);
3053 if (tmp->offset + tmp->bytes < offset)
3054 break;
3055 if (offset + bytes < tmp->offset) {
3056 n = rb_prev(&info->offset_index);
3057 continue;
3058 }
3059 info = tmp;
3060 goto have_info;
3061 }
3062
3063 n = rb_next(&info->offset_index);
3064 while (n) {
3065 tmp = rb_entry(n, struct btrfs_free_space,
3066 offset_index);
3067 if (offset + bytes < tmp->offset)
3068 break;
3069 if (tmp->offset + tmp->bytes < offset) {
3070 n = rb_next(&info->offset_index);
3071 continue;
3072 }
3073 info = tmp;
3074 goto have_info;
3075 }
3076
3077 goto out;
3078 }
3079
3080 if (info->offset == offset) {
3081 ret = 1;
3082 goto out;
3083 }
3084
3085 if (offset > info->offset && offset < info->offset + info->bytes)
3086 ret = 1;
3087out:
3088 spin_unlock(&ctl->tree_lock);
3089 return ret;
3090}
3091
3092/*
3093 * Use this if you need to make a bitmap or extent entry specifically, it
3094 * doesn't do any of the merging that add_free_space does, this acts a lot like
3095 * how the free space cache loading stuff works, so you can get really weird
3096 * configurations.
3097 */
3098static int add_free_space_entry(struct btrfs_block_group_cache *cache,
3099 u64 offset, u64 bytes, bool bitmap)
3100{
3101 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3102 struct btrfs_free_space *info = NULL, *bitmap_info;
3103 void *map = NULL;
3104 u64 bytes_added;
3105 int ret;
3106
3107again:
3108 if (!info) {
3109 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3110 if (!info)
3111 return -ENOMEM;
3112 }
3113
3114 if (!bitmap) {
3115 spin_lock(&ctl->tree_lock);
3116 info->offset = offset;
3117 info->bytes = bytes;
3118 ret = link_free_space(ctl, info);
3119 spin_unlock(&ctl->tree_lock);
3120 if (ret)
3121 kmem_cache_free(btrfs_free_space_cachep, info);
3122 return ret;
3123 }
3124
3125 if (!map) {
3126 map = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
3127 if (!map) {
3128 kmem_cache_free(btrfs_free_space_cachep, info);
3129 return -ENOMEM;
3130 }
3131 }
3132
3133 spin_lock(&ctl->tree_lock);
3134 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3135 1, 0);
3136 if (!bitmap_info) {
3137 info->bitmap = map;
3138 map = NULL;
3139 add_new_bitmap(ctl, info, offset);
3140 bitmap_info = info;
3141 }
3142
3143 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
3144 bytes -= bytes_added;
3145 offset += bytes_added;
3146 spin_unlock(&ctl->tree_lock);
3147
3148 if (bytes)
3149 goto again;
3150
3151 if (map)
3152 kfree(map);
3153 return 0;
3154}
3155
3156/*
3157 * This test just does basic sanity checking, making sure we can add an exten
3158 * entry and remove space from either end and the middle, and make sure we can
3159 * remove space that covers adjacent extent entries.
3160 */
3161static int test_extents(struct btrfs_block_group_cache *cache)
3162{
3163 int ret = 0;
3164
3165 printk(KERN_ERR "Running extent only tests\n");
3166
3167 /* First just make sure we can remove an entire entry */
3168 ret = btrfs_add_free_space(cache, 0, 4 * 1024 * 1024);
3169 if (ret) {
3170 printk(KERN_ERR "Error adding initial extents %d\n", ret);
3171 return ret;
3172 }
3173
3174 ret = btrfs_remove_free_space(cache, 0, 4 * 1024 * 1024);
3175 if (ret) {
3176 printk(KERN_ERR "Error removing extent %d\n", ret);
3177 return ret;
3178 }
3179
3180 if (check_exists(cache, 0, 4 * 1024 * 1024)) {
3181 printk(KERN_ERR "Full remove left some lingering space\n");
3182 return -1;
3183 }
3184
3185 /* Ok edge and middle cases now */
3186 ret = btrfs_add_free_space(cache, 0, 4 * 1024 * 1024);
3187 if (ret) {
3188 printk(KERN_ERR "Error adding half extent %d\n", ret);
3189 return ret;
3190 }
3191
3192 ret = btrfs_remove_free_space(cache, 3 * 1024 * 1024, 1 * 1024 * 1024);
3193 if (ret) {
3194 printk(KERN_ERR "Error removing tail end %d\n", ret);
3195 return ret;
3196 }
3197
3198 ret = btrfs_remove_free_space(cache, 0, 1 * 1024 * 1024);
3199 if (ret) {
3200 printk(KERN_ERR "Error removing front end %d\n", ret);
3201 return ret;
3202 }
3203
3204 ret = btrfs_remove_free_space(cache, 2 * 1024 * 1024, 4096);
3205 if (ret) {
3206 printk(KERN_ERR "Error removing middle peice %d\n", ret);
3207 return ret;
3208 }
3209
3210 if (check_exists(cache, 0, 1 * 1024 * 1024)) {
3211 printk(KERN_ERR "Still have space at the front\n");
3212 return -1;
3213 }
3214
3215 if (check_exists(cache, 2 * 1024 * 1024, 4096)) {
3216 printk(KERN_ERR "Still have space in the middle\n");
3217 return -1;
3218 }
3219
3220 if (check_exists(cache, 3 * 1024 * 1024, 1 * 1024 * 1024)) {
3221 printk(KERN_ERR "Still have space at the end\n");
3222 return -1;
3223 }
3224
3225 /* Cleanup */
3226 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3227
3228 return 0;
3229}
3230
3231static int test_bitmaps(struct btrfs_block_group_cache *cache)
3232{
3233 u64 next_bitmap_offset;
3234 int ret;
3235
3236 printk(KERN_ERR "Running bitmap only tests\n");
3237
3238 ret = add_free_space_entry(cache, 0, 4 * 1024 * 1024, 1);
3239 if (ret) {
3240 printk(KERN_ERR "Couldn't create a bitmap entry %d\n", ret);
3241 return ret;
3242 }
3243
3244 ret = btrfs_remove_free_space(cache, 0, 4 * 1024 * 1024);
3245 if (ret) {
3246 printk(KERN_ERR "Error removing bitmap full range %d\n", ret);
3247 return ret;
3248 }
3249
3250 if (check_exists(cache, 0, 4 * 1024 * 1024)) {
3251 printk(KERN_ERR "Left some space in bitmap\n");
3252 return -1;
3253 }
3254
3255 ret = add_free_space_entry(cache, 0, 4 * 1024 * 1024, 1);
3256 if (ret) {
3257 printk(KERN_ERR "Couldn't add to our bitmap entry %d\n", ret);
3258 return ret;
3259 }
3260
3261 ret = btrfs_remove_free_space(cache, 1 * 1024 * 1024, 2 * 1024 * 1024);
3262 if (ret) {
3263 printk(KERN_ERR "Couldn't remove middle chunk %d\n", ret);
3264 return ret;
3265 }
3266
3267 /*
3268 * The first bitmap we have starts at offset 0 so the next one is just
3269 * at the end of the first bitmap.
3270 */
3271 next_bitmap_offset = (u64)(BITS_PER_BITMAP * 4096);
3272
3273 /* Test a bit straddling two bitmaps */
3274 ret = add_free_space_entry(cache, next_bitmap_offset -
3275 (2 * 1024 * 1024), 4 * 1024 * 1024, 1);
3276 if (ret) {
3277 printk(KERN_ERR "Couldn't add space that straddles two bitmaps"
3278 " %d\n", ret);
3279 return ret;
3280 }
3281
3282 ret = btrfs_remove_free_space(cache, next_bitmap_offset -
3283 (1 * 1024 * 1024), 2 * 1024 * 1024);
3284 if (ret) {
3285 printk(KERN_ERR "Couldn't remove overlapping space %d\n", ret);
3286 return ret;
3287 }
3288
3289 if (check_exists(cache, next_bitmap_offset - (1 * 1024 * 1024),
3290 2 * 1024 * 1024)) {
3291 printk(KERN_ERR "Left some space when removing overlapping\n");
3292 return -1;
3293 }
3294
3295 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3296
3297 return 0;
3298}
3299
3300/* This is the high grade jackassery */
3301static int test_bitmaps_and_extents(struct btrfs_block_group_cache *cache)
3302{
3303 u64 bitmap_offset = (u64)(BITS_PER_BITMAP * 4096);
3304 int ret;
3305
3306 printk(KERN_ERR "Running bitmap and extent tests\n");
3307
3308 /*
3309 * First let's do something simple, an extent at the same offset as the
3310 * bitmap, but the free space completely in the extent and then
3311 * completely in the bitmap.
3312 */
3313 ret = add_free_space_entry(cache, 4 * 1024 * 1024, 1 * 1024 * 1024, 1);
3314 if (ret) {
3315 printk(KERN_ERR "Couldn't create bitmap entry %d\n", ret);
3316 return ret;
3317 }
3318
3319 ret = add_free_space_entry(cache, 0, 1 * 1024 * 1024, 0);
3320 if (ret) {
3321 printk(KERN_ERR "Couldn't add extent entry %d\n", ret);
3322 return ret;
3323 }
3324
3325 ret = btrfs_remove_free_space(cache, 0, 1 * 1024 * 1024);
3326 if (ret) {
3327 printk(KERN_ERR "Couldn't remove extent entry %d\n", ret);
3328 return ret;
3329 }
3330
3331 if (check_exists(cache, 0, 1 * 1024 * 1024)) {
3332 printk(KERN_ERR "Left remnants after our remove\n");
3333 return -1;
3334 }
3335
3336 /* Now to add back the extent entry and remove from the bitmap */
3337 ret = add_free_space_entry(cache, 0, 1 * 1024 * 1024, 0);
3338 if (ret) {
3339 printk(KERN_ERR "Couldn't re-add extent entry %d\n", ret);
3340 return ret;
3341 }
3342
3343 ret = btrfs_remove_free_space(cache, 4 * 1024 * 1024, 1 * 1024 * 1024);
3344 if (ret) {
3345 printk(KERN_ERR "Couldn't remove from bitmap %d\n", ret);
3346 return ret;
3347 }
3348
3349 if (check_exists(cache, 4 * 1024 * 1024, 1 * 1024 * 1024)) {
3350 printk(KERN_ERR "Left remnants in the bitmap\n");
3351 return -1;
3352 }
3353
3354 /*
3355 * Ok so a little more evil, extent entry and bitmap at the same offset,
3356 * removing an overlapping chunk.
3357 */
3358 ret = add_free_space_entry(cache, 1 * 1024 * 1024, 4 * 1024 * 1024, 1);
3359 if (ret) {
3360 printk(KERN_ERR "Couldn't add to a bitmap %d\n", ret);
3361 return ret;
3362 }
3363
3364 ret = btrfs_remove_free_space(cache, 512 * 1024, 3 * 1024 * 1024);
3365 if (ret) {
3366 printk(KERN_ERR "Couldn't remove overlapping space %d\n", ret);
3367 return ret;
3368 }
3369
3370 if (check_exists(cache, 512 * 1024, 3 * 1024 * 1024)) {
3371 printk(KERN_ERR "Left over peices after removing "
3372 "overlapping\n");
3373 return -1;
3374 }
3375
3376 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3377
3378 /* Now with the extent entry offset into the bitmap */
3379 ret = add_free_space_entry(cache, 4 * 1024 * 1024, 4 * 1024 * 1024, 1);
3380 if (ret) {
3381 printk(KERN_ERR "Couldn't add space to the bitmap %d\n", ret);
3382 return ret;
3383 }
3384
3385 ret = add_free_space_entry(cache, 2 * 1024 * 1024, 2 * 1024 * 1024, 0);
3386 if (ret) {
3387 printk(KERN_ERR "Couldn't add extent to the cache %d\n", ret);
3388 return ret;
3389 }
3390
3391 ret = btrfs_remove_free_space(cache, 3 * 1024 * 1024, 4 * 1024 * 1024);
3392 if (ret) {
3393 printk(KERN_ERR "Problem removing overlapping space %d\n", ret);
3394 return ret;
3395 }
3396
3397 if (check_exists(cache, 3 * 1024 * 1024, 4 * 1024 * 1024)) {
3398 printk(KERN_ERR "Left something behind when removing space");
3399 return -1;
3400 }
3401
3402 /*
3403 * This has blown up in the past, the extent entry starts before the
3404 * bitmap entry, but we're trying to remove an offset that falls
3405 * completely within the bitmap range and is in both the extent entry
3406 * and the bitmap entry, looks like this
3407 *
3408 * [ extent ]
3409 * [ bitmap ]
3410 * [ del ]
3411 */
3412 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3413 ret = add_free_space_entry(cache, bitmap_offset + 4 * 1024 * 1024,
3414 4 * 1024 * 1024, 1);
3415 if (ret) {
3416 printk(KERN_ERR "Couldn't add bitmap %d\n", ret);
3417 return ret;
3418 }
3419
3420 ret = add_free_space_entry(cache, bitmap_offset - 1 * 1024 * 1024,
3421 5 * 1024 * 1024, 0);
3422 if (ret) {
3423 printk(KERN_ERR "Couldn't add extent entry %d\n", ret);
3424 return ret;
3425 }
3426
3427 ret = btrfs_remove_free_space(cache, bitmap_offset + 1 * 1024 * 1024,
3428 5 * 1024 * 1024);
3429 if (ret) {
3430 printk(KERN_ERR "Failed to free our space %d\n", ret);
3431 return ret;
3432 }
3433
3434 if (check_exists(cache, bitmap_offset + 1 * 1024 * 1024,
3435 5 * 1024 * 1024)) {
3436 printk(KERN_ERR "Left stuff over\n");
3437 return -1;
3438 }
3439
3440 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3441
3442 /*
3443 * This blew up before, we have part of the free space in a bitmap and
3444 * then the entirety of the rest of the space in an extent. This used
3445 * to return -EAGAIN back from btrfs_remove_extent, make sure this
3446 * doesn't happen.
3447 */
3448 ret = add_free_space_entry(cache, 1 * 1024 * 1024, 2 * 1024 * 1024, 1);
3449 if (ret) {
3450 printk(KERN_ERR "Couldn't add bitmap entry %d\n", ret);
3451 return ret;
3452 }
3453
3454 ret = add_free_space_entry(cache, 3 * 1024 * 1024, 1 * 1024 * 1024, 0);
3455 if (ret) {
3456 printk(KERN_ERR "Couldn't add extent entry %d\n", ret);
3457 return ret;
3458 }
3459
3460 ret = btrfs_remove_free_space(cache, 1 * 1024 * 1024, 3 * 1024 * 1024);
3461 if (ret) {
3462 printk(KERN_ERR "Error removing bitmap and extent "
3463 "overlapping %d\n", ret);
3464 return ret;
3465 }
3466
3467 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3468 return 0;
3469}
3470
3471void btrfs_test_free_space_cache(void)
3472{
3473 struct btrfs_block_group_cache *cache;
3474
3475 printk(KERN_ERR "Running btrfs free space cache tests\n");
3476
3477 cache = init_test_block_group();
3478 if (!cache) {
3479 printk(KERN_ERR "Couldn't run the tests\n");
3480 return;
3481 }
3482
3483 if (test_extents(cache))
3484 goto out;
3485 if (test_bitmaps(cache))
3486 goto out;
3487 if (test_bitmaps_and_extents(cache))
3488 goto out;
3489out:
3490 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3491 kfree(cache->free_space_ctl);
3492 kfree(cache);
3493 printk(KERN_ERR "Free space cache tests finished\n");
3494}
3495#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */