blob: 256d9597f0cf710501eeac4ec00be1ae3c49cb3b [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
Miao Xie7b61cd92013-05-13 13:55:09 +0000200int btrfs_check_trunc_cache_free_space(struct btrfs_root *root,
201 struct btrfs_block_rsv *rsv)
Josef Bacik0af3d002010-06-21 14:48:16 -0400202{
Josef Bacikc8174312011-11-02 09:29:35 -0400203 u64 needed_bytes;
Miao Xie7b61cd92013-05-13 13:55:09 +0000204 int ret;
Josef Bacikc8174312011-11-02 09:29:35 -0400205
206 /* 1 for slack space, 1 for updating the inode */
207 needed_bytes = btrfs_calc_trunc_metadata_size(root, 1) +
208 btrfs_calc_trans_metadata_size(root, 1);
209
Miao Xie7b61cd92013-05-13 13:55:09 +0000210 spin_lock(&rsv->lock);
211 if (rsv->reserved < needed_bytes)
212 ret = -ENOSPC;
213 else
214 ret = 0;
215 spin_unlock(&rsv->lock);
Wei Yongjun4b286cd2013-05-21 02:39:21 +0000216 return ret;
Miao Xie7b61cd92013-05-13 13:55:09 +0000217}
218
219int btrfs_truncate_free_space_cache(struct btrfs_root *root,
220 struct btrfs_trans_handle *trans,
221 struct btrfs_path *path,
222 struct inode *inode)
223{
Miao Xie7b61cd92013-05-13 13:55:09 +0000224 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -0400225
Josef Bacik0af3d002010-06-21 14:48:16 -0400226 btrfs_i_size_write(inode, 0);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700227 truncate_pagecache(inode, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -0400228
229 /*
230 * We don't need an orphan item because truncating the free space cache
231 * will never be split across transactions.
232 */
233 ret = btrfs_truncate_inode_items(trans, root, inode,
234 0, BTRFS_EXTENT_DATA_KEY);
235 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100236 btrfs_abort_transaction(trans, root, ret);
Josef Bacik0af3d002010-06-21 14:48:16 -0400237 return ret;
238 }
239
Li Zefan82d59022011-04-20 10:33:24 +0800240 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100241 if (ret)
242 btrfs_abort_transaction(trans, root, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400243
Li Zefan82d59022011-04-20 10:33:24 +0800244 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400245}
246
Josef Bacik9d66e232010-08-25 16:54:15 -0400247static int readahead_cache(struct inode *inode)
248{
249 struct file_ra_state *ra;
250 unsigned long last_index;
251
252 ra = kzalloc(sizeof(*ra), GFP_NOFS);
253 if (!ra)
254 return -ENOMEM;
255
256 file_ra_state_init(ra, inode->i_mapping);
257 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
258
259 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
260
261 kfree(ra);
262
263 return 0;
264}
265
Josef Bacika67509c2011-10-05 15:18:58 -0400266struct io_ctl {
267 void *cur, *orig;
268 struct page *page;
269 struct page **pages;
270 struct btrfs_root *root;
271 unsigned long size;
272 int index;
273 int num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400274 unsigned check_crcs:1;
Josef Bacika67509c2011-10-05 15:18:58 -0400275};
276
277static int io_ctl_init(struct io_ctl *io_ctl, struct inode *inode,
278 struct btrfs_root *root)
279{
280 memset(io_ctl, 0, sizeof(struct io_ctl));
281 io_ctl->num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
282 PAGE_CACHE_SHIFT;
283 io_ctl->pages = kzalloc(sizeof(struct page *) * io_ctl->num_pages,
284 GFP_NOFS);
285 if (!io_ctl->pages)
286 return -ENOMEM;
287 io_ctl->root = root;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400288 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
289 io_ctl->check_crcs = 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400290 return 0;
291}
292
293static void io_ctl_free(struct io_ctl *io_ctl)
294{
295 kfree(io_ctl->pages);
296}
297
298static void io_ctl_unmap_page(struct io_ctl *io_ctl)
299{
300 if (io_ctl->cur) {
301 kunmap(io_ctl->page);
302 io_ctl->cur = NULL;
303 io_ctl->orig = NULL;
304 }
305}
306
307static void io_ctl_map_page(struct io_ctl *io_ctl, int clear)
308{
Josef Bacika67509c2011-10-05 15:18:58 -0400309 BUG_ON(io_ctl->index >= io_ctl->num_pages);
310 io_ctl->page = io_ctl->pages[io_ctl->index++];
311 io_ctl->cur = kmap(io_ctl->page);
312 io_ctl->orig = io_ctl->cur;
313 io_ctl->size = PAGE_CACHE_SIZE;
314 if (clear)
315 memset(io_ctl->cur, 0, PAGE_CACHE_SIZE);
316}
317
318static void io_ctl_drop_pages(struct io_ctl *io_ctl)
319{
320 int i;
321
322 io_ctl_unmap_page(io_ctl);
323
324 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800325 if (io_ctl->pages[i]) {
326 ClearPageChecked(io_ctl->pages[i]);
327 unlock_page(io_ctl->pages[i]);
328 page_cache_release(io_ctl->pages[i]);
329 }
Josef Bacika67509c2011-10-05 15:18:58 -0400330 }
331}
332
333static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct inode *inode,
334 int uptodate)
335{
336 struct page *page;
337 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
338 int i;
339
340 for (i = 0; i < io_ctl->num_pages; i++) {
341 page = find_or_create_page(inode->i_mapping, i, mask);
342 if (!page) {
343 io_ctl_drop_pages(io_ctl);
344 return -ENOMEM;
345 }
346 io_ctl->pages[i] = page;
347 if (uptodate && !PageUptodate(page)) {
348 btrfs_readpage(NULL, page);
349 lock_page(page);
350 if (!PageUptodate(page)) {
351 printk(KERN_ERR "btrfs: error reading free "
352 "space cache\n");
353 io_ctl_drop_pages(io_ctl);
354 return -EIO;
355 }
356 }
357 }
358
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500359 for (i = 0; i < io_ctl->num_pages; i++) {
360 clear_page_dirty_for_io(io_ctl->pages[i]);
361 set_page_extent_mapped(io_ctl->pages[i]);
362 }
363
Josef Bacika67509c2011-10-05 15:18:58 -0400364 return 0;
365}
366
367static void io_ctl_set_generation(struct io_ctl *io_ctl, u64 generation)
368{
Al Viro528c0322012-04-13 11:03:55 -0400369 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400370
371 io_ctl_map_page(io_ctl, 1);
372
373 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400374 * Skip the csum areas. If we don't check crcs then we just have a
375 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400376 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400377 if (io_ctl->check_crcs) {
378 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
379 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
380 } else {
381 io_ctl->cur += sizeof(u64);
382 io_ctl->size -= sizeof(u64) * 2;
383 }
Josef Bacika67509c2011-10-05 15:18:58 -0400384
385 val = io_ctl->cur;
386 *val = cpu_to_le64(generation);
387 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400388}
389
390static int io_ctl_check_generation(struct io_ctl *io_ctl, u64 generation)
391{
Al Viro528c0322012-04-13 11:03:55 -0400392 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400393
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400394 /*
395 * Skip the crc area. If we don't check crcs then we just have a 64bit
396 * chunk at the front of the first page.
397 */
398 if (io_ctl->check_crcs) {
399 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
400 io_ctl->size -= sizeof(u64) +
401 (sizeof(u32) * io_ctl->num_pages);
402 } else {
403 io_ctl->cur += sizeof(u64);
404 io_ctl->size -= sizeof(u64) * 2;
405 }
Josef Bacika67509c2011-10-05 15:18:58 -0400406
Josef Bacika67509c2011-10-05 15:18:58 -0400407 gen = io_ctl->cur;
408 if (le64_to_cpu(*gen) != generation) {
409 printk_ratelimited(KERN_ERR "btrfs: space cache generation "
410 "(%Lu) does not match inode (%Lu)\n", *gen,
411 generation);
412 io_ctl_unmap_page(io_ctl);
413 return -EIO;
414 }
415 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400416 return 0;
417}
418
419static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
420{
421 u32 *tmp;
422 u32 crc = ~(u32)0;
423 unsigned offset = 0;
424
425 if (!io_ctl->check_crcs) {
426 io_ctl_unmap_page(io_ctl);
427 return;
428 }
429
430 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800431 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400432
Liu Bob0496682013-03-14 14:57:45 +0000433 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400434 PAGE_CACHE_SIZE - offset);
435 btrfs_csum_final(crc, (char *)&crc);
436 io_ctl_unmap_page(io_ctl);
437 tmp = kmap(io_ctl->pages[0]);
438 tmp += index;
439 *tmp = crc;
440 kunmap(io_ctl->pages[0]);
441}
442
443static int io_ctl_check_crc(struct io_ctl *io_ctl, int index)
444{
445 u32 *tmp, val;
446 u32 crc = ~(u32)0;
447 unsigned offset = 0;
448
449 if (!io_ctl->check_crcs) {
450 io_ctl_map_page(io_ctl, 0);
451 return 0;
452 }
453
454 if (index == 0)
455 offset = sizeof(u32) * io_ctl->num_pages;
456
457 tmp = kmap(io_ctl->pages[0]);
458 tmp += index;
459 val = *tmp;
460 kunmap(io_ctl->pages[0]);
461
462 io_ctl_map_page(io_ctl, 0);
Liu Bob0496682013-03-14 14:57:45 +0000463 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400464 PAGE_CACHE_SIZE - offset);
465 btrfs_csum_final(crc, (char *)&crc);
466 if (val != crc) {
467 printk_ratelimited(KERN_ERR "btrfs: csum mismatch on free "
468 "space cache\n");
469 io_ctl_unmap_page(io_ctl);
470 return -EIO;
471 }
472
Josef Bacika67509c2011-10-05 15:18:58 -0400473 return 0;
474}
475
476static int io_ctl_add_entry(struct io_ctl *io_ctl, u64 offset, u64 bytes,
477 void *bitmap)
478{
479 struct btrfs_free_space_entry *entry;
480
481 if (!io_ctl->cur)
482 return -ENOSPC;
483
484 entry = io_ctl->cur;
485 entry->offset = cpu_to_le64(offset);
486 entry->bytes = cpu_to_le64(bytes);
487 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
488 BTRFS_FREE_SPACE_EXTENT;
489 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
490 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
491
492 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
493 return 0;
494
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400495 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400496
497 /* No more pages to map */
498 if (io_ctl->index >= io_ctl->num_pages)
499 return 0;
500
501 /* map the next page */
502 io_ctl_map_page(io_ctl, 1);
503 return 0;
504}
505
506static int io_ctl_add_bitmap(struct io_ctl *io_ctl, void *bitmap)
507{
508 if (!io_ctl->cur)
509 return -ENOSPC;
510
511 /*
512 * If we aren't at the start of the current page, unmap this one and
513 * map the next one if there is any left.
514 */
515 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400516 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400517 if (io_ctl->index >= io_ctl->num_pages)
518 return -ENOSPC;
519 io_ctl_map_page(io_ctl, 0);
520 }
521
522 memcpy(io_ctl->cur, bitmap, PAGE_CACHE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400523 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400524 if (io_ctl->index < io_ctl->num_pages)
525 io_ctl_map_page(io_ctl, 0);
526 return 0;
527}
528
529static void io_ctl_zero_remaining_pages(struct io_ctl *io_ctl)
530{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400531 /*
532 * If we're not on the boundary we know we've modified the page and we
533 * need to crc the page.
534 */
535 if (io_ctl->cur != io_ctl->orig)
536 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
537 else
538 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400539
540 while (io_ctl->index < io_ctl->num_pages) {
541 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400542 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400543 }
544}
545
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400546static int io_ctl_read_entry(struct io_ctl *io_ctl,
547 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400548{
549 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500550 int ret;
551
552 if (!io_ctl->cur) {
553 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
554 if (ret)
555 return ret;
556 }
Josef Bacika67509c2011-10-05 15:18:58 -0400557
558 e = io_ctl->cur;
559 entry->offset = le64_to_cpu(e->offset);
560 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400561 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400562 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
563 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
564
565 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400566 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400567
568 io_ctl_unmap_page(io_ctl);
569
Josef Bacik2f120c02011-11-10 20:45:05 -0500570 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400571}
572
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400573static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
574 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400575{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400576 int ret;
577
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400578 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
579 if (ret)
580 return ret;
581
Josef Bacika67509c2011-10-05 15:18:58 -0400582 memcpy(entry->bitmap, io_ctl->cur, PAGE_CACHE_SIZE);
583 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400584
585 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400586}
587
Josef Bacikcd023e72012-05-14 10:06:40 -0400588/*
589 * Since we attach pinned extents after the fact we can have contiguous sections
590 * of free space that are split up in entries. This poses a problem with the
591 * tree logging stuff since it could have allocated across what appears to be 2
592 * entries since we would have merged the entries when adding the pinned extents
593 * back to the free space cache. So run through the space cache that we just
594 * loaded and merge contiguous entries. This will make the log replay stuff not
595 * blow up and it will make for nicer allocator behavior.
596 */
597static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
598{
599 struct btrfs_free_space *e, *prev = NULL;
600 struct rb_node *n;
601
602again:
603 spin_lock(&ctl->tree_lock);
604 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
605 e = rb_entry(n, struct btrfs_free_space, offset_index);
606 if (!prev)
607 goto next;
608 if (e->bitmap || prev->bitmap)
609 goto next;
610 if (prev->offset + prev->bytes == e->offset) {
611 unlink_free_space(ctl, prev);
612 unlink_free_space(ctl, e);
613 prev->bytes += e->bytes;
614 kmem_cache_free(btrfs_free_space_cachep, e);
615 link_free_space(ctl, prev);
616 prev = NULL;
617 spin_unlock(&ctl->tree_lock);
618 goto again;
619 }
620next:
621 prev = e;
622 }
623 spin_unlock(&ctl->tree_lock);
624}
625
Eric Sandeen48a3b632013-04-25 20:41:01 +0000626static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
627 struct btrfs_free_space_ctl *ctl,
628 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400629{
Josef Bacik9d66e232010-08-25 16:54:15 -0400630 struct btrfs_free_space_header *header;
631 struct extent_buffer *leaf;
Josef Bacika67509c2011-10-05 15:18:58 -0400632 struct io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400633 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400634 struct btrfs_free_space *e, *n;
Josef Bacik9d66e232010-08-25 16:54:15 -0400635 struct list_head bitmaps;
636 u64 num_entries;
637 u64 num_bitmaps;
638 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400639 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400640 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400641
642 INIT_LIST_HEAD(&bitmaps);
643
Josef Bacik9d66e232010-08-25 16:54:15 -0400644 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800645 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400646 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400647
648 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800649 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400650 key.type = 0;
651
652 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800653 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400654 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800655 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400656 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400657 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400658 }
659
Li Zefan0414efa2011-04-20 10:20:14 +0800660 ret = -1;
661
Josef Bacik9d66e232010-08-25 16:54:15 -0400662 leaf = path->nodes[0];
663 header = btrfs_item_ptr(leaf, path->slots[0],
664 struct btrfs_free_space_header);
665 num_entries = btrfs_free_space_entries(leaf, header);
666 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
667 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400668 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400669
670 if (BTRFS_I(inode)->generation != generation) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000671 btrfs_err(root->fs_info,
672 "free space inode generation (%llu) "
673 "did not match free space cache generation (%llu)",
674 (unsigned long long)BTRFS_I(inode)->generation,
675 (unsigned long long)generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400676 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400677 }
678
679 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400680 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400681
Li Zefan706efc62012-01-09 14:36:28 +0800682 ret = io_ctl_init(&io_ctl, inode, root);
683 if (ret)
684 return ret;
685
Josef Bacik9d66e232010-08-25 16:54:15 -0400686 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800687 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400688 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400689
Josef Bacika67509c2011-10-05 15:18:58 -0400690 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
691 if (ret)
692 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400693
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400694 ret = io_ctl_check_crc(&io_ctl, 0);
695 if (ret)
696 goto free_cache;
697
Josef Bacika67509c2011-10-05 15:18:58 -0400698 ret = io_ctl_check_generation(&io_ctl, generation);
699 if (ret)
700 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400701
Josef Bacika67509c2011-10-05 15:18:58 -0400702 while (num_entries) {
703 e = kmem_cache_zalloc(btrfs_free_space_cachep,
704 GFP_NOFS);
705 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400706 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400707
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400708 ret = io_ctl_read_entry(&io_ctl, e, &type);
709 if (ret) {
710 kmem_cache_free(btrfs_free_space_cachep, e);
711 goto free_cache;
712 }
713
Josef Bacika67509c2011-10-05 15:18:58 -0400714 if (!e->bytes) {
715 kmem_cache_free(btrfs_free_space_cachep, e);
716 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400717 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400718
Josef Bacika67509c2011-10-05 15:18:58 -0400719 if (type == BTRFS_FREE_SPACE_EXTENT) {
720 spin_lock(&ctl->tree_lock);
721 ret = link_free_space(ctl, e);
722 spin_unlock(&ctl->tree_lock);
723 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000724 btrfs_err(root->fs_info,
725 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500726 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400727 goto free_cache;
728 }
Josef Bacika67509c2011-10-05 15:18:58 -0400729 } else {
730 BUG_ON(!num_bitmaps);
731 num_bitmaps--;
732 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
733 if (!e->bitmap) {
734 kmem_cache_free(
735 btrfs_free_space_cachep, e);
736 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400737 }
Josef Bacika67509c2011-10-05 15:18:58 -0400738 spin_lock(&ctl->tree_lock);
739 ret = link_free_space(ctl, e);
740 ctl->total_bitmaps++;
741 ctl->op->recalc_thresholds(ctl);
742 spin_unlock(&ctl->tree_lock);
743 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000744 btrfs_err(root->fs_info,
745 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400746 kmem_cache_free(btrfs_free_space_cachep, e);
747 goto free_cache;
748 }
749 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400750 }
751
Josef Bacika67509c2011-10-05 15:18:58 -0400752 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400753 }
754
Josef Bacik2f120c02011-11-10 20:45:05 -0500755 io_ctl_unmap_page(&io_ctl);
756
Josef Bacika67509c2011-10-05 15:18:58 -0400757 /*
758 * We add the bitmaps at the end of the entries in order that
759 * the bitmap entries are added to the cache.
760 */
761 list_for_each_entry_safe(e, n, &bitmaps, list) {
762 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400763 ret = io_ctl_read_bitmap(&io_ctl, e);
764 if (ret)
765 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400766 }
767
768 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400769 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400770 ret = 1;
771out:
Josef Bacika67509c2011-10-05 15:18:58 -0400772 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400773 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400774free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400775 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800776 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400777 goto out;
778}
779
Li Zefan0414efa2011-04-20 10:20:14 +0800780int load_free_space_cache(struct btrfs_fs_info *fs_info,
781 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400782{
Li Zefan34d52cb2011-03-29 13:46:06 +0800783 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800784 struct btrfs_root *root = fs_info->tree_root;
785 struct inode *inode;
786 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400787 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800788 bool matched;
789 u64 used = btrfs_block_group_used(&block_group->item);
790
791 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800792 * If this block group has been marked to be cleared for one reason or
793 * another then we can't trust the on disk cache, so just return.
794 */
795 spin_lock(&block_group->lock);
796 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
797 spin_unlock(&block_group->lock);
798 return 0;
799 }
800 spin_unlock(&block_group->lock);
801
802 path = btrfs_alloc_path();
803 if (!path)
804 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400805 path->search_commit_root = 1;
806 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800807
808 inode = lookup_free_space_inode(root, block_group, path);
809 if (IS_ERR(inode)) {
810 btrfs_free_path(path);
811 return 0;
812 }
813
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400814 /* We may have converted the inode and made the cache invalid. */
815 spin_lock(&block_group->lock);
816 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
817 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900818 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400819 goto out;
820 }
821 spin_unlock(&block_group->lock);
822
Li Zefan0414efa2011-04-20 10:20:14 +0800823 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
824 path, block_group->key.objectid);
825 btrfs_free_path(path);
826 if (ret <= 0)
827 goto out;
828
829 spin_lock(&ctl->tree_lock);
830 matched = (ctl->free_space == (block_group->key.offset - used -
831 block_group->bytes_super));
832 spin_unlock(&ctl->tree_lock);
833
834 if (!matched) {
835 __btrfs_remove_free_space_cache(ctl);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000836 btrfs_err(fs_info, "block group %llu has wrong amount of free space",
837 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800838 ret = -1;
839 }
840out:
841 if (ret < 0) {
842 /* This cache is bogus, make sure it gets cleared */
843 spin_lock(&block_group->lock);
844 block_group->disk_cache_state = BTRFS_DC_CLEAR;
845 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800846 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800847
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000848 btrfs_err(fs_info, "failed to load free space cache for block group %llu",
849 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800850 }
851
852 iput(inode);
853 return ret;
854}
855
Josef Bacikc09544e2011-08-30 10:19:10 -0400856/**
857 * __btrfs_write_out_cache - write out cached info to an inode
858 * @root - the root the inode belongs to
859 * @ctl - the free space cache we are going to write out
860 * @block_group - the block_group for this cache if it belongs to a block_group
861 * @trans - the trans handle
862 * @path - the path to use
863 * @offset - the offset for the key we'll insert
864 *
865 * This function writes out a free space cache struct to disk for quick recovery
866 * on mount. This will return 0 if it was successfull in writing the cache out,
867 * and -1 if it was not.
868 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000869static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
870 struct btrfs_free_space_ctl *ctl,
871 struct btrfs_block_group_cache *block_group,
872 struct btrfs_trans_handle *trans,
873 struct btrfs_path *path, u64 offset)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400874{
875 struct btrfs_free_space_header *header;
876 struct extent_buffer *leaf;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400877 struct rb_node *node;
878 struct list_head *pos, *n;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400879 struct extent_state *cached_state = NULL;
Josef Bacik43be2142011-04-01 14:55:00 +0000880 struct btrfs_free_cluster *cluster = NULL;
881 struct extent_io_tree *unpin = NULL;
Josef Bacika67509c2011-10-05 15:18:58 -0400882 struct io_ctl io_ctl;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400883 struct list_head bitmap_list;
884 struct btrfs_key key;
Li Zefandb804f22012-01-10 16:41:01 +0800885 u64 start, extent_start, extent_end, len;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400886 int entries = 0;
887 int bitmaps = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -0400888 int ret;
889 int err = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400890
Josef Bacik0cb59c92010-07-02 12:14:14 -0400891 INIT_LIST_HEAD(&bitmap_list);
892
Li Zefan0414efa2011-04-20 10:20:14 +0800893 if (!i_size_read(inode))
894 return -1;
Josef Bacik2b209822010-12-03 13:17:53 -0500895
Li Zefan706efc62012-01-09 14:36:28 +0800896 ret = io_ctl_init(&io_ctl, inode, root);
897 if (ret)
898 return -1;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400899
Josef Bacik43be2142011-04-01 14:55:00 +0000900 /* Get the cluster for this block_group if it exists */
Li Zefan0414efa2011-04-20 10:20:14 +0800901 if (block_group && !list_empty(&block_group->cluster_list))
Josef Bacik43be2142011-04-01 14:55:00 +0000902 cluster = list_entry(block_group->cluster_list.next,
903 struct btrfs_free_cluster,
904 block_group_list);
905
Josef Bacika67509c2011-10-05 15:18:58 -0400906 /* Lock all pages first so we can lock the extent safely. */
907 io_ctl_prepare_pages(&io_ctl, inode, 0);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400908
Josef Bacik0cb59c92010-07-02 12:14:14 -0400909 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100910 0, &cached_state);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400911
Josef Bacikf75b1302011-10-05 10:00:18 -0400912 node = rb_first(&ctl->free_space_offset);
913 if (!node && cluster) {
914 node = rb_first(&cluster->root);
915 cluster = NULL;
916 }
917
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400918 /* Make sure we can fit our crcs into the first page */
919 if (io_ctl.check_crcs &&
Josef Bacik73e1e612013-05-08 16:44:57 -0400920 (io_ctl.num_pages * sizeof(u32)) >= PAGE_CACHE_SIZE)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400921 goto out_nospc;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400922
Josef Bacika67509c2011-10-05 15:18:58 -0400923 io_ctl_set_generation(&io_ctl, trans->transid);
924
Josef Bacik0cb59c92010-07-02 12:14:14 -0400925 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400926 while (node) {
927 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400928
Josef Bacika67509c2011-10-05 15:18:58 -0400929 e = rb_entry(node, struct btrfs_free_space, offset_index);
930 entries++;
Josef Bacik43be2142011-04-01 14:55:00 +0000931
Josef Bacika67509c2011-10-05 15:18:58 -0400932 ret = io_ctl_add_entry(&io_ctl, e->offset, e->bytes,
933 e->bitmap);
934 if (ret)
935 goto out_nospc;
936
937 if (e->bitmap) {
938 list_add_tail(&e->list, &bitmap_list);
939 bitmaps++;
940 }
941 node = rb_next(node);
942 if (!node && cluster) {
943 node = rb_first(&cluster->root);
944 cluster = NULL;
945 }
946 }
947
948 /*
949 * We want to add any pinned extents to our free space cache
950 * so we don't leak the space
951 */
Li Zefandb804f22012-01-10 16:41:01 +0800952
953 /*
954 * We shouldn't have switched the pinned extents yet so this is the
955 * right one
956 */
957 unpin = root->fs_info->pinned_extents;
958
959 if (block_group)
960 start = block_group->key.objectid;
961
Josef Bacika67509c2011-10-05 15:18:58 -0400962 while (block_group && (start < block_group->key.objectid +
963 block_group->key.offset)) {
Li Zefandb804f22012-01-10 16:41:01 +0800964 ret = find_first_extent_bit(unpin, start,
965 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400966 EXTENT_DIRTY, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400967 if (ret) {
968 ret = 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400969 break;
970 }
971
Josef Bacika67509c2011-10-05 15:18:58 -0400972 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +0800973 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -0400974 block_group->key.offset)
975 break;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400976
Li Zefandb804f22012-01-10 16:41:01 +0800977 extent_start = max(extent_start, start);
978 extent_end = min(block_group->key.objectid +
979 block_group->key.offset, extent_end + 1);
980 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400981
Josef Bacika67509c2011-10-05 15:18:58 -0400982 entries++;
Li Zefandb804f22012-01-10 16:41:01 +0800983 ret = io_ctl_add_entry(&io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400984 if (ret)
985 goto out_nospc;
Josef Bacik2f356122011-06-10 15:31:13 -0400986
Li Zefandb804f22012-01-10 16:41:01 +0800987 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -0400988 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400989
990 /* Write out the bitmaps */
991 list_for_each_safe(pos, n, &bitmap_list) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400992 struct btrfs_free_space *entry =
993 list_entry(pos, struct btrfs_free_space, list);
994
Josef Bacika67509c2011-10-05 15:18:58 -0400995 ret = io_ctl_add_bitmap(&io_ctl, entry->bitmap);
996 if (ret)
997 goto out_nospc;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400998 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400999 }
1000
Josef Bacik0cb59c92010-07-02 12:14:14 -04001001 /* Zero out the rest of the pages just to make sure */
Josef Bacika67509c2011-10-05 15:18:58 -04001002 io_ctl_zero_remaining_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001003
Josef Bacika67509c2011-10-05 15:18:58 -04001004 ret = btrfs_dirty_pages(root, inode, io_ctl.pages, io_ctl.num_pages,
1005 0, i_size_read(inode), &cached_state);
1006 io_ctl_drop_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001007 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1008 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1009
Josef Bacikc09544e2011-08-30 10:19:10 -04001010 if (ret)
Josef Bacik2f356122011-06-10 15:31:13 -04001011 goto out;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001012
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001013
Josef Bacik5fd02042012-05-02 14:00:54 -04001014 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001015
1016 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +08001017 key.offset = offset;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001018 key.type = 0;
1019
Josef Bacika9b5fcd2011-08-19 12:06:12 -04001020 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001021 if (ret < 0) {
Josef Bacika67509c2011-10-05 15:18:58 -04001022 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001023 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1024 GFP_NOFS);
Josef Bacik2f356122011-06-10 15:31:13 -04001025 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001026 }
1027 leaf = path->nodes[0];
1028 if (ret > 0) {
1029 struct btrfs_key found_key;
1030 BUG_ON(!path->slots[0]);
1031 path->slots[0]--;
1032 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1033 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
Li Zefan0414efa2011-04-20 10:20:14 +08001034 found_key.offset != offset) {
Josef Bacika67509c2011-10-05 15:18:58 -04001035 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
1036 inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001037 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
1038 NULL, GFP_NOFS);
David Sterbab3b4aa72011-04-21 01:20:15 +02001039 btrfs_release_path(path);
Josef Bacik2f356122011-06-10 15:31:13 -04001040 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001041 }
1042 }
Josef Bacik549b4fd2011-10-05 16:33:53 -04001043
1044 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001045 header = btrfs_item_ptr(leaf, path->slots[0],
1046 struct btrfs_free_space_header);
1047 btrfs_set_free_space_entries(leaf, header, entries);
1048 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
1049 btrfs_set_free_space_generation(leaf, header, trans->transid);
1050 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02001051 btrfs_release_path(path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001052
Josef Bacikc09544e2011-08-30 10:19:10 -04001053 err = 0;
Josef Bacik2f356122011-06-10 15:31:13 -04001054out:
Josef Bacika67509c2011-10-05 15:18:58 -04001055 io_ctl_free(&io_ctl);
Josef Bacikc09544e2011-08-30 10:19:10 -04001056 if (err) {
Josef Bacika67509c2011-10-05 15:18:58 -04001057 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001058 BTRFS_I(inode)->generation = 0;
1059 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001060 btrfs_update_inode(trans, root, inode);
Josef Bacikc09544e2011-08-30 10:19:10 -04001061 return err;
Josef Bacika67509c2011-10-05 15:18:58 -04001062
1063out_nospc:
1064 list_for_each_safe(pos, n, &bitmap_list) {
1065 struct btrfs_free_space *entry =
1066 list_entry(pos, struct btrfs_free_space, list);
1067 list_del_init(&entry->list);
1068 }
1069 io_ctl_drop_pages(&io_ctl);
1070 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1071 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1072 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001073}
1074
1075int btrfs_write_out_cache(struct btrfs_root *root,
1076 struct btrfs_trans_handle *trans,
1077 struct btrfs_block_group_cache *block_group,
1078 struct btrfs_path *path)
1079{
1080 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1081 struct inode *inode;
1082 int ret = 0;
1083
1084 root = root->fs_info->tree_root;
1085
1086 spin_lock(&block_group->lock);
1087 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1088 spin_unlock(&block_group->lock);
1089 return 0;
1090 }
1091 spin_unlock(&block_group->lock);
1092
1093 inode = lookup_free_space_inode(root, block_group, path);
1094 if (IS_ERR(inode))
1095 return 0;
1096
1097 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
1098 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001099 if (ret) {
Li Zefan0414efa2011-04-20 10:20:14 +08001100 spin_lock(&block_group->lock);
1101 block_group->disk_cache_state = BTRFS_DC_ERROR;
1102 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +08001103 ret = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04001104#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00001105 btrfs_err(root->fs_info,
1106 "failed to write free space cache for block group %llu",
1107 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001108#endif
Li Zefan0414efa2011-04-20 10:20:14 +08001109 }
1110
Josef Bacik0cb59c92010-07-02 12:14:14 -04001111 iput(inode);
1112 return ret;
1113}
1114
Li Zefan34d52cb2011-03-29 13:46:06 +08001115static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001116 u64 offset)
1117{
1118 BUG_ON(offset < bitmap_start);
1119 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001120 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001121}
1122
Li Zefan34d52cb2011-03-29 13:46:06 +08001123static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001124{
Li Zefan34d52cb2011-03-29 13:46:06 +08001125 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001126}
1127
Li Zefan34d52cb2011-03-29 13:46:06 +08001128static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001129 u64 offset)
1130{
1131 u64 bitmap_start;
1132 u64 bytes_per_bitmap;
1133
Li Zefan34d52cb2011-03-29 13:46:06 +08001134 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1135 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001136 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
1137 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001138 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001139
1140 return bitmap_start;
1141}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001142
1143static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001144 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001145{
1146 struct rb_node **p = &root->rb_node;
1147 struct rb_node *parent = NULL;
1148 struct btrfs_free_space *info;
1149
1150 while (*p) {
1151 parent = *p;
1152 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1153
Josef Bacik96303082009-07-13 21:29:25 -04001154 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001155 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001156 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001157 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001158 } else {
1159 /*
1160 * we could have a bitmap entry and an extent entry
1161 * share the same offset. If this is the case, we want
1162 * the extent entry to always be found first if we do a
1163 * linear search through the tree, since we want to have
1164 * the quickest allocation time, and allocating from an
1165 * extent is faster than allocating from a bitmap. So
1166 * if we're inserting a bitmap and we find an entry at
1167 * this offset, we want to go right, or after this entry
1168 * logically. If we are inserting an extent and we've
1169 * found a bitmap, we want to go left, or before
1170 * logically.
1171 */
1172 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001173 if (info->bitmap) {
1174 WARN_ON_ONCE(1);
1175 return -EEXIST;
1176 }
Josef Bacik96303082009-07-13 21:29:25 -04001177 p = &(*p)->rb_right;
1178 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001179 if (!info->bitmap) {
1180 WARN_ON_ONCE(1);
1181 return -EEXIST;
1182 }
Josef Bacik96303082009-07-13 21:29:25 -04001183 p = &(*p)->rb_left;
1184 }
1185 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001186 }
1187
1188 rb_link_node(node, parent, p);
1189 rb_insert_color(node, root);
1190
1191 return 0;
1192}
1193
1194/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001195 * searches the tree for the given offset.
1196 *
Josef Bacik96303082009-07-13 21:29:25 -04001197 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1198 * want a section that has at least bytes size and comes at or after the given
1199 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001200 */
Josef Bacik96303082009-07-13 21:29:25 -04001201static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001202tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001203 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001204{
Li Zefan34d52cb2011-03-29 13:46:06 +08001205 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001206 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001207
Josef Bacik96303082009-07-13 21:29:25 -04001208 /* find entry that is closest to the 'offset' */
1209 while (1) {
1210 if (!n) {
1211 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001212 break;
1213 }
Josef Bacik96303082009-07-13 21:29:25 -04001214
1215 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1216 prev = entry;
1217
1218 if (offset < entry->offset)
1219 n = n->rb_left;
1220 else if (offset > entry->offset)
1221 n = n->rb_right;
1222 else
1223 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001224 }
1225
Josef Bacik96303082009-07-13 21:29:25 -04001226 if (bitmap_only) {
1227 if (!entry)
1228 return NULL;
1229 if (entry->bitmap)
1230 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001231
Josef Bacik96303082009-07-13 21:29:25 -04001232 /*
1233 * bitmap entry and extent entry may share same offset,
1234 * in that case, bitmap entry comes after extent entry.
1235 */
1236 n = rb_next(n);
1237 if (!n)
1238 return NULL;
1239 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1240 if (entry->offset != offset)
1241 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001242
Josef Bacik96303082009-07-13 21:29:25 -04001243 WARN_ON(!entry->bitmap);
1244 return entry;
1245 } else if (entry) {
1246 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001247 /*
Josef Bacik96303082009-07-13 21:29:25 -04001248 * if previous extent entry covers the offset,
1249 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001250 */
Miao Xiede6c4112012-10-18 08:18:01 +00001251 n = rb_prev(&entry->offset_index);
1252 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001253 prev = rb_entry(n, struct btrfs_free_space,
1254 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001255 if (!prev->bitmap &&
1256 prev->offset + prev->bytes > offset)
1257 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001258 }
Josef Bacik96303082009-07-13 21:29:25 -04001259 }
1260 return entry;
1261 }
1262
1263 if (!prev)
1264 return NULL;
1265
1266 /* find last entry before the 'offset' */
1267 entry = prev;
1268 if (entry->offset > offset) {
1269 n = rb_prev(&entry->offset_index);
1270 if (n) {
1271 entry = rb_entry(n, struct btrfs_free_space,
1272 offset_index);
1273 BUG_ON(entry->offset > offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001274 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001275 if (fuzzy)
1276 return entry;
1277 else
1278 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001279 }
1280 }
1281
Josef Bacik96303082009-07-13 21:29:25 -04001282 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001283 n = rb_prev(&entry->offset_index);
1284 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001285 prev = rb_entry(n, struct btrfs_free_space,
1286 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001287 if (!prev->bitmap &&
1288 prev->offset + prev->bytes > offset)
1289 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001290 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001291 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001292 return entry;
1293 } else if (entry->offset + entry->bytes > offset)
1294 return entry;
1295
1296 if (!fuzzy)
1297 return NULL;
1298
1299 while (1) {
1300 if (entry->bitmap) {
1301 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001302 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001303 break;
1304 } else {
1305 if (entry->offset + entry->bytes > offset)
1306 break;
1307 }
1308
1309 n = rb_next(&entry->offset_index);
1310 if (!n)
1311 return NULL;
1312 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1313 }
1314 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001315}
1316
Li Zefanf333adb2010-11-09 14:57:39 +08001317static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001318__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001319 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001320{
Li Zefan34d52cb2011-03-29 13:46:06 +08001321 rb_erase(&info->offset_index, &ctl->free_space_offset);
1322 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001323}
1324
Li Zefan34d52cb2011-03-29 13:46:06 +08001325static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001326 struct btrfs_free_space *info)
1327{
Li Zefan34d52cb2011-03-29 13:46:06 +08001328 __unlink_free_space(ctl, info);
1329 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001330}
1331
Li Zefan34d52cb2011-03-29 13:46:06 +08001332static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001333 struct btrfs_free_space *info)
1334{
1335 int ret = 0;
1336
Josef Bacik96303082009-07-13 21:29:25 -04001337 BUG_ON(!info->bitmap && !info->bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001338 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001339 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001340 if (ret)
1341 return ret;
1342
Li Zefan34d52cb2011-03-29 13:46:06 +08001343 ctl->free_space += info->bytes;
1344 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001345 return ret;
1346}
1347
Li Zefan34d52cb2011-03-29 13:46:06 +08001348static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001349{
Li Zefan34d52cb2011-03-29 13:46:06 +08001350 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001351 u64 max_bytes;
1352 u64 bitmap_bytes;
1353 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001354 u64 size = block_group->key.offset;
Wang Sheng-Hui96009762012-11-30 06:30:14 +00001355 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001356 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1357
Josef Bacikdde57402013-02-12 14:07:51 -05001358 max_bitmaps = max(max_bitmaps, 1);
1359
Li Zefan34d52cb2011-03-29 13:46:06 +08001360 BUG_ON(ctl->total_bitmaps > max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001361
1362 /*
1363 * The goal is to keep the total amount of memory used per 1gb of space
1364 * at or below 32k, so we need to adjust how much memory we allow to be
1365 * used by extent based free space tracking
1366 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001367 if (size < 1024 * 1024 * 1024)
1368 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1369 else
1370 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1371 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001372
Josef Bacik25891f72009-09-11 16:11:20 -04001373 /*
1374 * we want to account for 1 more bitmap than what we have so we can make
1375 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1376 * we add more bitmaps.
1377 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001378 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001379
Josef Bacik25891f72009-09-11 16:11:20 -04001380 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001381 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001382 return;
Josef Bacik96303082009-07-13 21:29:25 -04001383 }
Josef Bacik25891f72009-09-11 16:11:20 -04001384
1385 /*
1386 * we want the extent entry threshold to always be at most 1/2 the maxw
1387 * bytes we can have, or whatever is less than that.
1388 */
1389 extent_bytes = max_bytes - bitmap_bytes;
1390 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1391
Li Zefan34d52cb2011-03-29 13:46:06 +08001392 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001393 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001394}
1395
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001396static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1397 struct btrfs_free_space *info,
1398 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001399{
Li Zefanf38b6e72011-03-14 13:40:51 +08001400 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001401
Li Zefan34d52cb2011-03-29 13:46:06 +08001402 start = offset_to_bit(info->offset, ctl->unit, offset);
1403 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001404 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001405
Li Zefanf38b6e72011-03-14 13:40:51 +08001406 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001407
1408 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001409}
1410
1411static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1412 struct btrfs_free_space *info, u64 offset,
1413 u64 bytes)
1414{
1415 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001416 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001417}
1418
Li Zefan34d52cb2011-03-29 13:46:06 +08001419static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001420 struct btrfs_free_space *info, u64 offset,
1421 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001422{
Li Zefanf38b6e72011-03-14 13:40:51 +08001423 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001424
Li Zefan34d52cb2011-03-29 13:46:06 +08001425 start = offset_to_bit(info->offset, ctl->unit, offset);
1426 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001427 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001428
Li Zefanf38b6e72011-03-14 13:40:51 +08001429 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001430
1431 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001432 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001433}
1434
Li Zefan34d52cb2011-03-29 13:46:06 +08001435static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001436 struct btrfs_free_space *bitmap_info, u64 *offset,
1437 u64 *bytes)
1438{
1439 unsigned long found_bits = 0;
1440 unsigned long bits, i;
1441 unsigned long next_zero;
1442
Li Zefan34d52cb2011-03-29 13:46:06 +08001443 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001444 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001445 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001446
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001447 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04001448 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1449 BITS_PER_BITMAP, i);
1450 if ((next_zero - i) >= bits) {
1451 found_bits = next_zero - i;
1452 break;
1453 }
1454 i = next_zero;
1455 }
1456
1457 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001458 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1459 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001460 return 0;
1461 }
1462
1463 return -1;
1464}
1465
Li Zefan34d52cb2011-03-29 13:46:06 +08001466static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001467find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
1468 unsigned long align)
Josef Bacik96303082009-07-13 21:29:25 -04001469{
1470 struct btrfs_free_space *entry;
1471 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001472 u64 ctl_off;
1473 u64 tmp;
1474 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001475 int ret;
1476
Li Zefan34d52cb2011-03-29 13:46:06 +08001477 if (!ctl->free_space_offset.rb_node)
Josef Bacik96303082009-07-13 21:29:25 -04001478 return NULL;
1479
Li Zefan34d52cb2011-03-29 13:46:06 +08001480 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001481 if (!entry)
1482 return NULL;
1483
1484 for (node = &entry->offset_index; node; node = rb_next(node)) {
1485 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1486 if (entry->bytes < *bytes)
1487 continue;
1488
David Woodhouse53b381b2013-01-29 18:40:14 -05001489 /* make sure the space returned is big enough
1490 * to match our requested alignment
1491 */
1492 if (*bytes >= align) {
1493 ctl_off = entry->offset - ctl->start;
1494 tmp = ctl_off + align - 1;;
1495 do_div(tmp, align);
1496 tmp = tmp * align + ctl->start;
1497 align_off = tmp - entry->offset;
1498 } else {
1499 align_off = 0;
1500 tmp = entry->offset;
1501 }
1502
1503 if (entry->bytes < *bytes + align_off)
1504 continue;
1505
Josef Bacik96303082009-07-13 21:29:25 -04001506 if (entry->bitmap) {
David Woodhouse53b381b2013-01-29 18:40:14 -05001507 ret = search_bitmap(ctl, entry, &tmp, bytes);
1508 if (!ret) {
1509 *offset = tmp;
Josef Bacik96303082009-07-13 21:29:25 -04001510 return entry;
David Woodhouse53b381b2013-01-29 18:40:14 -05001511 }
Josef Bacik96303082009-07-13 21:29:25 -04001512 continue;
1513 }
1514
David Woodhouse53b381b2013-01-29 18:40:14 -05001515 *offset = tmp;
1516 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001517 return entry;
1518 }
1519
1520 return NULL;
1521}
1522
Li Zefan34d52cb2011-03-29 13:46:06 +08001523static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001524 struct btrfs_free_space *info, u64 offset)
1525{
Li Zefan34d52cb2011-03-29 13:46:06 +08001526 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001527 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001528 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001529 link_free_space(ctl, info);
1530 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001531
Li Zefan34d52cb2011-03-29 13:46:06 +08001532 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001533}
1534
Li Zefan34d52cb2011-03-29 13:46:06 +08001535static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001536 struct btrfs_free_space *bitmap_info)
1537{
Li Zefan34d52cb2011-03-29 13:46:06 +08001538 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001539 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001540 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001541 ctl->total_bitmaps--;
1542 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001543}
1544
Li Zefan34d52cb2011-03-29 13:46:06 +08001545static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001546 struct btrfs_free_space *bitmap_info,
1547 u64 *offset, u64 *bytes)
1548{
1549 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001550 u64 search_start, search_bytes;
1551 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001552
1553again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001554 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001555
Josef Bacik6606bb92009-07-31 11:03:58 -04001556 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001557 * We need to search for bits in this bitmap. We could only cover some
1558 * of the extent in this bitmap thanks to how we add space, so we need
1559 * to search for as much as it as we can and clear that amount, and then
1560 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001561 */
1562 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001563 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001564 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001565 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001566 if (ret < 0 || search_start != *offset)
1567 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001568
Josef Bacikbdb7d302012-06-27 15:10:56 -04001569 /* We may have found more bits than what we need */
1570 search_bytes = min(search_bytes, *bytes);
1571
1572 /* Cannot clear past the end of the bitmap */
1573 search_bytes = min(search_bytes, end - search_start + 1);
1574
1575 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1576 *offset += search_bytes;
1577 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001578
1579 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001580 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001581 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001582 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001583
Josef Bacik6606bb92009-07-31 11:03:58 -04001584 /*
1585 * no entry after this bitmap, but we still have bytes to
1586 * remove, so something has gone wrong.
1587 */
1588 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001589 return -EINVAL;
1590
Josef Bacik6606bb92009-07-31 11:03:58 -04001591 bitmap_info = rb_entry(next, struct btrfs_free_space,
1592 offset_index);
1593
1594 /*
1595 * if the next entry isn't a bitmap we need to return to let the
1596 * extent stuff do its work.
1597 */
Josef Bacik96303082009-07-13 21:29:25 -04001598 if (!bitmap_info->bitmap)
1599 return -EAGAIN;
1600
Josef Bacik6606bb92009-07-31 11:03:58 -04001601 /*
1602 * Ok the next item is a bitmap, but it may not actually hold
1603 * the information for the rest of this free space stuff, so
1604 * look for it, and if we don't find it return so we can try
1605 * everything over again.
1606 */
1607 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001608 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001609 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001610 &search_bytes);
1611 if (ret < 0 || search_start != *offset)
1612 return -EAGAIN;
1613
Josef Bacik96303082009-07-13 21:29:25 -04001614 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001615 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001616 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001617
1618 return 0;
1619}
1620
Josef Bacik2cdc3422011-05-27 14:07:49 -04001621static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1622 struct btrfs_free_space *info, u64 offset,
1623 u64 bytes)
1624{
1625 u64 bytes_to_set = 0;
1626 u64 end;
1627
1628 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1629
1630 bytes_to_set = min(end - offset, bytes);
1631
1632 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1633
1634 return bytes_to_set;
1635
1636}
1637
Li Zefan34d52cb2011-03-29 13:46:06 +08001638static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1639 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001640{
Li Zefan34d52cb2011-03-29 13:46:06 +08001641 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001642
1643 /*
1644 * If we are below the extents threshold then we can add this as an
1645 * extent, and don't have to deal with the bitmap
1646 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001647 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001648 /*
1649 * If this block group has some small extents we don't want to
1650 * use up all of our free slots in the cache with them, we want
1651 * to reserve them to larger extents, however if we have plent
1652 * of cache left then go ahead an dadd them, no sense in adding
1653 * the overhead of a bitmap if we don't have to.
1654 */
1655 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001656 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1657 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001658 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001659 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001660 }
1661 }
Josef Bacik96303082009-07-13 21:29:25 -04001662
1663 /*
Josef Bacikdde57402013-02-12 14:07:51 -05001664 * The original block groups from mkfs can be really small, like 8
1665 * megabytes, so don't bother with a bitmap for those entries. However
1666 * some block groups can be smaller than what a bitmap would cover but
1667 * are still large enough that they could overflow the 32k memory limit,
1668 * so allow those block groups to still be allowed to have a bitmap
1669 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04001670 */
Josef Bacikdde57402013-02-12 14:07:51 -05001671 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001672 return false;
1673
1674 return true;
1675}
1676
Josef Bacik2cdc3422011-05-27 14:07:49 -04001677static struct btrfs_free_space_op free_space_op = {
1678 .recalc_thresholds = recalculate_thresholds,
1679 .use_bitmap = use_bitmap,
1680};
1681
Li Zefan34d52cb2011-03-29 13:46:06 +08001682static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1683 struct btrfs_free_space *info)
1684{
1685 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001686 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08001687 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001688 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08001689 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001690
1691 bytes = info->bytes;
1692 offset = info->offset;
1693
Li Zefan34d52cb2011-03-29 13:46:06 +08001694 if (!ctl->op->use_bitmap(ctl, info))
1695 return 0;
1696
Josef Bacik2cdc3422011-05-27 14:07:49 -04001697 if (ctl->op == &free_space_op)
1698 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001699again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001700 /*
1701 * Since we link bitmaps right into the cluster we need to see if we
1702 * have a cluster here, and if so and it has our bitmap we need to add
1703 * the free space to that bitmap.
1704 */
1705 if (block_group && !list_empty(&block_group->cluster_list)) {
1706 struct btrfs_free_cluster *cluster;
1707 struct rb_node *node;
1708 struct btrfs_free_space *entry;
1709
1710 cluster = list_entry(block_group->cluster_list.next,
1711 struct btrfs_free_cluster,
1712 block_group_list);
1713 spin_lock(&cluster->lock);
1714 node = rb_first(&cluster->root);
1715 if (!node) {
1716 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001717 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001718 }
1719
1720 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1721 if (!entry->bitmap) {
1722 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001723 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001724 }
1725
1726 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1727 bytes_added = add_bytes_to_bitmap(ctl, entry,
1728 offset, bytes);
1729 bytes -= bytes_added;
1730 offset += bytes_added;
1731 }
1732 spin_unlock(&cluster->lock);
1733 if (!bytes) {
1734 ret = 1;
1735 goto out;
1736 }
1737 }
Chris Mason38e87882011-06-10 16:36:57 -04001738
1739no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08001740 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001741 1, 0);
1742 if (!bitmap_info) {
1743 BUG_ON(added);
1744 goto new_bitmap;
1745 }
1746
Josef Bacik2cdc3422011-05-27 14:07:49 -04001747 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1748 bytes -= bytes_added;
1749 offset += bytes_added;
1750 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001751
1752 if (!bytes) {
1753 ret = 1;
1754 goto out;
1755 } else
1756 goto again;
1757
1758new_bitmap:
1759 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001760 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001761 added = 1;
1762 info = NULL;
1763 goto again;
1764 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001765 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001766
1767 /* no pre-allocated info, allocate a new one */
1768 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001769 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1770 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001771 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001772 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001773 ret = -ENOMEM;
1774 goto out;
1775 }
1776 }
1777
1778 /* allocate the bitmap */
1779 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001780 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001781 if (!info->bitmap) {
1782 ret = -ENOMEM;
1783 goto out;
1784 }
1785 goto again;
1786 }
1787
1788out:
1789 if (info) {
1790 if (info->bitmap)
1791 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001792 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001793 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001794
1795 return ret;
1796}
1797
Chris Mason945d8962011-05-22 12:33:42 -04001798static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001799 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001800{
Li Zefan120d66e2010-11-09 14:56:50 +08001801 struct btrfs_free_space *left_info;
1802 struct btrfs_free_space *right_info;
1803 bool merged = false;
1804 u64 offset = info->offset;
1805 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001806
Josef Bacik0f9dd462008-09-23 13:14:11 -04001807 /*
1808 * first we want to see if there is free space adjacent to the range we
1809 * are adding, if there is remove that struct and add a new one to
1810 * cover the entire range
1811 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001812 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001813 if (right_info && rb_prev(&right_info->offset_index))
1814 left_info = rb_entry(rb_prev(&right_info->offset_index),
1815 struct btrfs_free_space, offset_index);
1816 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001817 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001818
Josef Bacik96303082009-07-13 21:29:25 -04001819 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001820 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001821 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001822 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001823 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001824 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001825 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001826 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001827 }
1828
Josef Bacik96303082009-07-13 21:29:25 -04001829 if (left_info && !left_info->bitmap &&
1830 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001831 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001832 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001833 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001834 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001835 info->offset = left_info->offset;
1836 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001837 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001838 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001839 }
1840
Li Zefan120d66e2010-11-09 14:56:50 +08001841 return merged;
1842}
1843
Li Zefan581bb052011-04-20 10:06:11 +08001844int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1845 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001846{
1847 struct btrfs_free_space *info;
1848 int ret = 0;
1849
Josef Bacikdc89e982011-01-28 17:05:48 -05001850 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001851 if (!info)
1852 return -ENOMEM;
1853
1854 info->offset = offset;
1855 info->bytes = bytes;
1856
Li Zefan34d52cb2011-03-29 13:46:06 +08001857 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001858
Li Zefan34d52cb2011-03-29 13:46:06 +08001859 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001860 goto link;
1861
1862 /*
1863 * There was no extent directly to the left or right of this new
1864 * extent then we know we're going to have to allocate a new extent, so
1865 * before we do that see if we need to drop this into a bitmap
1866 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001867 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001868 if (ret < 0) {
1869 goto out;
1870 } else if (ret) {
1871 ret = 0;
1872 goto out;
1873 }
1874link:
Li Zefan34d52cb2011-03-29 13:46:06 +08001875 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001876 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001877 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001878out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001879 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001880
Josef Bacik0f9dd462008-09-23 13:14:11 -04001881 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001882 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001883 BUG_ON(ret == -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001884 }
1885
Josef Bacik0f9dd462008-09-23 13:14:11 -04001886 return ret;
1887}
1888
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001889int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1890 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001891{
Li Zefan34d52cb2011-03-29 13:46:06 +08001892 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001893 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05001894 int ret;
1895 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001896
Li Zefan34d52cb2011-03-29 13:46:06 +08001897 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001898
Josef Bacik96303082009-07-13 21:29:25 -04001899again:
Josef Bacikb0175112012-12-18 11:39:19 -05001900 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001901 if (!bytes)
1902 goto out_lock;
1903
Li Zefan34d52cb2011-03-29 13:46:06 +08001904 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001905 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001906 /*
1907 * oops didn't find an extent that matched the space we wanted
1908 * to remove, look for a bitmap instead
1909 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001910 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04001911 1, 0);
1912 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05001913 /*
1914 * If we found a partial bit of our free space in a
1915 * bitmap but then couldn't find the other part this may
1916 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05001917 */
Josef Bacikb0175112012-12-18 11:39:19 -05001918 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04001919 goto out_lock;
1920 }
Josef Bacik96303082009-07-13 21:29:25 -04001921 }
1922
Josef Bacikb0175112012-12-18 11:39:19 -05001923 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001924 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001925 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04001926 if (offset == info->offset) {
1927 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001928
Josef Bacikbdb7d302012-06-27 15:10:56 -04001929 info->bytes -= to_free;
1930 info->offset += to_free;
1931 if (info->bytes) {
1932 ret = link_free_space(ctl, info);
1933 WARN_ON(ret);
1934 } else {
1935 kmem_cache_free(btrfs_free_space_cachep, info);
1936 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001937
Josef Bacikbdb7d302012-06-27 15:10:56 -04001938 offset += to_free;
1939 bytes -= to_free;
1940 goto again;
1941 } else {
1942 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001943
Josef Bacikbdb7d302012-06-27 15:10:56 -04001944 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001945 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001946 WARN_ON(ret);
1947 if (ret)
1948 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04001949
Josef Bacikbdb7d302012-06-27 15:10:56 -04001950 /* Not enough bytes in this entry to satisfy us */
1951 if (old_end < offset + bytes) {
1952 bytes -= old_end - offset;
1953 offset = old_end;
1954 goto again;
1955 } else if (old_end == offset + bytes) {
1956 /* all done */
1957 goto out_lock;
1958 }
1959 spin_unlock(&ctl->tree_lock);
1960
1961 ret = btrfs_add_free_space(block_group, offset + bytes,
1962 old_end - (offset + bytes));
1963 WARN_ON(ret);
1964 goto out;
1965 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001966 }
Josef Bacik96303082009-07-13 21:29:25 -04001967
Li Zefan34d52cb2011-03-29 13:46:06 +08001968 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05001969 if (ret == -EAGAIN) {
1970 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04001971 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05001972 }
Josef Bacik96303082009-07-13 21:29:25 -04001973out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08001974 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001975out:
Josef Bacik25179202008-10-29 14:49:05 -04001976 return ret;
1977}
1978
Josef Bacik0f9dd462008-09-23 13:14:11 -04001979void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1980 u64 bytes)
1981{
Li Zefan34d52cb2011-03-29 13:46:06 +08001982 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001983 struct btrfs_free_space *info;
1984 struct rb_node *n;
1985 int count = 0;
1986
Li Zefan34d52cb2011-03-29 13:46:06 +08001987 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001988 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06001989 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001990 count++;
Josef Bacik96303082009-07-13 21:29:25 -04001991 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Joel Becker21380932009-04-21 12:38:29 -07001992 (unsigned long long)info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001993 (unsigned long long)info->bytes,
1994 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001995 }
Josef Bacik96303082009-07-13 21:29:25 -04001996 printk(KERN_INFO "block group has cluster?: %s\n",
1997 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001998 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
1999 "\n", count);
2000}
2001
Li Zefan34d52cb2011-03-29 13:46:06 +08002002void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002003{
Li Zefan34d52cb2011-03-29 13:46:06 +08002004 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002005
Li Zefan34d52cb2011-03-29 13:46:06 +08002006 spin_lock_init(&ctl->tree_lock);
2007 ctl->unit = block_group->sectorsize;
2008 ctl->start = block_group->key.objectid;
2009 ctl->private = block_group;
2010 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002011
Li Zefan34d52cb2011-03-29 13:46:06 +08002012 /*
2013 * we only want to have 32k of ram per block group for keeping
2014 * track of free space, and if we pass 1/2 of that we want to
2015 * start converting things over to using bitmaps
2016 */
2017 ctl->extents_thresh = ((1024 * 32) / 2) /
2018 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002019}
2020
Chris Masonfa9c0d792009-04-03 09:47:43 -04002021/*
2022 * for a given cluster, put all of its extents back into the free
2023 * space cache. If the block group passed doesn't match the block group
2024 * pointed to by the cluster, someone else raced in and freed the
2025 * cluster already. In that case, we just return without changing anything
2026 */
2027static int
2028__btrfs_return_cluster_to_free_space(
2029 struct btrfs_block_group_cache *block_group,
2030 struct btrfs_free_cluster *cluster)
2031{
Li Zefan34d52cb2011-03-29 13:46:06 +08002032 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002033 struct btrfs_free_space *entry;
2034 struct rb_node *node;
2035
2036 spin_lock(&cluster->lock);
2037 if (cluster->block_group != block_group)
2038 goto out;
2039
Josef Bacik96303082009-07-13 21:29:25 -04002040 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002041 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002042 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002043
Chris Masonfa9c0d792009-04-03 09:47:43 -04002044 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002045 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002046 bool bitmap;
2047
Chris Masonfa9c0d792009-04-03 09:47:43 -04002048 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2049 node = rb_next(&entry->offset_index);
2050 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04002051
2052 bitmap = (entry->bitmap != NULL);
2053 if (!bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08002054 try_merge_free_space(ctl, entry, false);
2055 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002056 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002057 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002058 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002059
Chris Masonfa9c0d792009-04-03 09:47:43 -04002060out:
2061 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002062 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002063 return 0;
2064}
2065
Eric Sandeen48a3b632013-04-25 20:41:01 +00002066static void __btrfs_remove_free_space_cache_locked(
2067 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002068{
2069 struct btrfs_free_space *info;
2070 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002071
Li Zefan581bb052011-04-20 10:06:11 +08002072 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2073 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002074 if (!info->bitmap) {
2075 unlink_free_space(ctl, info);
2076 kmem_cache_free(btrfs_free_space_cachep, info);
2077 } else {
2078 free_bitmap(ctl, info);
2079 }
Li Zefan581bb052011-04-20 10:06:11 +08002080 if (need_resched()) {
2081 spin_unlock(&ctl->tree_lock);
2082 cond_resched();
2083 spin_lock(&ctl->tree_lock);
2084 }
2085 }
Chris Mason09655372011-05-21 09:27:38 -04002086}
2087
2088void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2089{
2090 spin_lock(&ctl->tree_lock);
2091 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002092 spin_unlock(&ctl->tree_lock);
2093}
2094
Josef Bacik0f9dd462008-09-23 13:14:11 -04002095void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2096{
Li Zefan34d52cb2011-03-29 13:46:06 +08002097 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002098 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002099 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002100
Li Zefan34d52cb2011-03-29 13:46:06 +08002101 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002102 while ((head = block_group->cluster_list.next) !=
2103 &block_group->cluster_list) {
2104 cluster = list_entry(head, struct btrfs_free_cluster,
2105 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002106
2107 WARN_ON(cluster->block_group != block_group);
2108 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04002109 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002110 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002111 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08002112 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002113 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002114 }
Chris Mason09655372011-05-21 09:27:38 -04002115 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002116 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002117
Josef Bacik0f9dd462008-09-23 13:14:11 -04002118}
2119
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002120u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
2121 u64 offset, u64 bytes, u64 empty_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002122{
Li Zefan34d52cb2011-03-29 13:46:06 +08002123 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002124 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002125 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002126 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002127 u64 align_gap = 0;
2128 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002129
Li Zefan34d52cb2011-03-29 13:46:06 +08002130 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002131 entry = find_free_space(ctl, &offset, &bytes_search,
2132 block_group->full_stripe_len);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002133 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002134 goto out;
2135
2136 ret = offset;
2137 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002138 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002139 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002140 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002141 } else {
David Woodhouse53b381b2013-01-29 18:40:14 -05002142
Li Zefan34d52cb2011-03-29 13:46:06 +08002143 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002144 align_gap_len = offset - entry->offset;
2145 align_gap = entry->offset;
2146
2147 entry->offset = offset + bytes;
2148 WARN_ON(entry->bytes < bytes + align_gap_len);
2149
2150 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002151 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002152 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002153 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002154 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002155 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002156
Josef Bacik96303082009-07-13 21:29:25 -04002157out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002158 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002159
David Woodhouse53b381b2013-01-29 18:40:14 -05002160 if (align_gap_len)
2161 __btrfs_add_free_space(ctl, align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002162 return ret;
2163}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002164
2165/*
2166 * given a cluster, put all of its extents back into the free space
2167 * cache. If a block group is passed, this function will only free
2168 * a cluster that belongs to the passed block group.
2169 *
2170 * Otherwise, it'll get a reference on the block group pointed to by the
2171 * cluster and remove the cluster from it.
2172 */
2173int btrfs_return_cluster_to_free_space(
2174 struct btrfs_block_group_cache *block_group,
2175 struct btrfs_free_cluster *cluster)
2176{
Li Zefan34d52cb2011-03-29 13:46:06 +08002177 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002178 int ret;
2179
2180 /* first, get a safe pointer to the block group */
2181 spin_lock(&cluster->lock);
2182 if (!block_group) {
2183 block_group = cluster->block_group;
2184 if (!block_group) {
2185 spin_unlock(&cluster->lock);
2186 return 0;
2187 }
2188 } else if (cluster->block_group != block_group) {
2189 /* someone else has already freed it don't redo their work */
2190 spin_unlock(&cluster->lock);
2191 return 0;
2192 }
2193 atomic_inc(&block_group->count);
2194 spin_unlock(&cluster->lock);
2195
Li Zefan34d52cb2011-03-29 13:46:06 +08002196 ctl = block_group->free_space_ctl;
2197
Chris Masonfa9c0d792009-04-03 09:47:43 -04002198 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002199 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002200 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002201 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002202
2203 /* finally drop our ref */
2204 btrfs_put_block_group(block_group);
2205 return ret;
2206}
2207
Josef Bacik96303082009-07-13 21:29:25 -04002208static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2209 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002210 struct btrfs_free_space *entry,
Josef Bacik96303082009-07-13 21:29:25 -04002211 u64 bytes, u64 min_start)
2212{
Li Zefan34d52cb2011-03-29 13:46:06 +08002213 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002214 int err;
2215 u64 search_start = cluster->window_start;
2216 u64 search_bytes = bytes;
2217 u64 ret = 0;
2218
Josef Bacik96303082009-07-13 21:29:25 -04002219 search_start = min_start;
2220 search_bytes = bytes;
2221
Li Zefan34d52cb2011-03-29 13:46:06 +08002222 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002223 if (err)
Josef Bacik4e69b592011-03-21 10:11:24 -04002224 return 0;
Josef Bacik96303082009-07-13 21:29:25 -04002225
2226 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002227 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002228
2229 return ret;
2230}
2231
Chris Masonfa9c0d792009-04-03 09:47:43 -04002232/*
2233 * given a cluster, try to allocate 'bytes' from it, returns 0
2234 * if it couldn't find anything suitably large, or a logical disk offset
2235 * if things worked out
2236 */
2237u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2238 struct btrfs_free_cluster *cluster, u64 bytes,
2239 u64 min_start)
2240{
Li Zefan34d52cb2011-03-29 13:46:06 +08002241 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002242 struct btrfs_free_space *entry = NULL;
2243 struct rb_node *node;
2244 u64 ret = 0;
2245
2246 spin_lock(&cluster->lock);
2247 if (bytes > cluster->max_size)
2248 goto out;
2249
2250 if (cluster->block_group != block_group)
2251 goto out;
2252
2253 node = rb_first(&cluster->root);
2254 if (!node)
2255 goto out;
2256
2257 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002258 while(1) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002259 if (entry->bytes < bytes ||
2260 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002261 node = rb_next(&entry->offset_index);
2262 if (!node)
2263 break;
2264 entry = rb_entry(node, struct btrfs_free_space,
2265 offset_index);
2266 continue;
2267 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002268
Josef Bacik4e69b592011-03-21 10:11:24 -04002269 if (entry->bitmap) {
2270 ret = btrfs_alloc_from_bitmap(block_group,
2271 cluster, entry, bytes,
Josef Bacik0b4a9d22012-01-26 15:01:11 -05002272 cluster->window_start);
Josef Bacik4e69b592011-03-21 10:11:24 -04002273 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002274 node = rb_next(&entry->offset_index);
2275 if (!node)
2276 break;
2277 entry = rb_entry(node, struct btrfs_free_space,
2278 offset_index);
2279 continue;
2280 }
Josef Bacik9b230622012-01-26 15:01:12 -05002281 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002282 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002283 ret = entry->offset;
2284
2285 entry->offset += bytes;
2286 entry->bytes -= bytes;
2287 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002288
Li Zefan5e71b5d2010-11-09 14:55:34 +08002289 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002290 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002291 break;
2292 }
2293out:
2294 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002295
Li Zefan5e71b5d2010-11-09 14:55:34 +08002296 if (!ret)
2297 return 0;
2298
Li Zefan34d52cb2011-03-29 13:46:06 +08002299 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002300
Li Zefan34d52cb2011-03-29 13:46:06 +08002301 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002302 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002303 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002304 if (entry->bitmap) {
2305 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002306 ctl->total_bitmaps--;
2307 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002308 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002309 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002310 }
2311
Li Zefan34d52cb2011-03-29 13:46:06 +08002312 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002313
Chris Masonfa9c0d792009-04-03 09:47:43 -04002314 return ret;
2315}
2316
Josef Bacik96303082009-07-13 21:29:25 -04002317static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2318 struct btrfs_free_space *entry,
2319 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002320 u64 offset, u64 bytes,
2321 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002322{
Li Zefan34d52cb2011-03-29 13:46:06 +08002323 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002324 unsigned long next_zero;
2325 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002326 unsigned long want_bits;
2327 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002328 unsigned long found_bits;
2329 unsigned long start = 0;
2330 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002331 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002332
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002333 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002334 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002335 want_bits = bytes_to_bits(bytes, ctl->unit);
2336 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002337
2338again:
2339 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002340 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002341 next_zero = find_next_zero_bit(entry->bitmap,
2342 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002343 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002344 found_bits = next_zero - i;
2345 break;
2346 }
2347 i = next_zero;
2348 }
2349
2350 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002351 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002352
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002353 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002354 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002355 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002356 }
2357
2358 total_found += found_bits;
2359
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002360 if (cluster->max_size < found_bits * ctl->unit)
2361 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002362
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002363 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2364 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002365 goto again;
2366 }
2367
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002368 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002369 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002370 ret = tree_insert_offset(&cluster->root, entry->offset,
2371 &entry->offset_index, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002372 BUG_ON(ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002373
Josef Bacik3f7de032011-11-10 08:29:20 -05002374 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002375 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002376 return 0;
2377}
2378
Chris Masonfa9c0d792009-04-03 09:47:43 -04002379/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002380 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002381 * Try to find a cluster with at least bytes total bytes, at least one
2382 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002383 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002384static noinline int
2385setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2386 struct btrfs_free_cluster *cluster,
2387 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002388 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002389{
Li Zefan34d52cb2011-03-29 13:46:06 +08002390 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002391 struct btrfs_free_space *first = NULL;
2392 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002393 struct btrfs_free_space *last;
2394 struct rb_node *node;
2395 u64 window_start;
2396 u64 window_free;
2397 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002398 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002399
Li Zefan34d52cb2011-03-29 13:46:06 +08002400 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002401 if (!entry)
2402 return -ENOSPC;
2403
2404 /*
2405 * We don't want bitmaps, so just move along until we find a normal
2406 * extent entry.
2407 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002408 while (entry->bitmap || entry->bytes < min_bytes) {
2409 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002410 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002411 node = rb_next(&entry->offset_index);
2412 if (!node)
2413 return -ENOSPC;
2414 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2415 }
2416
2417 window_start = entry->offset;
2418 window_free = entry->bytes;
2419 max_extent = entry->bytes;
2420 first = entry;
2421 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002422
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002423 for (node = rb_next(&entry->offset_index); node;
2424 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002425 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2426
Josef Bacik86d4a772011-05-25 13:03:16 -04002427 if (entry->bitmap) {
2428 if (list_empty(&entry->list))
2429 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002430 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002431 }
2432
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002433 if (entry->bytes < min_bytes)
2434 continue;
2435
2436 last = entry;
2437 window_free += entry->bytes;
2438 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002439 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002440 }
2441
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002442 if (window_free < bytes || max_extent < cont1_bytes)
2443 return -ENOSPC;
2444
Josef Bacik4e69b592011-03-21 10:11:24 -04002445 cluster->window_start = first->offset;
2446
2447 node = &first->offset_index;
2448
2449 /*
2450 * now we've found our entries, pull them out of the free space
2451 * cache and put them into the cluster rbtree
2452 */
2453 do {
2454 int ret;
2455
2456 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2457 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002458 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002459 continue;
2460
Li Zefan34d52cb2011-03-29 13:46:06 +08002461 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002462 ret = tree_insert_offset(&cluster->root, entry->offset,
2463 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002464 total_size += entry->bytes;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002465 BUG_ON(ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002466 } while (node && entry != last);
2467
2468 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002469 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002470 return 0;
2471}
2472
2473/*
2474 * This specifically looks for bitmaps that may work in the cluster, we assume
2475 * that we have already failed to find extents that will work.
2476 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002477static noinline int
2478setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2479 struct btrfs_free_cluster *cluster,
2480 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002481 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002482{
Li Zefan34d52cb2011-03-29 13:46:06 +08002483 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002484 struct btrfs_free_space *entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002485 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002486 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002487
Li Zefan34d52cb2011-03-29 13:46:06 +08002488 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002489 return -ENOSPC;
2490
Josef Bacik86d4a772011-05-25 13:03:16 -04002491 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05002492 * The bitmap that covers offset won't be in the list unless offset
2493 * is just its start offset.
2494 */
2495 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
2496 if (entry->offset != bitmap_offset) {
2497 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
2498 if (entry && list_empty(&entry->list))
2499 list_add(&entry->list, bitmaps);
2500 }
2501
Josef Bacik86d4a772011-05-25 13:03:16 -04002502 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05002503 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04002504 continue;
2505 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002506 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002507 if (!ret)
2508 return 0;
2509 }
2510
2511 /*
Li Zefan52621cb2011-11-20 07:33:38 -05002512 * The bitmaps list has all the bitmaps that record free space
2513 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04002514 */
Li Zefan52621cb2011-11-20 07:33:38 -05002515 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04002516}
2517
2518/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002519 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002520 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04002521 * We might not find them all in one contiguous area.
2522 *
2523 * returns zero and sets up cluster if things worked out, otherwise
2524 * it returns -enospc
2525 */
2526int btrfs_find_space_cluster(struct btrfs_trans_handle *trans,
Chris Mason451d7582009-06-09 20:28:34 -04002527 struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002528 struct btrfs_block_group_cache *block_group,
2529 struct btrfs_free_cluster *cluster,
2530 u64 offset, u64 bytes, u64 empty_size)
2531{
Li Zefan34d52cb2011-03-29 13:46:06 +08002532 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002533 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05002534 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002535 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002536 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002537 int ret;
2538
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002539 /*
2540 * Choose the minimum extent size we'll require for this
2541 * cluster. For SSD_SPREAD, don't allow any fragmentation.
2542 * For metadata, allow allocates with smaller extents. For
2543 * data, keep it dense.
2544 */
Chris Mason451d7582009-06-09 20:28:34 -04002545 if (btrfs_test_opt(root, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002546 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04002547 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002548 cont1_bytes = bytes;
2549 min_bytes = block_group->sectorsize;
2550 } else {
2551 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
2552 min_bytes = block_group->sectorsize;
2553 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002554
Li Zefan34d52cb2011-03-29 13:46:06 +08002555 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002556
2557 /*
2558 * If we know we don't have enough space to make a cluster don't even
2559 * bother doing all the work to try and find one.
2560 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002561 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002562 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002563 return -ENOSPC;
2564 }
2565
Chris Masonfa9c0d792009-04-03 09:47:43 -04002566 spin_lock(&cluster->lock);
2567
2568 /* someone already found a cluster, hooray */
2569 if (cluster->block_group) {
2570 ret = 0;
2571 goto out;
2572 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002573
Josef Bacik3f7de032011-11-10 08:29:20 -05002574 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
2575 min_bytes);
2576
2577 INIT_LIST_HEAD(&bitmaps);
Josef Bacik86d4a772011-05-25 13:03:16 -04002578 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002579 bytes + empty_size,
2580 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002581 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002582 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002583 offset, bytes + empty_size,
2584 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002585
2586 /* Clear our temporary list */
2587 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2588 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002589
2590 if (!ret) {
2591 atomic_inc(&block_group->count);
2592 list_add_tail(&cluster->block_group_list,
2593 &block_group->cluster_list);
2594 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05002595 } else {
2596 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002597 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002598out:
2599 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002600 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002601
2602 return ret;
2603}
2604
2605/*
2606 * simple code to zero out a cluster
2607 */
2608void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2609{
2610 spin_lock_init(&cluster->lock);
2611 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002612 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002613 cluster->max_size = 0;
2614 INIT_LIST_HEAD(&cluster->block_group_list);
2615 cluster->block_group = NULL;
2616}
2617
Li Zefan7fe1e642011-12-29 14:47:27 +08002618static int do_trimming(struct btrfs_block_group_cache *block_group,
2619 u64 *total_trimmed, u64 start, u64 bytes,
2620 u64 reserved_start, u64 reserved_bytes)
2621{
2622 struct btrfs_space_info *space_info = block_group->space_info;
2623 struct btrfs_fs_info *fs_info = block_group->fs_info;
2624 int ret;
2625 int update = 0;
2626 u64 trimmed = 0;
2627
2628 spin_lock(&space_info->lock);
2629 spin_lock(&block_group->lock);
2630 if (!block_group->ro) {
2631 block_group->reserved += reserved_bytes;
2632 space_info->bytes_reserved += reserved_bytes;
2633 update = 1;
2634 }
2635 spin_unlock(&block_group->lock);
2636 spin_unlock(&space_info->lock);
2637
2638 ret = btrfs_error_discard_extent(fs_info->extent_root,
2639 start, bytes, &trimmed);
2640 if (!ret)
2641 *total_trimmed += trimmed;
2642
2643 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
2644
2645 if (update) {
2646 spin_lock(&space_info->lock);
2647 spin_lock(&block_group->lock);
2648 if (block_group->ro)
2649 space_info->bytes_readonly += reserved_bytes;
2650 block_group->reserved -= reserved_bytes;
2651 space_info->bytes_reserved -= reserved_bytes;
2652 spin_unlock(&space_info->lock);
2653 spin_unlock(&block_group->lock);
2654 }
2655
2656 return ret;
2657}
2658
2659static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
2660 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00002661{
Li Zefan34d52cb2011-03-29 13:46:06 +08002662 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08002663 struct btrfs_free_space *entry;
2664 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00002665 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08002666 u64 extent_start;
2667 u64 extent_bytes;
2668 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002669
2670 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002671 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002672
Li Zefan34d52cb2011-03-29 13:46:06 +08002673 if (ctl->free_space < minlen) {
2674 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002675 break;
2676 }
2677
Li Zefan34d52cb2011-03-29 13:46:06 +08002678 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08002679 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002680 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002681 break;
2682 }
2683
Li Zefan7fe1e642011-12-29 14:47:27 +08002684 /* skip bitmaps */
2685 while (entry->bitmap) {
2686 node = rb_next(&entry->offset_index);
2687 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002688 spin_unlock(&ctl->tree_lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08002689 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00002690 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002691 entry = rb_entry(node, struct btrfs_free_space,
2692 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00002693 }
2694
Li Zefan7fe1e642011-12-29 14:47:27 +08002695 if (entry->offset >= end) {
2696 spin_unlock(&ctl->tree_lock);
2697 break;
2698 }
2699
2700 extent_start = entry->offset;
2701 extent_bytes = entry->bytes;
2702 start = max(start, extent_start);
2703 bytes = min(extent_start + extent_bytes, end) - start;
2704 if (bytes < minlen) {
2705 spin_unlock(&ctl->tree_lock);
2706 goto next;
2707 }
2708
2709 unlink_free_space(ctl, entry);
2710 kmem_cache_free(btrfs_free_space_cachep, entry);
2711
Li Zefan34d52cb2011-03-29 13:46:06 +08002712 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002713
Li Zefan7fe1e642011-12-29 14:47:27 +08002714 ret = do_trimming(block_group, total_trimmed, start, bytes,
2715 extent_start, extent_bytes);
2716 if (ret)
2717 break;
2718next:
Li Dongyangf7039b12011-03-24 10:24:28 +00002719 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002720
2721 if (fatal_signal_pending(current)) {
2722 ret = -ERESTARTSYS;
2723 break;
2724 }
2725
2726 cond_resched();
2727 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002728out:
2729 return ret;
2730}
2731
2732static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
2733 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
2734{
2735 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
2736 struct btrfs_free_space *entry;
2737 int ret = 0;
2738 int ret2;
2739 u64 bytes;
2740 u64 offset = offset_to_bitmap(ctl, start);
2741
2742 while (offset < end) {
2743 bool next_bitmap = false;
2744
2745 spin_lock(&ctl->tree_lock);
2746
2747 if (ctl->free_space < minlen) {
2748 spin_unlock(&ctl->tree_lock);
2749 break;
2750 }
2751
2752 entry = tree_search_offset(ctl, offset, 1, 0);
2753 if (!entry) {
2754 spin_unlock(&ctl->tree_lock);
2755 next_bitmap = true;
2756 goto next;
2757 }
2758
2759 bytes = minlen;
2760 ret2 = search_bitmap(ctl, entry, &start, &bytes);
2761 if (ret2 || start >= end) {
2762 spin_unlock(&ctl->tree_lock);
2763 next_bitmap = true;
2764 goto next;
2765 }
2766
2767 bytes = min(bytes, end - start);
2768 if (bytes < minlen) {
2769 spin_unlock(&ctl->tree_lock);
2770 goto next;
2771 }
2772
2773 bitmap_clear_bits(ctl, entry, start, bytes);
2774 if (entry->bytes == 0)
2775 free_bitmap(ctl, entry);
2776
2777 spin_unlock(&ctl->tree_lock);
2778
2779 ret = do_trimming(block_group, total_trimmed, start, bytes,
2780 start, bytes);
2781 if (ret)
2782 break;
2783next:
2784 if (next_bitmap) {
2785 offset += BITS_PER_BITMAP * ctl->unit;
2786 } else {
2787 start += bytes;
2788 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
2789 offset += BITS_PER_BITMAP * ctl->unit;
2790 }
2791
2792 if (fatal_signal_pending(current)) {
2793 ret = -ERESTARTSYS;
2794 break;
2795 }
2796
2797 cond_resched();
2798 }
2799
2800 return ret;
2801}
2802
2803int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2804 u64 *trimmed, u64 start, u64 end, u64 minlen)
2805{
2806 int ret;
2807
2808 *trimmed = 0;
2809
2810 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
2811 if (ret)
2812 return ret;
2813
2814 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
Li Dongyangf7039b12011-03-24 10:24:28 +00002815
2816 return ret;
2817}
Li Zefan581bb052011-04-20 10:06:11 +08002818
2819/*
2820 * Find the left-most item in the cache tree, and then return the
2821 * smallest inode number in the item.
2822 *
2823 * Note: the returned inode number may not be the smallest one in
2824 * the tree, if the left-most item is a bitmap.
2825 */
2826u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2827{
2828 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2829 struct btrfs_free_space *entry = NULL;
2830 u64 ino = 0;
2831
2832 spin_lock(&ctl->tree_lock);
2833
2834 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2835 goto out;
2836
2837 entry = rb_entry(rb_first(&ctl->free_space_offset),
2838 struct btrfs_free_space, offset_index);
2839
2840 if (!entry->bitmap) {
2841 ino = entry->offset;
2842
2843 unlink_free_space(ctl, entry);
2844 entry->offset++;
2845 entry->bytes--;
2846 if (!entry->bytes)
2847 kmem_cache_free(btrfs_free_space_cachep, entry);
2848 else
2849 link_free_space(ctl, entry);
2850 } else {
2851 u64 offset = 0;
2852 u64 count = 1;
2853 int ret;
2854
2855 ret = search_bitmap(ctl, entry, &offset, &count);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002856 /* Logic error; Should be empty if it can't find anything */
Li Zefan581bb052011-04-20 10:06:11 +08002857 BUG_ON(ret);
2858
2859 ino = offset;
2860 bitmap_clear_bits(ctl, entry, offset, 1);
2861 if (entry->bytes == 0)
2862 free_bitmap(ctl, entry);
2863 }
2864out:
2865 spin_unlock(&ctl->tree_lock);
2866
2867 return ino;
2868}
Li Zefan82d59022011-04-20 10:33:24 +08002869
2870struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2871 struct btrfs_path *path)
2872{
2873 struct inode *inode = NULL;
2874
2875 spin_lock(&root->cache_lock);
2876 if (root->cache_inode)
2877 inode = igrab(root->cache_inode);
2878 spin_unlock(&root->cache_lock);
2879 if (inode)
2880 return inode;
2881
2882 inode = __lookup_free_space_inode(root, path, 0);
2883 if (IS_ERR(inode))
2884 return inode;
2885
2886 spin_lock(&root->cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02002887 if (!btrfs_fs_closing(root->fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002888 root->cache_inode = igrab(inode);
2889 spin_unlock(&root->cache_lock);
2890
2891 return inode;
2892}
2893
2894int create_free_ino_inode(struct btrfs_root *root,
2895 struct btrfs_trans_handle *trans,
2896 struct btrfs_path *path)
2897{
2898 return __create_free_space_inode(root, trans, path,
2899 BTRFS_FREE_INO_OBJECTID, 0);
2900}
2901
2902int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2903{
2904 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2905 struct btrfs_path *path;
2906 struct inode *inode;
2907 int ret = 0;
2908 u64 root_gen = btrfs_root_generation(&root->root_item);
2909
Chris Mason4b9465c2011-06-03 09:36:29 -04002910 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2911 return 0;
2912
Li Zefan82d59022011-04-20 10:33:24 +08002913 /*
2914 * If we're unmounting then just return, since this does a search on the
2915 * normal root and not the commit root and we could deadlock.
2916 */
David Sterba7841cb22011-05-31 18:07:27 +02002917 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002918 return 0;
2919
2920 path = btrfs_alloc_path();
2921 if (!path)
2922 return 0;
2923
2924 inode = lookup_free_ino_inode(root, path);
2925 if (IS_ERR(inode))
2926 goto out;
2927
2928 if (root_gen != BTRFS_I(inode)->generation)
2929 goto out_put;
2930
2931 ret = __load_free_space_cache(root, inode, ctl, path, 0);
2932
2933 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002934 btrfs_err(fs_info,
2935 "failed to load free ino cache for root %llu",
2936 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08002937out_put:
2938 iput(inode);
2939out:
2940 btrfs_free_path(path);
2941 return ret;
2942}
2943
2944int btrfs_write_out_ino_cache(struct btrfs_root *root,
2945 struct btrfs_trans_handle *trans,
2946 struct btrfs_path *path)
2947{
2948 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2949 struct inode *inode;
2950 int ret;
2951
Chris Mason4b9465c2011-06-03 09:36:29 -04002952 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2953 return 0;
2954
Li Zefan82d59022011-04-20 10:33:24 +08002955 inode = lookup_free_ino_inode(root, path);
2956 if (IS_ERR(inode))
2957 return 0;
2958
2959 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
Josef Bacikc09544e2011-08-30 10:19:10 -04002960 if (ret) {
2961 btrfs_delalloc_release_metadata(inode, inode->i_size);
2962#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002963 btrfs_err(root->fs_info,
2964 "failed to write free ino cache for root %llu",
2965 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04002966#endif
2967 }
Li Zefan82d59022011-04-20 10:33:24 +08002968
2969 iput(inode);
2970 return ret;
2971}
Josef Bacik74255aa2013-03-15 09:47:08 -04002972
2973#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
2974static struct btrfs_block_group_cache *init_test_block_group(void)
2975{
2976 struct btrfs_block_group_cache *cache;
2977
2978 cache = kzalloc(sizeof(*cache), GFP_NOFS);
2979 if (!cache)
2980 return NULL;
2981 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
2982 GFP_NOFS);
2983 if (!cache->free_space_ctl) {
2984 kfree(cache);
2985 return NULL;
2986 }
2987
2988 cache->key.objectid = 0;
2989 cache->key.offset = 1024 * 1024 * 1024;
2990 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
2991 cache->sectorsize = 4096;
2992
2993 spin_lock_init(&cache->lock);
2994 INIT_LIST_HEAD(&cache->list);
2995 INIT_LIST_HEAD(&cache->cluster_list);
2996 INIT_LIST_HEAD(&cache->new_bg_list);
2997
2998 btrfs_init_free_space_ctl(cache);
2999
3000 return cache;
3001}
3002
3003/*
3004 * Checks to see if the given range is in the free space cache. This is really
3005 * just used to check the absence of space, so if there is free space in the
3006 * range at all we will return 1.
3007 */
3008static int check_exists(struct btrfs_block_group_cache *cache, u64 offset,
3009 u64 bytes)
3010{
3011 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3012 struct btrfs_free_space *info;
3013 int ret = 0;
3014
3015 spin_lock(&ctl->tree_lock);
3016 info = tree_search_offset(ctl, offset, 0, 0);
3017 if (!info) {
3018 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3019 1, 0);
3020 if (!info)
3021 goto out;
3022 }
3023
3024have_info:
3025 if (info->bitmap) {
3026 u64 bit_off, bit_bytes;
3027 struct rb_node *n;
3028 struct btrfs_free_space *tmp;
3029
3030 bit_off = offset;
3031 bit_bytes = ctl->unit;
3032 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes);
3033 if (!ret) {
3034 if (bit_off == offset) {
3035 ret = 1;
3036 goto out;
3037 } else if (bit_off > offset &&
3038 offset + bytes > bit_off) {
3039 ret = 1;
3040 goto out;
3041 }
3042 }
3043
3044 n = rb_prev(&info->offset_index);
3045 while (n) {
3046 tmp = rb_entry(n, struct btrfs_free_space,
3047 offset_index);
3048 if (tmp->offset + tmp->bytes < offset)
3049 break;
3050 if (offset + bytes < tmp->offset) {
3051 n = rb_prev(&info->offset_index);
3052 continue;
3053 }
3054 info = tmp;
3055 goto have_info;
3056 }
3057
3058 n = rb_next(&info->offset_index);
3059 while (n) {
3060 tmp = rb_entry(n, struct btrfs_free_space,
3061 offset_index);
3062 if (offset + bytes < tmp->offset)
3063 break;
3064 if (tmp->offset + tmp->bytes < offset) {
3065 n = rb_next(&info->offset_index);
3066 continue;
3067 }
3068 info = tmp;
3069 goto have_info;
3070 }
3071
3072 goto out;
3073 }
3074
3075 if (info->offset == offset) {
3076 ret = 1;
3077 goto out;
3078 }
3079
3080 if (offset > info->offset && offset < info->offset + info->bytes)
3081 ret = 1;
3082out:
3083 spin_unlock(&ctl->tree_lock);
3084 return ret;
3085}
3086
3087/*
3088 * Use this if you need to make a bitmap or extent entry specifically, it
3089 * doesn't do any of the merging that add_free_space does, this acts a lot like
3090 * how the free space cache loading stuff works, so you can get really weird
3091 * configurations.
3092 */
3093static int add_free_space_entry(struct btrfs_block_group_cache *cache,
3094 u64 offset, u64 bytes, bool bitmap)
3095{
3096 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3097 struct btrfs_free_space *info = NULL, *bitmap_info;
3098 void *map = NULL;
3099 u64 bytes_added;
3100 int ret;
3101
3102again:
3103 if (!info) {
3104 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3105 if (!info)
3106 return -ENOMEM;
3107 }
3108
3109 if (!bitmap) {
3110 spin_lock(&ctl->tree_lock);
3111 info->offset = offset;
3112 info->bytes = bytes;
3113 ret = link_free_space(ctl, info);
3114 spin_unlock(&ctl->tree_lock);
3115 if (ret)
3116 kmem_cache_free(btrfs_free_space_cachep, info);
3117 return ret;
3118 }
3119
3120 if (!map) {
3121 map = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
3122 if (!map) {
3123 kmem_cache_free(btrfs_free_space_cachep, info);
3124 return -ENOMEM;
3125 }
3126 }
3127
3128 spin_lock(&ctl->tree_lock);
3129 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3130 1, 0);
3131 if (!bitmap_info) {
3132 info->bitmap = map;
3133 map = NULL;
3134 add_new_bitmap(ctl, info, offset);
3135 bitmap_info = info;
3136 }
3137
3138 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
3139 bytes -= bytes_added;
3140 offset += bytes_added;
3141 spin_unlock(&ctl->tree_lock);
3142
3143 if (bytes)
3144 goto again;
3145
3146 if (map)
3147 kfree(map);
3148 return 0;
3149}
3150
David Sterba905d0f52013-04-30 16:51:57 +00003151#define test_msg(fmt, ...) printk(KERN_INFO "btrfs: selftest: " fmt, ##__VA_ARGS__)
3152
Josef Bacik74255aa2013-03-15 09:47:08 -04003153/*
3154 * This test just does basic sanity checking, making sure we can add an exten
3155 * entry and remove space from either end and the middle, and make sure we can
3156 * remove space that covers adjacent extent entries.
3157 */
3158static int test_extents(struct btrfs_block_group_cache *cache)
3159{
3160 int ret = 0;
3161
David Sterba905d0f52013-04-30 16:51:57 +00003162 test_msg("Running extent only tests\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003163
3164 /* First just make sure we can remove an entire entry */
3165 ret = btrfs_add_free_space(cache, 0, 4 * 1024 * 1024);
3166 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003167 test_msg("Error adding initial extents %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003168 return ret;
3169 }
3170
3171 ret = btrfs_remove_free_space(cache, 0, 4 * 1024 * 1024);
3172 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003173 test_msg("Error removing extent %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003174 return ret;
3175 }
3176
3177 if (check_exists(cache, 0, 4 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003178 test_msg("Full remove left some lingering space\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003179 return -1;
3180 }
3181
3182 /* Ok edge and middle cases now */
3183 ret = btrfs_add_free_space(cache, 0, 4 * 1024 * 1024);
3184 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003185 test_msg("Error adding half extent %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003186 return ret;
3187 }
3188
3189 ret = btrfs_remove_free_space(cache, 3 * 1024 * 1024, 1 * 1024 * 1024);
3190 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003191 test_msg("Error removing tail end %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003192 return ret;
3193 }
3194
3195 ret = btrfs_remove_free_space(cache, 0, 1 * 1024 * 1024);
3196 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003197 test_msg("Error removing front end %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003198 return ret;
3199 }
3200
3201 ret = btrfs_remove_free_space(cache, 2 * 1024 * 1024, 4096);
3202 if (ret) {
Linus Torvaldse3a0dd92013-07-09 12:33:09 -07003203 test_msg("Error removing middle piece %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003204 return ret;
3205 }
3206
3207 if (check_exists(cache, 0, 1 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003208 test_msg("Still have space at the front\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003209 return -1;
3210 }
3211
3212 if (check_exists(cache, 2 * 1024 * 1024, 4096)) {
David Sterba905d0f52013-04-30 16:51:57 +00003213 test_msg("Still have space in the middle\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003214 return -1;
3215 }
3216
3217 if (check_exists(cache, 3 * 1024 * 1024, 1 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003218 test_msg("Still have space at the end\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003219 return -1;
3220 }
3221
3222 /* Cleanup */
3223 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3224
3225 return 0;
3226}
3227
3228static int test_bitmaps(struct btrfs_block_group_cache *cache)
3229{
3230 u64 next_bitmap_offset;
3231 int ret;
3232
David Sterba905d0f52013-04-30 16:51:57 +00003233 test_msg("Running bitmap only tests\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003234
3235 ret = add_free_space_entry(cache, 0, 4 * 1024 * 1024, 1);
3236 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003237 test_msg("Couldn't create a bitmap entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003238 return ret;
3239 }
3240
3241 ret = btrfs_remove_free_space(cache, 0, 4 * 1024 * 1024);
3242 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003243 test_msg("Error removing bitmap full range %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003244 return ret;
3245 }
3246
3247 if (check_exists(cache, 0, 4 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003248 test_msg("Left some space in bitmap\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003249 return -1;
3250 }
3251
3252 ret = add_free_space_entry(cache, 0, 4 * 1024 * 1024, 1);
3253 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003254 test_msg("Couldn't add to our bitmap entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003255 return ret;
3256 }
3257
3258 ret = btrfs_remove_free_space(cache, 1 * 1024 * 1024, 2 * 1024 * 1024);
3259 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003260 test_msg("Couldn't remove middle chunk %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003261 return ret;
3262 }
3263
3264 /*
3265 * The first bitmap we have starts at offset 0 so the next one is just
3266 * at the end of the first bitmap.
3267 */
3268 next_bitmap_offset = (u64)(BITS_PER_BITMAP * 4096);
3269
3270 /* Test a bit straddling two bitmaps */
3271 ret = add_free_space_entry(cache, next_bitmap_offset -
3272 (2 * 1024 * 1024), 4 * 1024 * 1024, 1);
3273 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003274 test_msg("Couldn't add space that straddles two bitmaps %d\n",
3275 ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003276 return ret;
3277 }
3278
3279 ret = btrfs_remove_free_space(cache, next_bitmap_offset -
3280 (1 * 1024 * 1024), 2 * 1024 * 1024);
3281 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003282 test_msg("Couldn't remove overlapping space %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003283 return ret;
3284 }
3285
3286 if (check_exists(cache, next_bitmap_offset - (1 * 1024 * 1024),
3287 2 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003288 test_msg("Left some space when removing overlapping\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003289 return -1;
3290 }
3291
3292 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3293
3294 return 0;
3295}
3296
3297/* This is the high grade jackassery */
3298static int test_bitmaps_and_extents(struct btrfs_block_group_cache *cache)
3299{
3300 u64 bitmap_offset = (u64)(BITS_PER_BITMAP * 4096);
3301 int ret;
3302
David Sterba905d0f52013-04-30 16:51:57 +00003303 test_msg("Running bitmap and extent tests\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003304
3305 /*
3306 * First let's do something simple, an extent at the same offset as the
3307 * bitmap, but the free space completely in the extent and then
3308 * completely in the bitmap.
3309 */
3310 ret = add_free_space_entry(cache, 4 * 1024 * 1024, 1 * 1024 * 1024, 1);
3311 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003312 test_msg("Couldn't create bitmap entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003313 return ret;
3314 }
3315
3316 ret = add_free_space_entry(cache, 0, 1 * 1024 * 1024, 0);
3317 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003318 test_msg("Couldn't add extent entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003319 return ret;
3320 }
3321
3322 ret = btrfs_remove_free_space(cache, 0, 1 * 1024 * 1024);
3323 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003324 test_msg("Couldn't remove extent entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003325 return ret;
3326 }
3327
3328 if (check_exists(cache, 0, 1 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003329 test_msg("Left remnants after our remove\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003330 return -1;
3331 }
3332
3333 /* Now to add back the extent entry and remove from the bitmap */
3334 ret = add_free_space_entry(cache, 0, 1 * 1024 * 1024, 0);
3335 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003336 test_msg("Couldn't re-add extent entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003337 return ret;
3338 }
3339
3340 ret = btrfs_remove_free_space(cache, 4 * 1024 * 1024, 1 * 1024 * 1024);
3341 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003342 test_msg("Couldn't remove from bitmap %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003343 return ret;
3344 }
3345
3346 if (check_exists(cache, 4 * 1024 * 1024, 1 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003347 test_msg("Left remnants in the bitmap\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003348 return -1;
3349 }
3350
3351 /*
3352 * Ok so a little more evil, extent entry and bitmap at the same offset,
3353 * removing an overlapping chunk.
3354 */
3355 ret = add_free_space_entry(cache, 1 * 1024 * 1024, 4 * 1024 * 1024, 1);
3356 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003357 test_msg("Couldn't add to a bitmap %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003358 return ret;
3359 }
3360
3361 ret = btrfs_remove_free_space(cache, 512 * 1024, 3 * 1024 * 1024);
3362 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003363 test_msg("Couldn't remove overlapping space %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003364 return ret;
3365 }
3366
3367 if (check_exists(cache, 512 * 1024, 3 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003368 test_msg("Left over peices after removing overlapping\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003369 return -1;
3370 }
3371
3372 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3373
3374 /* Now with the extent entry offset into the bitmap */
3375 ret = add_free_space_entry(cache, 4 * 1024 * 1024, 4 * 1024 * 1024, 1);
3376 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003377 test_msg("Couldn't add space to the bitmap %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003378 return ret;
3379 }
3380
3381 ret = add_free_space_entry(cache, 2 * 1024 * 1024, 2 * 1024 * 1024, 0);
3382 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003383 test_msg("Couldn't add extent to the cache %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003384 return ret;
3385 }
3386
3387 ret = btrfs_remove_free_space(cache, 3 * 1024 * 1024, 4 * 1024 * 1024);
3388 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003389 test_msg("Problem removing overlapping space %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003390 return ret;
3391 }
3392
3393 if (check_exists(cache, 3 * 1024 * 1024, 4 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003394 test_msg("Left something behind when removing space");
Josef Bacik74255aa2013-03-15 09:47:08 -04003395 return -1;
3396 }
3397
3398 /*
3399 * This has blown up in the past, the extent entry starts before the
3400 * bitmap entry, but we're trying to remove an offset that falls
3401 * completely within the bitmap range and is in both the extent entry
3402 * and the bitmap entry, looks like this
3403 *
3404 * [ extent ]
3405 * [ bitmap ]
3406 * [ del ]
3407 */
3408 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3409 ret = add_free_space_entry(cache, bitmap_offset + 4 * 1024 * 1024,
3410 4 * 1024 * 1024, 1);
3411 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003412 test_msg("Couldn't add bitmap %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003413 return ret;
3414 }
3415
3416 ret = add_free_space_entry(cache, bitmap_offset - 1 * 1024 * 1024,
3417 5 * 1024 * 1024, 0);
3418 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003419 test_msg("Couldn't add extent entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003420 return ret;
3421 }
3422
3423 ret = btrfs_remove_free_space(cache, bitmap_offset + 1 * 1024 * 1024,
3424 5 * 1024 * 1024);
3425 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003426 test_msg("Failed to free our space %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003427 return ret;
3428 }
3429
3430 if (check_exists(cache, bitmap_offset + 1 * 1024 * 1024,
3431 5 * 1024 * 1024)) {
David Sterba905d0f52013-04-30 16:51:57 +00003432 test_msg("Left stuff over\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003433 return -1;
3434 }
3435
3436 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3437
3438 /*
3439 * This blew up before, we have part of the free space in a bitmap and
3440 * then the entirety of the rest of the space in an extent. This used
3441 * to return -EAGAIN back from btrfs_remove_extent, make sure this
3442 * doesn't happen.
3443 */
3444 ret = add_free_space_entry(cache, 1 * 1024 * 1024, 2 * 1024 * 1024, 1);
3445 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003446 test_msg("Couldn't add bitmap entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003447 return ret;
3448 }
3449
3450 ret = add_free_space_entry(cache, 3 * 1024 * 1024, 1 * 1024 * 1024, 0);
3451 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003452 test_msg("Couldn't add extent entry %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003453 return ret;
3454 }
3455
3456 ret = btrfs_remove_free_space(cache, 1 * 1024 * 1024, 3 * 1024 * 1024);
3457 if (ret) {
David Sterba905d0f52013-04-30 16:51:57 +00003458 test_msg("Error removing bitmap and extent overlapping %d\n", ret);
Josef Bacik74255aa2013-03-15 09:47:08 -04003459 return ret;
3460 }
3461
3462 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3463 return 0;
3464}
3465
3466void btrfs_test_free_space_cache(void)
3467{
3468 struct btrfs_block_group_cache *cache;
3469
David Sterba905d0f52013-04-30 16:51:57 +00003470 test_msg("Running btrfs free space cache tests\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003471
3472 cache = init_test_block_group();
3473 if (!cache) {
David Sterba905d0f52013-04-30 16:51:57 +00003474 test_msg("Couldn't run the tests\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003475 return;
3476 }
3477
3478 if (test_extents(cache))
3479 goto out;
3480 if (test_bitmaps(cache))
3481 goto out;
3482 if (test_bitmaps_and_extents(cache))
3483 goto out;
3484out:
3485 __btrfs_remove_free_space_cache(cache->free_space_ctl);
3486 kfree(cache->free_space_ctl);
3487 kfree(cache);
David Sterba905d0f52013-04-30 16:51:57 +00003488 test_msg("Free space cache tests finished\n");
Josef Bacik74255aa2013-03-15 09:47:08 -04003489}
David Sterba905d0f52013-04-30 16:51:57 +00003490#undef test_msg
David Sterbae6d29602013-04-30 16:51:58 +00003491#else /* !CONFIG_BTRFS_FS_RUN_SANITY_TESTS */
3492void btrfs_test_free_space_cache(void) {}
3493#endif /* !CONFIG_BTRFS_FS_RUN_SANITY_TESTS */