blob: 62020b7f7036970160f7e47ae1fc6bb0451c3ffb [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)) {
Josef Bacik2f356122011-06-10 15:31:13 -0400107 printk(KERN_INFO "Old style space inode found, converting.\n");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400108 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
109 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400110 block_group->disk_cache_state = BTRFS_DC_CLEAR;
111 }
112
Josef Bacik300e4f82011-08-29 14:06:00 -0400113 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400114 block_group->inode = igrab(inode);
115 block_group->iref = 1;
116 }
117 spin_unlock(&block_group->lock);
118
119 return inode;
120}
121
Li Zefan0414efa2011-04-20 10:20:14 +0800122int __create_free_space_inode(struct btrfs_root *root,
123 struct btrfs_trans_handle *trans,
124 struct btrfs_path *path, u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400125{
126 struct btrfs_key key;
127 struct btrfs_disk_key disk_key;
128 struct btrfs_free_space_header *header;
129 struct btrfs_inode_item *inode_item;
130 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400131 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400132 int ret;
133
Li Zefan0414efa2011-04-20 10:20:14 +0800134 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400135 if (ret)
136 return ret;
137
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400138 /* We inline crc's for the free disk space cache */
139 if (ino != BTRFS_FREE_INO_OBJECTID)
140 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
141
Josef Bacik0af3d002010-06-21 14:48:16 -0400142 leaf = path->nodes[0];
143 inode_item = btrfs_item_ptr(leaf, path->slots[0],
144 struct btrfs_inode_item);
145 btrfs_item_key(leaf, &disk_key, path->slots[0]);
146 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
147 sizeof(*inode_item));
148 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
149 btrfs_set_inode_size(leaf, inode_item, 0);
150 btrfs_set_inode_nbytes(leaf, inode_item, 0);
151 btrfs_set_inode_uid(leaf, inode_item, 0);
152 btrfs_set_inode_gid(leaf, inode_item, 0);
153 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400154 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400155 btrfs_set_inode_nlink(leaf, inode_item, 1);
156 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800157 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400158 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200159 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400160
161 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800162 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400163 key.type = 0;
164
165 ret = btrfs_insert_empty_item(trans, root, path, &key,
166 sizeof(struct btrfs_free_space_header));
167 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200168 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400169 return ret;
170 }
171 leaf = path->nodes[0];
172 header = btrfs_item_ptr(leaf, path->slots[0],
173 struct btrfs_free_space_header);
174 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
175 btrfs_set_free_space_key(leaf, header, &disk_key);
176 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200177 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400178
179 return 0;
180}
181
Li Zefan0414efa2011-04-20 10:20:14 +0800182int create_free_space_inode(struct btrfs_root *root,
183 struct btrfs_trans_handle *trans,
184 struct btrfs_block_group_cache *block_group,
185 struct btrfs_path *path)
186{
187 int ret;
188 u64 ino;
189
190 ret = btrfs_find_free_objectid(root, &ino);
191 if (ret < 0)
192 return ret;
193
194 return __create_free_space_inode(root, trans, path, ino,
195 block_group->key.objectid);
196}
197
Josef Bacik0af3d002010-06-21 14:48:16 -0400198int btrfs_truncate_free_space_cache(struct btrfs_root *root,
199 struct btrfs_trans_handle *trans,
200 struct btrfs_path *path,
201 struct inode *inode)
202{
Liu Bo65450aa2011-09-11 10:52:24 -0400203 struct btrfs_block_rsv *rsv;
Josef Bacikc8174312011-11-02 09:29:35 -0400204 u64 needed_bytes;
Josef Bacik0af3d002010-06-21 14:48:16 -0400205 loff_t oldsize;
206 int ret = 0;
207
Liu Bo65450aa2011-09-11 10:52:24 -0400208 rsv = trans->block_rsv;
Josef Bacikc8174312011-11-02 09:29:35 -0400209 trans->block_rsv = &root->fs_info->global_block_rsv;
210
211 /* 1 for slack space, 1 for updating the inode */
212 needed_bytes = btrfs_calc_trunc_metadata_size(root, 1) +
213 btrfs_calc_trans_metadata_size(root, 1);
214
215 spin_lock(&trans->block_rsv->lock);
216 if (trans->block_rsv->reserved < needed_bytes) {
217 spin_unlock(&trans->block_rsv->lock);
218 trans->block_rsv = rsv;
219 return -ENOSPC;
220 }
221 spin_unlock(&trans->block_rsv->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -0400222
223 oldsize = i_size_read(inode);
224 btrfs_i_size_write(inode, 0);
225 truncate_pagecache(inode, oldsize, 0);
226
227 /*
228 * We don't need an orphan item because truncating the free space cache
229 * will never be split across transactions.
230 */
231 ret = btrfs_truncate_inode_items(trans, root, inode,
232 0, BTRFS_EXTENT_DATA_KEY);
Liu Bo65450aa2011-09-11 10:52:24 -0400233
Josef Bacik0af3d002010-06-21 14:48:16 -0400234 if (ret) {
Josef Bacikc8174312011-11-02 09:29:35 -0400235 trans->block_rsv = rsv;
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 trans->block_rsv = rsv;
244
Li Zefan82d59022011-04-20 10:33:24 +0800245 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400246}
247
Josef Bacik9d66e232010-08-25 16:54:15 -0400248static int readahead_cache(struct inode *inode)
249{
250 struct file_ra_state *ra;
251 unsigned long last_index;
252
253 ra = kzalloc(sizeof(*ra), GFP_NOFS);
254 if (!ra)
255 return -ENOMEM;
256
257 file_ra_state_init(ra, inode->i_mapping);
258 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
259
260 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
261
262 kfree(ra);
263
264 return 0;
265}
266
Josef Bacika67509c2011-10-05 15:18:58 -0400267struct io_ctl {
268 void *cur, *orig;
269 struct page *page;
270 struct page **pages;
271 struct btrfs_root *root;
272 unsigned long size;
273 int index;
274 int num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400275 unsigned check_crcs:1;
Josef Bacika67509c2011-10-05 15:18:58 -0400276};
277
278static int io_ctl_init(struct io_ctl *io_ctl, struct inode *inode,
279 struct btrfs_root *root)
280{
281 memset(io_ctl, 0, sizeof(struct io_ctl));
282 io_ctl->num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
283 PAGE_CACHE_SHIFT;
284 io_ctl->pages = kzalloc(sizeof(struct page *) * io_ctl->num_pages,
285 GFP_NOFS);
286 if (!io_ctl->pages)
287 return -ENOMEM;
288 io_ctl->root = root;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400289 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
290 io_ctl->check_crcs = 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400291 return 0;
292}
293
294static void io_ctl_free(struct io_ctl *io_ctl)
295{
296 kfree(io_ctl->pages);
297}
298
299static void io_ctl_unmap_page(struct io_ctl *io_ctl)
300{
301 if (io_ctl->cur) {
302 kunmap(io_ctl->page);
303 io_ctl->cur = NULL;
304 io_ctl->orig = NULL;
305 }
306}
307
308static void io_ctl_map_page(struct io_ctl *io_ctl, int clear)
309{
Josef Bacika67509c2011-10-05 15:18:58 -0400310 BUG_ON(io_ctl->index >= io_ctl->num_pages);
311 io_ctl->page = io_ctl->pages[io_ctl->index++];
312 io_ctl->cur = kmap(io_ctl->page);
313 io_ctl->orig = io_ctl->cur;
314 io_ctl->size = PAGE_CACHE_SIZE;
315 if (clear)
316 memset(io_ctl->cur, 0, PAGE_CACHE_SIZE);
317}
318
319static void io_ctl_drop_pages(struct io_ctl *io_ctl)
320{
321 int i;
322
323 io_ctl_unmap_page(io_ctl);
324
325 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800326 if (io_ctl->pages[i]) {
327 ClearPageChecked(io_ctl->pages[i]);
328 unlock_page(io_ctl->pages[i]);
329 page_cache_release(io_ctl->pages[i]);
330 }
Josef Bacika67509c2011-10-05 15:18:58 -0400331 }
332}
333
334static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct inode *inode,
335 int uptodate)
336{
337 struct page *page;
338 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
339 int i;
340
341 for (i = 0; i < io_ctl->num_pages; i++) {
342 page = find_or_create_page(inode->i_mapping, i, mask);
343 if (!page) {
344 io_ctl_drop_pages(io_ctl);
345 return -ENOMEM;
346 }
347 io_ctl->pages[i] = page;
348 if (uptodate && !PageUptodate(page)) {
349 btrfs_readpage(NULL, page);
350 lock_page(page);
351 if (!PageUptodate(page)) {
352 printk(KERN_ERR "btrfs: error reading free "
353 "space cache\n");
354 io_ctl_drop_pages(io_ctl);
355 return -EIO;
356 }
357 }
358 }
359
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500360 for (i = 0; i < io_ctl->num_pages; i++) {
361 clear_page_dirty_for_io(io_ctl->pages[i]);
362 set_page_extent_mapped(io_ctl->pages[i]);
363 }
364
Josef Bacika67509c2011-10-05 15:18:58 -0400365 return 0;
366}
367
368static void io_ctl_set_generation(struct io_ctl *io_ctl, u64 generation)
369{
Al Viro528c0322012-04-13 11:03:55 -0400370 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400371
372 io_ctl_map_page(io_ctl, 1);
373
374 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400375 * Skip the csum areas. If we don't check crcs then we just have a
376 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400377 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400378 if (io_ctl->check_crcs) {
379 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
380 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
381 } else {
382 io_ctl->cur += sizeof(u64);
383 io_ctl->size -= sizeof(u64) * 2;
384 }
Josef Bacika67509c2011-10-05 15:18:58 -0400385
386 val = io_ctl->cur;
387 *val = cpu_to_le64(generation);
388 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400389}
390
391static int io_ctl_check_generation(struct io_ctl *io_ctl, u64 generation)
392{
Al Viro528c0322012-04-13 11:03:55 -0400393 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400394
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400395 /*
396 * Skip the crc area. If we don't check crcs then we just have a 64bit
397 * chunk at the front of the first page.
398 */
399 if (io_ctl->check_crcs) {
400 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
401 io_ctl->size -= sizeof(u64) +
402 (sizeof(u32) * io_ctl->num_pages);
403 } else {
404 io_ctl->cur += sizeof(u64);
405 io_ctl->size -= sizeof(u64) * 2;
406 }
Josef Bacika67509c2011-10-05 15:18:58 -0400407
Josef Bacika67509c2011-10-05 15:18:58 -0400408 gen = io_ctl->cur;
409 if (le64_to_cpu(*gen) != generation) {
410 printk_ratelimited(KERN_ERR "btrfs: space cache generation "
411 "(%Lu) does not match inode (%Lu)\n", *gen,
412 generation);
413 io_ctl_unmap_page(io_ctl);
414 return -EIO;
415 }
416 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400417 return 0;
418}
419
420static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
421{
422 u32 *tmp;
423 u32 crc = ~(u32)0;
424 unsigned offset = 0;
425
426 if (!io_ctl->check_crcs) {
427 io_ctl_unmap_page(io_ctl);
428 return;
429 }
430
431 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800432 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400433
434 crc = btrfs_csum_data(io_ctl->root, io_ctl->orig + offset, crc,
435 PAGE_CACHE_SIZE - offset);
436 btrfs_csum_final(crc, (char *)&crc);
437 io_ctl_unmap_page(io_ctl);
438 tmp = kmap(io_ctl->pages[0]);
439 tmp += index;
440 *tmp = crc;
441 kunmap(io_ctl->pages[0]);
442}
443
444static int io_ctl_check_crc(struct io_ctl *io_ctl, int index)
445{
446 u32 *tmp, val;
447 u32 crc = ~(u32)0;
448 unsigned offset = 0;
449
450 if (!io_ctl->check_crcs) {
451 io_ctl_map_page(io_ctl, 0);
452 return 0;
453 }
454
455 if (index == 0)
456 offset = sizeof(u32) * io_ctl->num_pages;
457
458 tmp = kmap(io_ctl->pages[0]);
459 tmp += index;
460 val = *tmp;
461 kunmap(io_ctl->pages[0]);
462
463 io_ctl_map_page(io_ctl, 0);
464 crc = btrfs_csum_data(io_ctl->root, io_ctl->orig + offset, crc,
465 PAGE_CACHE_SIZE - offset);
466 btrfs_csum_final(crc, (char *)&crc);
467 if (val != crc) {
468 printk_ratelimited(KERN_ERR "btrfs: csum mismatch on free "
469 "space cache\n");
470 io_ctl_unmap_page(io_ctl);
471 return -EIO;
472 }
473
Josef Bacika67509c2011-10-05 15:18:58 -0400474 return 0;
475}
476
477static int io_ctl_add_entry(struct io_ctl *io_ctl, u64 offset, u64 bytes,
478 void *bitmap)
479{
480 struct btrfs_free_space_entry *entry;
481
482 if (!io_ctl->cur)
483 return -ENOSPC;
484
485 entry = io_ctl->cur;
486 entry->offset = cpu_to_le64(offset);
487 entry->bytes = cpu_to_le64(bytes);
488 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
489 BTRFS_FREE_SPACE_EXTENT;
490 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
491 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
492
493 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
494 return 0;
495
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400496 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400497
498 /* No more pages to map */
499 if (io_ctl->index >= io_ctl->num_pages)
500 return 0;
501
502 /* map the next page */
503 io_ctl_map_page(io_ctl, 1);
504 return 0;
505}
506
507static int io_ctl_add_bitmap(struct io_ctl *io_ctl, void *bitmap)
508{
509 if (!io_ctl->cur)
510 return -ENOSPC;
511
512 /*
513 * If we aren't at the start of the current page, unmap this one and
514 * map the next one if there is any left.
515 */
516 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400517 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400518 if (io_ctl->index >= io_ctl->num_pages)
519 return -ENOSPC;
520 io_ctl_map_page(io_ctl, 0);
521 }
522
523 memcpy(io_ctl->cur, bitmap, PAGE_CACHE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400524 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400525 if (io_ctl->index < io_ctl->num_pages)
526 io_ctl_map_page(io_ctl, 0);
527 return 0;
528}
529
530static void io_ctl_zero_remaining_pages(struct io_ctl *io_ctl)
531{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400532 /*
533 * If we're not on the boundary we know we've modified the page and we
534 * need to crc the page.
535 */
536 if (io_ctl->cur != io_ctl->orig)
537 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
538 else
539 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400540
541 while (io_ctl->index < io_ctl->num_pages) {
542 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400543 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400544 }
545}
546
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400547static int io_ctl_read_entry(struct io_ctl *io_ctl,
548 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400549{
550 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500551 int ret;
552
553 if (!io_ctl->cur) {
554 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
555 if (ret)
556 return ret;
557 }
Josef Bacika67509c2011-10-05 15:18:58 -0400558
559 e = io_ctl->cur;
560 entry->offset = le64_to_cpu(e->offset);
561 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400562 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400563 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
564 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
565
566 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400567 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400568
569 io_ctl_unmap_page(io_ctl);
570
Josef Bacik2f120c02011-11-10 20:45:05 -0500571 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400572}
573
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400574static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
575 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400576{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400577 int ret;
578
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400579 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
580 if (ret)
581 return ret;
582
Josef Bacika67509c2011-10-05 15:18:58 -0400583 memcpy(entry->bitmap, io_ctl->cur, PAGE_CACHE_SIZE);
584 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400585
586 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400587}
588
Josef Bacikcd023e72012-05-14 10:06:40 -0400589/*
590 * Since we attach pinned extents after the fact we can have contiguous sections
591 * of free space that are split up in entries. This poses a problem with the
592 * tree logging stuff since it could have allocated across what appears to be 2
593 * entries since we would have merged the entries when adding the pinned extents
594 * back to the free space cache. So run through the space cache that we just
595 * loaded and merge contiguous entries. This will make the log replay stuff not
596 * blow up and it will make for nicer allocator behavior.
597 */
598static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
599{
600 struct btrfs_free_space *e, *prev = NULL;
601 struct rb_node *n;
602
603again:
604 spin_lock(&ctl->tree_lock);
605 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
606 e = rb_entry(n, struct btrfs_free_space, offset_index);
607 if (!prev)
608 goto next;
609 if (e->bitmap || prev->bitmap)
610 goto next;
611 if (prev->offset + prev->bytes == e->offset) {
612 unlink_free_space(ctl, prev);
613 unlink_free_space(ctl, e);
614 prev->bytes += e->bytes;
615 kmem_cache_free(btrfs_free_space_cachep, e);
616 link_free_space(ctl, prev);
617 prev = NULL;
618 spin_unlock(&ctl->tree_lock);
619 goto again;
620 }
621next:
622 prev = e;
623 }
624 spin_unlock(&ctl->tree_lock);
625}
626
Li Zefan0414efa2011-04-20 10:20:14 +0800627int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
628 struct btrfs_free_space_ctl *ctl,
629 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400630{
Josef Bacik9d66e232010-08-25 16:54:15 -0400631 struct btrfs_free_space_header *header;
632 struct extent_buffer *leaf;
Josef Bacika67509c2011-10-05 15:18:58 -0400633 struct io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400634 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400635 struct btrfs_free_space *e, *n;
Josef Bacik9d66e232010-08-25 16:54:15 -0400636 struct list_head bitmaps;
637 u64 num_entries;
638 u64 num_bitmaps;
639 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400640 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400641 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400642
643 INIT_LIST_HEAD(&bitmaps);
644
Josef Bacik9d66e232010-08-25 16:54:15 -0400645 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800646 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400647 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400648
649 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800650 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400651 key.type = 0;
652
653 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800654 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400655 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800656 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400657 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400658 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400659 }
660
Li Zefan0414efa2011-04-20 10:20:14 +0800661 ret = -1;
662
Josef Bacik9d66e232010-08-25 16:54:15 -0400663 leaf = path->nodes[0];
664 header = btrfs_item_ptr(leaf, path->slots[0],
665 struct btrfs_free_space_header);
666 num_entries = btrfs_free_space_entries(leaf, header);
667 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
668 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400669 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400670
671 if (BTRFS_I(inode)->generation != generation) {
672 printk(KERN_ERR "btrfs: free space inode generation (%llu) did"
Li Zefan0414efa2011-04-20 10:20:14 +0800673 " not match free space cache generation (%llu)\n",
Josef Bacik9d66e232010-08-25 16:54:15 -0400674 (unsigned long long)BTRFS_I(inode)->generation,
Li Zefan0414efa2011-04-20 10:20:14 +0800675 (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) {
724 printk(KERN_ERR "Duplicate entries in "
725 "free space cache, dumping\n");
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) {
744 printk(KERN_ERR "Duplicate entries in "
745 "free space cache, dumping\n");
746 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);
836 printk(KERN_ERR "block group %llu has an wrong amount of free "
837 "space\n", block_group->key.objectid);
838 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
848 printk(KERN_ERR "btrfs: failed to load free space cache "
849 "for block group %llu\n", block_group->key.objectid);
850 }
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 */
Li Zefan0414efa2011-04-20 10:20:14 +0800869int __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 &&
920 (io_ctl.num_pages * sizeof(u32)) >= PAGE_CACHE_SIZE) {
921 WARN_ON(1);
922 goto out_nospc;
923 }
924
Josef Bacika67509c2011-10-05 15:18:58 -0400925 io_ctl_set_generation(&io_ctl, trans->transid);
926
Josef Bacik0cb59c92010-07-02 12:14:14 -0400927 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400928 while (node) {
929 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400930
Josef Bacika67509c2011-10-05 15:18:58 -0400931 e = rb_entry(node, struct btrfs_free_space, offset_index);
932 entries++;
Josef Bacik43be2142011-04-01 14:55:00 +0000933
Josef Bacika67509c2011-10-05 15:18:58 -0400934 ret = io_ctl_add_entry(&io_ctl, e->offset, e->bytes,
935 e->bitmap);
936 if (ret)
937 goto out_nospc;
938
939 if (e->bitmap) {
940 list_add_tail(&e->list, &bitmap_list);
941 bitmaps++;
942 }
943 node = rb_next(node);
944 if (!node && cluster) {
945 node = rb_first(&cluster->root);
946 cluster = NULL;
947 }
948 }
949
950 /*
951 * We want to add any pinned extents to our free space cache
952 * so we don't leak the space
953 */
Li Zefandb804f22012-01-10 16:41:01 +0800954
955 /*
956 * We shouldn't have switched the pinned extents yet so this is the
957 * right one
958 */
959 unpin = root->fs_info->pinned_extents;
960
961 if (block_group)
962 start = block_group->key.objectid;
963
Josef Bacika67509c2011-10-05 15:18:58 -0400964 while (block_group && (start < block_group->key.objectid +
965 block_group->key.offset)) {
Li Zefandb804f22012-01-10 16:41:01 +0800966 ret = find_first_extent_bit(unpin, start,
967 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400968 EXTENT_DIRTY, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400969 if (ret) {
970 ret = 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400971 break;
972 }
973
Josef Bacika67509c2011-10-05 15:18:58 -0400974 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +0800975 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -0400976 block_group->key.offset)
977 break;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400978
Li Zefandb804f22012-01-10 16:41:01 +0800979 extent_start = max(extent_start, start);
980 extent_end = min(block_group->key.objectid +
981 block_group->key.offset, extent_end + 1);
982 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400983
Josef Bacika67509c2011-10-05 15:18:58 -0400984 entries++;
Li Zefandb804f22012-01-10 16:41:01 +0800985 ret = io_ctl_add_entry(&io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400986 if (ret)
987 goto out_nospc;
Josef Bacik2f356122011-06-10 15:31:13 -0400988
Li Zefandb804f22012-01-10 16:41:01 +0800989 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -0400990 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400991
992 /* Write out the bitmaps */
993 list_for_each_safe(pos, n, &bitmap_list) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400994 struct btrfs_free_space *entry =
995 list_entry(pos, struct btrfs_free_space, list);
996
Josef Bacika67509c2011-10-05 15:18:58 -0400997 ret = io_ctl_add_bitmap(&io_ctl, entry->bitmap);
998 if (ret)
999 goto out_nospc;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001000 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001001 }
1002
Josef Bacik0cb59c92010-07-02 12:14:14 -04001003 /* Zero out the rest of the pages just to make sure */
Josef Bacika67509c2011-10-05 15:18:58 -04001004 io_ctl_zero_remaining_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001005
Josef Bacika67509c2011-10-05 15:18:58 -04001006 ret = btrfs_dirty_pages(root, inode, io_ctl.pages, io_ctl.num_pages,
1007 0, i_size_read(inode), &cached_state);
1008 io_ctl_drop_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001009 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1010 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1011
Josef Bacikc09544e2011-08-30 10:19:10 -04001012 if (ret)
Josef Bacik2f356122011-06-10 15:31:13 -04001013 goto out;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001014
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001015
Josef Bacik5fd02042012-05-02 14:00:54 -04001016 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001017
1018 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +08001019 key.offset = offset;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001020 key.type = 0;
1021
Josef Bacika9b5fcd2011-08-19 12:06:12 -04001022 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001023 if (ret < 0) {
Josef Bacika67509c2011-10-05 15:18:58 -04001024 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001025 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1026 GFP_NOFS);
Josef Bacik2f356122011-06-10 15:31:13 -04001027 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001028 }
1029 leaf = path->nodes[0];
1030 if (ret > 0) {
1031 struct btrfs_key found_key;
1032 BUG_ON(!path->slots[0]);
1033 path->slots[0]--;
1034 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1035 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
Li Zefan0414efa2011-04-20 10:20:14 +08001036 found_key.offset != offset) {
Josef Bacika67509c2011-10-05 15:18:58 -04001037 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
1038 inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001039 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
1040 NULL, GFP_NOFS);
David Sterbab3b4aa72011-04-21 01:20:15 +02001041 btrfs_release_path(path);
Josef Bacik2f356122011-06-10 15:31:13 -04001042 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001043 }
1044 }
Josef Bacik549b4fd2011-10-05 16:33:53 -04001045
1046 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001047 header = btrfs_item_ptr(leaf, path->slots[0],
1048 struct btrfs_free_space_header);
1049 btrfs_set_free_space_entries(leaf, header, entries);
1050 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
1051 btrfs_set_free_space_generation(leaf, header, trans->transid);
1052 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02001053 btrfs_release_path(path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001054
Josef Bacikc09544e2011-08-30 10:19:10 -04001055 err = 0;
Josef Bacik2f356122011-06-10 15:31:13 -04001056out:
Josef Bacika67509c2011-10-05 15:18:58 -04001057 io_ctl_free(&io_ctl);
Josef Bacikc09544e2011-08-30 10:19:10 -04001058 if (err) {
Josef Bacika67509c2011-10-05 15:18:58 -04001059 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001060 BTRFS_I(inode)->generation = 0;
1061 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001062 btrfs_update_inode(trans, root, inode);
Josef Bacikc09544e2011-08-30 10:19:10 -04001063 return err;
Josef Bacika67509c2011-10-05 15:18:58 -04001064
1065out_nospc:
1066 list_for_each_safe(pos, n, &bitmap_list) {
1067 struct btrfs_free_space *entry =
1068 list_entry(pos, struct btrfs_free_space, list);
1069 list_del_init(&entry->list);
1070 }
1071 io_ctl_drop_pages(&io_ctl);
1072 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1073 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1074 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001075}
1076
1077int btrfs_write_out_cache(struct btrfs_root *root,
1078 struct btrfs_trans_handle *trans,
1079 struct btrfs_block_group_cache *block_group,
1080 struct btrfs_path *path)
1081{
1082 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1083 struct inode *inode;
1084 int ret = 0;
1085
1086 root = root->fs_info->tree_root;
1087
1088 spin_lock(&block_group->lock);
1089 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1090 spin_unlock(&block_group->lock);
1091 return 0;
1092 }
1093 spin_unlock(&block_group->lock);
1094
1095 inode = lookup_free_space_inode(root, block_group, path);
1096 if (IS_ERR(inode))
1097 return 0;
1098
1099 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
1100 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001101 if (ret) {
Li Zefan0414efa2011-04-20 10:20:14 +08001102 spin_lock(&block_group->lock);
1103 block_group->disk_cache_state = BTRFS_DC_ERROR;
1104 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +08001105 ret = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04001106#ifdef DEBUG
Masanari Iida934e7d42012-02-07 22:21:45 +09001107 printk(KERN_ERR "btrfs: failed to write free space cache "
Li Zefan0414efa2011-04-20 10:20:14 +08001108 "for block group %llu\n", block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001109#endif
Li Zefan0414efa2011-04-20 10:20:14 +08001110 }
1111
Josef Bacik0cb59c92010-07-02 12:14:14 -04001112 iput(inode);
1113 return ret;
1114}
1115
Li Zefan34d52cb2011-03-29 13:46:06 +08001116static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001117 u64 offset)
1118{
1119 BUG_ON(offset < bitmap_start);
1120 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001121 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001122}
1123
Li Zefan34d52cb2011-03-29 13:46:06 +08001124static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001125{
Li Zefan34d52cb2011-03-29 13:46:06 +08001126 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001127}
1128
Li Zefan34d52cb2011-03-29 13:46:06 +08001129static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001130 u64 offset)
1131{
1132 u64 bitmap_start;
1133 u64 bytes_per_bitmap;
1134
Li Zefan34d52cb2011-03-29 13:46:06 +08001135 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1136 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001137 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
1138 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001139 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001140
1141 return bitmap_start;
1142}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001143
1144static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001145 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001146{
1147 struct rb_node **p = &root->rb_node;
1148 struct rb_node *parent = NULL;
1149 struct btrfs_free_space *info;
1150
1151 while (*p) {
1152 parent = *p;
1153 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1154
Josef Bacik96303082009-07-13 21:29:25 -04001155 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001156 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001157 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001158 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001159 } else {
1160 /*
1161 * we could have a bitmap entry and an extent entry
1162 * share the same offset. If this is the case, we want
1163 * the extent entry to always be found first if we do a
1164 * linear search through the tree, since we want to have
1165 * the quickest allocation time, and allocating from an
1166 * extent is faster than allocating from a bitmap. So
1167 * if we're inserting a bitmap and we find an entry at
1168 * this offset, we want to go right, or after this entry
1169 * logically. If we are inserting an extent and we've
1170 * found a bitmap, we want to go left, or before
1171 * logically.
1172 */
1173 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001174 if (info->bitmap) {
1175 WARN_ON_ONCE(1);
1176 return -EEXIST;
1177 }
Josef Bacik96303082009-07-13 21:29:25 -04001178 p = &(*p)->rb_right;
1179 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001180 if (!info->bitmap) {
1181 WARN_ON_ONCE(1);
1182 return -EEXIST;
1183 }
Josef Bacik96303082009-07-13 21:29:25 -04001184 p = &(*p)->rb_left;
1185 }
1186 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001187 }
1188
1189 rb_link_node(node, parent, p);
1190 rb_insert_color(node, root);
1191
1192 return 0;
1193}
1194
1195/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001196 * searches the tree for the given offset.
1197 *
Josef Bacik96303082009-07-13 21:29:25 -04001198 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1199 * want a section that has at least bytes size and comes at or after the given
1200 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001201 */
Josef Bacik96303082009-07-13 21:29:25 -04001202static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001203tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001204 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001205{
Li Zefan34d52cb2011-03-29 13:46:06 +08001206 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001207 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001208
Josef Bacik96303082009-07-13 21:29:25 -04001209 /* find entry that is closest to the 'offset' */
1210 while (1) {
1211 if (!n) {
1212 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001213 break;
1214 }
Josef Bacik96303082009-07-13 21:29:25 -04001215
1216 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1217 prev = entry;
1218
1219 if (offset < entry->offset)
1220 n = n->rb_left;
1221 else if (offset > entry->offset)
1222 n = n->rb_right;
1223 else
1224 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001225 }
1226
Josef Bacik96303082009-07-13 21:29:25 -04001227 if (bitmap_only) {
1228 if (!entry)
1229 return NULL;
1230 if (entry->bitmap)
1231 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001232
Josef Bacik96303082009-07-13 21:29:25 -04001233 /*
1234 * bitmap entry and extent entry may share same offset,
1235 * in that case, bitmap entry comes after extent entry.
1236 */
1237 n = rb_next(n);
1238 if (!n)
1239 return NULL;
1240 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1241 if (entry->offset != offset)
1242 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001243
Josef Bacik96303082009-07-13 21:29:25 -04001244 WARN_ON(!entry->bitmap);
1245 return entry;
1246 } else if (entry) {
1247 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001248 /*
Josef Bacik96303082009-07-13 21:29:25 -04001249 * if previous extent entry covers the offset,
1250 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001251 */
Miao Xiede6c4112012-10-18 08:18:01 +00001252 n = rb_prev(&entry->offset_index);
1253 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001254 prev = rb_entry(n, struct btrfs_free_space,
1255 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001256 if (!prev->bitmap &&
1257 prev->offset + prev->bytes > offset)
1258 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001259 }
Josef Bacik96303082009-07-13 21:29:25 -04001260 }
1261 return entry;
1262 }
1263
1264 if (!prev)
1265 return NULL;
1266
1267 /* find last entry before the 'offset' */
1268 entry = prev;
1269 if (entry->offset > offset) {
1270 n = rb_prev(&entry->offset_index);
1271 if (n) {
1272 entry = rb_entry(n, struct btrfs_free_space,
1273 offset_index);
1274 BUG_ON(entry->offset > offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001275 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001276 if (fuzzy)
1277 return entry;
1278 else
1279 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001280 }
1281 }
1282
Josef Bacik96303082009-07-13 21:29:25 -04001283 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001284 n = rb_prev(&entry->offset_index);
1285 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001286 prev = rb_entry(n, struct btrfs_free_space,
1287 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001288 if (!prev->bitmap &&
1289 prev->offset + prev->bytes > offset)
1290 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001291 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001292 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001293 return entry;
1294 } else if (entry->offset + entry->bytes > offset)
1295 return entry;
1296
1297 if (!fuzzy)
1298 return NULL;
1299
1300 while (1) {
1301 if (entry->bitmap) {
1302 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001303 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001304 break;
1305 } else {
1306 if (entry->offset + entry->bytes > offset)
1307 break;
1308 }
1309
1310 n = rb_next(&entry->offset_index);
1311 if (!n)
1312 return NULL;
1313 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1314 }
1315 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001316}
1317
Li Zefanf333adb2010-11-09 14:57:39 +08001318static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001319__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001320 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001321{
Li Zefan34d52cb2011-03-29 13:46:06 +08001322 rb_erase(&info->offset_index, &ctl->free_space_offset);
1323 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001324}
1325
Li Zefan34d52cb2011-03-29 13:46:06 +08001326static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001327 struct btrfs_free_space *info)
1328{
Li Zefan34d52cb2011-03-29 13:46:06 +08001329 __unlink_free_space(ctl, info);
1330 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001331}
1332
Li Zefan34d52cb2011-03-29 13:46:06 +08001333static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001334 struct btrfs_free_space *info)
1335{
1336 int ret = 0;
1337
Josef Bacik96303082009-07-13 21:29:25 -04001338 BUG_ON(!info->bitmap && !info->bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001339 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001340 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001341 if (ret)
1342 return ret;
1343
Li Zefan34d52cb2011-03-29 13:46:06 +08001344 ctl->free_space += info->bytes;
1345 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001346 return ret;
1347}
1348
Li Zefan34d52cb2011-03-29 13:46:06 +08001349static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001350{
Li Zefan34d52cb2011-03-29 13:46:06 +08001351 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001352 u64 max_bytes;
1353 u64 bitmap_bytes;
1354 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001355 u64 size = block_group->key.offset;
Wang Sheng-Hui96009762012-11-30 06:30:14 +00001356 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001357 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1358
1359 BUG_ON(ctl->total_bitmaps > max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001360
1361 /*
1362 * The goal is to keep the total amount of memory used per 1gb of space
1363 * at or below 32k, so we need to adjust how much memory we allow to be
1364 * used by extent based free space tracking
1365 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001366 if (size < 1024 * 1024 * 1024)
1367 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1368 else
1369 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1370 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001371
Josef Bacik25891f72009-09-11 16:11:20 -04001372 /*
1373 * we want to account for 1 more bitmap than what we have so we can make
1374 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1375 * we add more bitmaps.
1376 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001377 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001378
Josef Bacik25891f72009-09-11 16:11:20 -04001379 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001380 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001381 return;
Josef Bacik96303082009-07-13 21:29:25 -04001382 }
Josef Bacik25891f72009-09-11 16:11:20 -04001383
1384 /*
1385 * we want the extent entry threshold to always be at most 1/2 the maxw
1386 * bytes we can have, or whatever is less than that.
1387 */
1388 extent_bytes = max_bytes - bitmap_bytes;
1389 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1390
Li Zefan34d52cb2011-03-29 13:46:06 +08001391 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001392 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001393}
1394
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001395static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1396 struct btrfs_free_space *info,
1397 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001398{
Li Zefanf38b6e72011-03-14 13:40:51 +08001399 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001400
Li Zefan34d52cb2011-03-29 13:46:06 +08001401 start = offset_to_bit(info->offset, ctl->unit, offset);
1402 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001403 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001404
Li Zefanf38b6e72011-03-14 13:40:51 +08001405 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001406
1407 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001408}
1409
1410static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1411 struct btrfs_free_space *info, u64 offset,
1412 u64 bytes)
1413{
1414 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001415 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001416}
1417
Li Zefan34d52cb2011-03-29 13:46:06 +08001418static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001419 struct btrfs_free_space *info, u64 offset,
1420 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001421{
Li Zefanf38b6e72011-03-14 13:40:51 +08001422 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001423
Li Zefan34d52cb2011-03-29 13:46:06 +08001424 start = offset_to_bit(info->offset, ctl->unit, offset);
1425 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001426 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001427
Li Zefanf38b6e72011-03-14 13:40:51 +08001428 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001429
1430 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001431 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001432}
1433
Li Zefan34d52cb2011-03-29 13:46:06 +08001434static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001435 struct btrfs_free_space *bitmap_info, u64 *offset,
1436 u64 *bytes)
1437{
1438 unsigned long found_bits = 0;
1439 unsigned long bits, i;
1440 unsigned long next_zero;
1441
Li Zefan34d52cb2011-03-29 13:46:06 +08001442 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001443 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001444 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001445
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001446 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04001447 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1448 BITS_PER_BITMAP, i);
1449 if ((next_zero - i) >= bits) {
1450 found_bits = next_zero - i;
1451 break;
1452 }
1453 i = next_zero;
1454 }
1455
1456 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001457 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1458 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001459 return 0;
1460 }
1461
1462 return -1;
1463}
1464
Li Zefan34d52cb2011-03-29 13:46:06 +08001465static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001466find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
1467 unsigned long align)
Josef Bacik96303082009-07-13 21:29:25 -04001468{
1469 struct btrfs_free_space *entry;
1470 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001471 u64 ctl_off;
1472 u64 tmp;
1473 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001474 int ret;
1475
Li Zefan34d52cb2011-03-29 13:46:06 +08001476 if (!ctl->free_space_offset.rb_node)
Josef Bacik96303082009-07-13 21:29:25 -04001477 return NULL;
1478
Li Zefan34d52cb2011-03-29 13:46:06 +08001479 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001480 if (!entry)
1481 return NULL;
1482
1483 for (node = &entry->offset_index; node; node = rb_next(node)) {
1484 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1485 if (entry->bytes < *bytes)
1486 continue;
1487
David Woodhouse53b381b2013-01-29 18:40:14 -05001488 /* make sure the space returned is big enough
1489 * to match our requested alignment
1490 */
1491 if (*bytes >= align) {
1492 ctl_off = entry->offset - ctl->start;
1493 tmp = ctl_off + align - 1;;
1494 do_div(tmp, align);
1495 tmp = tmp * align + ctl->start;
1496 align_off = tmp - entry->offset;
1497 } else {
1498 align_off = 0;
1499 tmp = entry->offset;
1500 }
1501
1502 if (entry->bytes < *bytes + align_off)
1503 continue;
1504
Josef Bacik96303082009-07-13 21:29:25 -04001505 if (entry->bitmap) {
David Woodhouse53b381b2013-01-29 18:40:14 -05001506 ret = search_bitmap(ctl, entry, &tmp, bytes);
1507 if (!ret) {
1508 *offset = tmp;
Josef Bacik96303082009-07-13 21:29:25 -04001509 return entry;
David Woodhouse53b381b2013-01-29 18:40:14 -05001510 }
Josef Bacik96303082009-07-13 21:29:25 -04001511 continue;
1512 }
1513
David Woodhouse53b381b2013-01-29 18:40:14 -05001514 *offset = tmp;
1515 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001516 return entry;
1517 }
1518
1519 return NULL;
1520}
1521
Li Zefan34d52cb2011-03-29 13:46:06 +08001522static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001523 struct btrfs_free_space *info, u64 offset)
1524{
Li Zefan34d52cb2011-03-29 13:46:06 +08001525 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001526 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001527 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001528 link_free_space(ctl, info);
1529 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001530
Li Zefan34d52cb2011-03-29 13:46:06 +08001531 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001532}
1533
Li Zefan34d52cb2011-03-29 13:46:06 +08001534static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001535 struct btrfs_free_space *bitmap_info)
1536{
Li Zefan34d52cb2011-03-29 13:46:06 +08001537 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001538 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001539 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001540 ctl->total_bitmaps--;
1541 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001542}
1543
Li Zefan34d52cb2011-03-29 13:46:06 +08001544static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001545 struct btrfs_free_space *bitmap_info,
1546 u64 *offset, u64 *bytes)
1547{
1548 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001549 u64 search_start, search_bytes;
1550 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001551
1552again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001553 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001554
Josef Bacik6606bb92009-07-31 11:03:58 -04001555 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001556 * We need to search for bits in this bitmap. We could only cover some
1557 * of the extent in this bitmap thanks to how we add space, so we need
1558 * to search for as much as it as we can and clear that amount, and then
1559 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001560 */
1561 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001562 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001563 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001564 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacik6606bb92009-07-31 11:03:58 -04001565 BUG_ON(ret < 0 || search_start != *offset);
1566
Josef Bacikbdb7d302012-06-27 15:10:56 -04001567 /* We may have found more bits than what we need */
1568 search_bytes = min(search_bytes, *bytes);
1569
1570 /* Cannot clear past the end of the bitmap */
1571 search_bytes = min(search_bytes, end - search_start + 1);
1572
1573 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1574 *offset += search_bytes;
1575 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001576
1577 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001578 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001579 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001580 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001581
Josef Bacik6606bb92009-07-31 11:03:58 -04001582 /*
1583 * no entry after this bitmap, but we still have bytes to
1584 * remove, so something has gone wrong.
1585 */
1586 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001587 return -EINVAL;
1588
Josef Bacik6606bb92009-07-31 11:03:58 -04001589 bitmap_info = rb_entry(next, struct btrfs_free_space,
1590 offset_index);
1591
1592 /*
1593 * if the next entry isn't a bitmap we need to return to let the
1594 * extent stuff do its work.
1595 */
Josef Bacik96303082009-07-13 21:29:25 -04001596 if (!bitmap_info->bitmap)
1597 return -EAGAIN;
1598
Josef Bacik6606bb92009-07-31 11:03:58 -04001599 /*
1600 * Ok the next item is a bitmap, but it may not actually hold
1601 * the information for the rest of this free space stuff, so
1602 * look for it, and if we don't find it return so we can try
1603 * everything over again.
1604 */
1605 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001606 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001607 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001608 &search_bytes);
1609 if (ret < 0 || search_start != *offset)
1610 return -EAGAIN;
1611
Josef Bacik96303082009-07-13 21:29:25 -04001612 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001613 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001614 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001615
1616 return 0;
1617}
1618
Josef Bacik2cdc3422011-05-27 14:07:49 -04001619static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1620 struct btrfs_free_space *info, u64 offset,
1621 u64 bytes)
1622{
1623 u64 bytes_to_set = 0;
1624 u64 end;
1625
1626 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1627
1628 bytes_to_set = min(end - offset, bytes);
1629
1630 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1631
1632 return bytes_to_set;
1633
1634}
1635
Li Zefan34d52cb2011-03-29 13:46:06 +08001636static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1637 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001638{
Li Zefan34d52cb2011-03-29 13:46:06 +08001639 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001640
1641 /*
1642 * If we are below the extents threshold then we can add this as an
1643 * extent, and don't have to deal with the bitmap
1644 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001645 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001646 /*
1647 * If this block group has some small extents we don't want to
1648 * use up all of our free slots in the cache with them, we want
1649 * to reserve them to larger extents, however if we have plent
1650 * of cache left then go ahead an dadd them, no sense in adding
1651 * the overhead of a bitmap if we don't have to.
1652 */
1653 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001654 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1655 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001656 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001657 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001658 }
1659 }
Josef Bacik96303082009-07-13 21:29:25 -04001660
1661 /*
1662 * some block groups are so tiny they can't be enveloped by a bitmap, so
1663 * don't even bother to create a bitmap for this
1664 */
Wang Sheng-Hui96009762012-11-30 06:30:14 +00001665 if (BITS_PER_BITMAP * ctl->unit > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001666 return false;
1667
1668 return true;
1669}
1670
Josef Bacik2cdc3422011-05-27 14:07:49 -04001671static struct btrfs_free_space_op free_space_op = {
1672 .recalc_thresholds = recalculate_thresholds,
1673 .use_bitmap = use_bitmap,
1674};
1675
Li Zefan34d52cb2011-03-29 13:46:06 +08001676static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1677 struct btrfs_free_space *info)
1678{
1679 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001680 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08001681 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001682 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08001683 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001684
1685 bytes = info->bytes;
1686 offset = info->offset;
1687
Li Zefan34d52cb2011-03-29 13:46:06 +08001688 if (!ctl->op->use_bitmap(ctl, info))
1689 return 0;
1690
Josef Bacik2cdc3422011-05-27 14:07:49 -04001691 if (ctl->op == &free_space_op)
1692 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001693again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001694 /*
1695 * Since we link bitmaps right into the cluster we need to see if we
1696 * have a cluster here, and if so and it has our bitmap we need to add
1697 * the free space to that bitmap.
1698 */
1699 if (block_group && !list_empty(&block_group->cluster_list)) {
1700 struct btrfs_free_cluster *cluster;
1701 struct rb_node *node;
1702 struct btrfs_free_space *entry;
1703
1704 cluster = list_entry(block_group->cluster_list.next,
1705 struct btrfs_free_cluster,
1706 block_group_list);
1707 spin_lock(&cluster->lock);
1708 node = rb_first(&cluster->root);
1709 if (!node) {
1710 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001711 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001712 }
1713
1714 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1715 if (!entry->bitmap) {
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 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1721 bytes_added = add_bytes_to_bitmap(ctl, entry,
1722 offset, bytes);
1723 bytes -= bytes_added;
1724 offset += bytes_added;
1725 }
1726 spin_unlock(&cluster->lock);
1727 if (!bytes) {
1728 ret = 1;
1729 goto out;
1730 }
1731 }
Chris Mason38e87882011-06-10 16:36:57 -04001732
1733no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08001734 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001735 1, 0);
1736 if (!bitmap_info) {
1737 BUG_ON(added);
1738 goto new_bitmap;
1739 }
1740
Josef Bacik2cdc3422011-05-27 14:07:49 -04001741 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1742 bytes -= bytes_added;
1743 offset += bytes_added;
1744 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001745
1746 if (!bytes) {
1747 ret = 1;
1748 goto out;
1749 } else
1750 goto again;
1751
1752new_bitmap:
1753 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001754 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001755 added = 1;
1756 info = NULL;
1757 goto again;
1758 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001759 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001760
1761 /* no pre-allocated info, allocate a new one */
1762 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001763 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1764 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001765 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001766 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001767 ret = -ENOMEM;
1768 goto out;
1769 }
1770 }
1771
1772 /* allocate the bitmap */
1773 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001774 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001775 if (!info->bitmap) {
1776 ret = -ENOMEM;
1777 goto out;
1778 }
1779 goto again;
1780 }
1781
1782out:
1783 if (info) {
1784 if (info->bitmap)
1785 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001786 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001787 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001788
1789 return ret;
1790}
1791
Chris Mason945d8962011-05-22 12:33:42 -04001792static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001793 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001794{
Li Zefan120d66e2010-11-09 14:56:50 +08001795 struct btrfs_free_space *left_info;
1796 struct btrfs_free_space *right_info;
1797 bool merged = false;
1798 u64 offset = info->offset;
1799 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001800
Josef Bacik0f9dd462008-09-23 13:14:11 -04001801 /*
1802 * first we want to see if there is free space adjacent to the range we
1803 * are adding, if there is remove that struct and add a new one to
1804 * cover the entire range
1805 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001806 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001807 if (right_info && rb_prev(&right_info->offset_index))
1808 left_info = rb_entry(rb_prev(&right_info->offset_index),
1809 struct btrfs_free_space, offset_index);
1810 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001811 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001812
Josef Bacik96303082009-07-13 21:29:25 -04001813 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001814 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001815 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001816 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001817 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001818 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001819 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001820 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001821 }
1822
Josef Bacik96303082009-07-13 21:29:25 -04001823 if (left_info && !left_info->bitmap &&
1824 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001825 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001826 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001827 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001828 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001829 info->offset = left_info->offset;
1830 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001831 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001832 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001833 }
1834
Li Zefan120d66e2010-11-09 14:56:50 +08001835 return merged;
1836}
1837
Li Zefan581bb052011-04-20 10:06:11 +08001838int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1839 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001840{
1841 struct btrfs_free_space *info;
1842 int ret = 0;
1843
Josef Bacikdc89e982011-01-28 17:05:48 -05001844 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001845 if (!info)
1846 return -ENOMEM;
1847
1848 info->offset = offset;
1849 info->bytes = bytes;
1850
Li Zefan34d52cb2011-03-29 13:46:06 +08001851 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001852
Li Zefan34d52cb2011-03-29 13:46:06 +08001853 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001854 goto link;
1855
1856 /*
1857 * There was no extent directly to the left or right of this new
1858 * extent then we know we're going to have to allocate a new extent, so
1859 * before we do that see if we need to drop this into a bitmap
1860 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001861 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001862 if (ret < 0) {
1863 goto out;
1864 } else if (ret) {
1865 ret = 0;
1866 goto out;
1867 }
1868link:
Li Zefan34d52cb2011-03-29 13:46:06 +08001869 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001870 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001871 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001872out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001873 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001874
Josef Bacik0f9dd462008-09-23 13:14:11 -04001875 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001876 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001877 BUG_ON(ret == -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001878 }
1879
Josef Bacik0f9dd462008-09-23 13:14:11 -04001880 return ret;
1881}
1882
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001883int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1884 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001885{
Li Zefan34d52cb2011-03-29 13:46:06 +08001886 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001887 struct btrfs_free_space *info;
1888 int ret = 0;
1889
Li Zefan34d52cb2011-03-29 13:46:06 +08001890 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001891
Josef Bacik96303082009-07-13 21:29:25 -04001892again:
Josef Bacikbdb7d302012-06-27 15:10:56 -04001893 if (!bytes)
1894 goto out_lock;
1895
Li Zefan34d52cb2011-03-29 13:46:06 +08001896 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001897 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001898 /*
1899 * oops didn't find an extent that matched the space we wanted
1900 * to remove, look for a bitmap instead
1901 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001902 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04001903 1, 0);
1904 if (!info) {
Chris Mason24a70312011-11-21 09:39:11 -05001905 /* the tree logging code might be calling us before we
1906 * have fully loaded the free space rbtree for this
1907 * block group. So it is possible the entry won't
1908 * be in the rbtree yet at all. The caching code
1909 * will make sure not to put it in the rbtree if
1910 * the logging code has pinned it.
1911 */
Josef Bacik6606bb92009-07-31 11:03:58 -04001912 goto out_lock;
1913 }
Josef Bacik96303082009-07-13 21:29:25 -04001914 }
1915
Josef Bacikbdb7d302012-06-27 15:10:56 -04001916 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001917 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04001918 if (offset == info->offset) {
1919 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001920
Josef Bacikbdb7d302012-06-27 15:10:56 -04001921 info->bytes -= to_free;
1922 info->offset += to_free;
1923 if (info->bytes) {
1924 ret = link_free_space(ctl, info);
1925 WARN_ON(ret);
1926 } else {
1927 kmem_cache_free(btrfs_free_space_cachep, info);
1928 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001929
Josef Bacikbdb7d302012-06-27 15:10:56 -04001930 offset += to_free;
1931 bytes -= to_free;
1932 goto again;
1933 } else {
1934 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001935
Josef Bacikbdb7d302012-06-27 15:10:56 -04001936 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001937 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001938 WARN_ON(ret);
1939 if (ret)
1940 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04001941
Josef Bacikbdb7d302012-06-27 15:10:56 -04001942 /* Not enough bytes in this entry to satisfy us */
1943 if (old_end < offset + bytes) {
1944 bytes -= old_end - offset;
1945 offset = old_end;
1946 goto again;
1947 } else if (old_end == offset + bytes) {
1948 /* all done */
1949 goto out_lock;
1950 }
1951 spin_unlock(&ctl->tree_lock);
1952
1953 ret = btrfs_add_free_space(block_group, offset + bytes,
1954 old_end - (offset + bytes));
1955 WARN_ON(ret);
1956 goto out;
1957 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001958 }
Josef Bacik96303082009-07-13 21:29:25 -04001959
Li Zefan34d52cb2011-03-29 13:46:06 +08001960 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001961 if (ret == -EAGAIN)
1962 goto again;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001963 BUG_ON(ret); /* logic error */
Josef Bacik96303082009-07-13 21:29:25 -04001964out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08001965 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001966out:
Josef Bacik25179202008-10-29 14:49:05 -04001967 return ret;
1968}
1969
Josef Bacik0f9dd462008-09-23 13:14:11 -04001970void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1971 u64 bytes)
1972{
Li Zefan34d52cb2011-03-29 13:46:06 +08001973 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001974 struct btrfs_free_space *info;
1975 struct rb_node *n;
1976 int count = 0;
1977
Li Zefan34d52cb2011-03-29 13:46:06 +08001978 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001979 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06001980 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001981 count++;
Josef Bacik96303082009-07-13 21:29:25 -04001982 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Joel Becker21380932009-04-21 12:38:29 -07001983 (unsigned long long)info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001984 (unsigned long long)info->bytes,
1985 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001986 }
Josef Bacik96303082009-07-13 21:29:25 -04001987 printk(KERN_INFO "block group has cluster?: %s\n",
1988 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001989 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
1990 "\n", count);
1991}
1992
Li Zefan34d52cb2011-03-29 13:46:06 +08001993void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001994{
Li Zefan34d52cb2011-03-29 13:46:06 +08001995 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001996
Li Zefan34d52cb2011-03-29 13:46:06 +08001997 spin_lock_init(&ctl->tree_lock);
1998 ctl->unit = block_group->sectorsize;
1999 ctl->start = block_group->key.objectid;
2000 ctl->private = block_group;
2001 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002002
Li Zefan34d52cb2011-03-29 13:46:06 +08002003 /*
2004 * we only want to have 32k of ram per block group for keeping
2005 * track of free space, and if we pass 1/2 of that we want to
2006 * start converting things over to using bitmaps
2007 */
2008 ctl->extents_thresh = ((1024 * 32) / 2) /
2009 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002010}
2011
Chris Masonfa9c0d792009-04-03 09:47:43 -04002012/*
2013 * for a given cluster, put all of its extents back into the free
2014 * space cache. If the block group passed doesn't match the block group
2015 * pointed to by the cluster, someone else raced in and freed the
2016 * cluster already. In that case, we just return without changing anything
2017 */
2018static int
2019__btrfs_return_cluster_to_free_space(
2020 struct btrfs_block_group_cache *block_group,
2021 struct btrfs_free_cluster *cluster)
2022{
Li Zefan34d52cb2011-03-29 13:46:06 +08002023 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002024 struct btrfs_free_space *entry;
2025 struct rb_node *node;
2026
2027 spin_lock(&cluster->lock);
2028 if (cluster->block_group != block_group)
2029 goto out;
2030
Josef Bacik96303082009-07-13 21:29:25 -04002031 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002032 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002033 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002034
Chris Masonfa9c0d792009-04-03 09:47:43 -04002035 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002036 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002037 bool bitmap;
2038
Chris Masonfa9c0d792009-04-03 09:47:43 -04002039 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2040 node = rb_next(&entry->offset_index);
2041 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04002042
2043 bitmap = (entry->bitmap != NULL);
2044 if (!bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08002045 try_merge_free_space(ctl, entry, false);
2046 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002047 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002048 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002049 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002050
Chris Masonfa9c0d792009-04-03 09:47:43 -04002051out:
2052 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002053 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002054 return 0;
2055}
2056
Chris Mason09655372011-05-21 09:27:38 -04002057void __btrfs_remove_free_space_cache_locked(struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002058{
2059 struct btrfs_free_space *info;
2060 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002061
Li Zefan581bb052011-04-20 10:06:11 +08002062 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2063 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002064 if (!info->bitmap) {
2065 unlink_free_space(ctl, info);
2066 kmem_cache_free(btrfs_free_space_cachep, info);
2067 } else {
2068 free_bitmap(ctl, info);
2069 }
Li Zefan581bb052011-04-20 10:06:11 +08002070 if (need_resched()) {
2071 spin_unlock(&ctl->tree_lock);
2072 cond_resched();
2073 spin_lock(&ctl->tree_lock);
2074 }
2075 }
Chris Mason09655372011-05-21 09:27:38 -04002076}
2077
2078void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2079{
2080 spin_lock(&ctl->tree_lock);
2081 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002082 spin_unlock(&ctl->tree_lock);
2083}
2084
Josef Bacik0f9dd462008-09-23 13:14:11 -04002085void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2086{
Li Zefan34d52cb2011-03-29 13:46:06 +08002087 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002088 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002089 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002090
Li Zefan34d52cb2011-03-29 13:46:06 +08002091 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002092 while ((head = block_group->cluster_list.next) !=
2093 &block_group->cluster_list) {
2094 cluster = list_entry(head, struct btrfs_free_cluster,
2095 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002096
2097 WARN_ON(cluster->block_group != block_group);
2098 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04002099 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002100 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002101 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08002102 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002103 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002104 }
Chris Mason09655372011-05-21 09:27:38 -04002105 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002106 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002107
Josef Bacik0f9dd462008-09-23 13:14:11 -04002108}
2109
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002110u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
2111 u64 offset, u64 bytes, u64 empty_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002112{
Li Zefan34d52cb2011-03-29 13:46:06 +08002113 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002114 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002115 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002116 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002117 u64 align_gap = 0;
2118 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002119
Li Zefan34d52cb2011-03-29 13:46:06 +08002120 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002121 entry = find_free_space(ctl, &offset, &bytes_search,
2122 block_group->full_stripe_len);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002123 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002124 goto out;
2125
2126 ret = offset;
2127 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002128 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002129 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002130 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002131 } else {
David Woodhouse53b381b2013-01-29 18:40:14 -05002132
Li Zefan34d52cb2011-03-29 13:46:06 +08002133 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002134 align_gap_len = offset - entry->offset;
2135 align_gap = entry->offset;
2136
2137 entry->offset = offset + bytes;
2138 WARN_ON(entry->bytes < bytes + align_gap_len);
2139
2140 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002141 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002142 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002143 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002144 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002145 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002146
Josef Bacik96303082009-07-13 21:29:25 -04002147out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002148 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002149
David Woodhouse53b381b2013-01-29 18:40:14 -05002150 if (align_gap_len)
2151 __btrfs_add_free_space(ctl, align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002152 return ret;
2153}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002154
2155/*
2156 * given a cluster, put all of its extents back into the free space
2157 * cache. If a block group is passed, this function will only free
2158 * a cluster that belongs to the passed block group.
2159 *
2160 * Otherwise, it'll get a reference on the block group pointed to by the
2161 * cluster and remove the cluster from it.
2162 */
2163int btrfs_return_cluster_to_free_space(
2164 struct btrfs_block_group_cache *block_group,
2165 struct btrfs_free_cluster *cluster)
2166{
Li Zefan34d52cb2011-03-29 13:46:06 +08002167 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002168 int ret;
2169
2170 /* first, get a safe pointer to the block group */
2171 spin_lock(&cluster->lock);
2172 if (!block_group) {
2173 block_group = cluster->block_group;
2174 if (!block_group) {
2175 spin_unlock(&cluster->lock);
2176 return 0;
2177 }
2178 } else if (cluster->block_group != block_group) {
2179 /* someone else has already freed it don't redo their work */
2180 spin_unlock(&cluster->lock);
2181 return 0;
2182 }
2183 atomic_inc(&block_group->count);
2184 spin_unlock(&cluster->lock);
2185
Li Zefan34d52cb2011-03-29 13:46:06 +08002186 ctl = block_group->free_space_ctl;
2187
Chris Masonfa9c0d792009-04-03 09:47:43 -04002188 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002189 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002190 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002191 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002192
2193 /* finally drop our ref */
2194 btrfs_put_block_group(block_group);
2195 return ret;
2196}
2197
Josef Bacik96303082009-07-13 21:29:25 -04002198static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2199 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002200 struct btrfs_free_space *entry,
Josef Bacik96303082009-07-13 21:29:25 -04002201 u64 bytes, u64 min_start)
2202{
Li Zefan34d52cb2011-03-29 13:46:06 +08002203 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002204 int err;
2205 u64 search_start = cluster->window_start;
2206 u64 search_bytes = bytes;
2207 u64 ret = 0;
2208
Josef Bacik96303082009-07-13 21:29:25 -04002209 search_start = min_start;
2210 search_bytes = bytes;
2211
Li Zefan34d52cb2011-03-29 13:46:06 +08002212 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002213 if (err)
Josef Bacik4e69b592011-03-21 10:11:24 -04002214 return 0;
Josef Bacik96303082009-07-13 21:29:25 -04002215
2216 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002217 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002218
2219 return ret;
2220}
2221
Chris Masonfa9c0d792009-04-03 09:47:43 -04002222/*
2223 * given a cluster, try to allocate 'bytes' from it, returns 0
2224 * if it couldn't find anything suitably large, or a logical disk offset
2225 * if things worked out
2226 */
2227u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2228 struct btrfs_free_cluster *cluster, u64 bytes,
2229 u64 min_start)
2230{
Li Zefan34d52cb2011-03-29 13:46:06 +08002231 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002232 struct btrfs_free_space *entry = NULL;
2233 struct rb_node *node;
2234 u64 ret = 0;
2235
2236 spin_lock(&cluster->lock);
2237 if (bytes > cluster->max_size)
2238 goto out;
2239
2240 if (cluster->block_group != block_group)
2241 goto out;
2242
2243 node = rb_first(&cluster->root);
2244 if (!node)
2245 goto out;
2246
2247 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002248 while(1) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002249 if (entry->bytes < bytes ||
2250 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002251 node = rb_next(&entry->offset_index);
2252 if (!node)
2253 break;
2254 entry = rb_entry(node, struct btrfs_free_space,
2255 offset_index);
2256 continue;
2257 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002258
Josef Bacik4e69b592011-03-21 10:11:24 -04002259 if (entry->bitmap) {
2260 ret = btrfs_alloc_from_bitmap(block_group,
2261 cluster, entry, bytes,
Josef Bacik0b4a9d22012-01-26 15:01:11 -05002262 cluster->window_start);
Josef Bacik4e69b592011-03-21 10:11:24 -04002263 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002264 node = rb_next(&entry->offset_index);
2265 if (!node)
2266 break;
2267 entry = rb_entry(node, struct btrfs_free_space,
2268 offset_index);
2269 continue;
2270 }
Josef Bacik9b230622012-01-26 15:01:12 -05002271 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002272 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002273 ret = entry->offset;
2274
2275 entry->offset += bytes;
2276 entry->bytes -= bytes;
2277 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002278
Li Zefan5e71b5d2010-11-09 14:55:34 +08002279 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002280 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002281 break;
2282 }
2283out:
2284 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002285
Li Zefan5e71b5d2010-11-09 14:55:34 +08002286 if (!ret)
2287 return 0;
2288
Li Zefan34d52cb2011-03-29 13:46:06 +08002289 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002290
Li Zefan34d52cb2011-03-29 13:46:06 +08002291 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002292 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002293 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002294 if (entry->bitmap) {
2295 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002296 ctl->total_bitmaps--;
2297 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002298 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002299 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002300 }
2301
Li Zefan34d52cb2011-03-29 13:46:06 +08002302 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002303
Chris Masonfa9c0d792009-04-03 09:47:43 -04002304 return ret;
2305}
2306
Josef Bacik96303082009-07-13 21:29:25 -04002307static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2308 struct btrfs_free_space *entry,
2309 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002310 u64 offset, u64 bytes,
2311 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002312{
Li Zefan34d52cb2011-03-29 13:46:06 +08002313 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002314 unsigned long next_zero;
2315 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002316 unsigned long want_bits;
2317 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002318 unsigned long found_bits;
2319 unsigned long start = 0;
2320 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002321 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002322
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002323 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002324 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002325 want_bits = bytes_to_bits(bytes, ctl->unit);
2326 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002327
2328again:
2329 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002330 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002331 next_zero = find_next_zero_bit(entry->bitmap,
2332 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002333 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002334 found_bits = next_zero - i;
2335 break;
2336 }
2337 i = next_zero;
2338 }
2339
2340 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002341 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002342
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002343 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002344 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002345 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002346 }
2347
2348 total_found += found_bits;
2349
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002350 if (cluster->max_size < found_bits * ctl->unit)
2351 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002352
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002353 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2354 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002355 goto again;
2356 }
2357
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002358 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002359 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002360 ret = tree_insert_offset(&cluster->root, entry->offset,
2361 &entry->offset_index, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002362 BUG_ON(ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002363
Josef Bacik3f7de032011-11-10 08:29:20 -05002364 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002365 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002366 return 0;
2367}
2368
Chris Masonfa9c0d792009-04-03 09:47:43 -04002369/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002370 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002371 * Try to find a cluster with at least bytes total bytes, at least one
2372 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002373 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002374static noinline int
2375setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2376 struct btrfs_free_cluster *cluster,
2377 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002378 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002379{
Li Zefan34d52cb2011-03-29 13:46:06 +08002380 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002381 struct btrfs_free_space *first = NULL;
2382 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002383 struct btrfs_free_space *last;
2384 struct rb_node *node;
2385 u64 window_start;
2386 u64 window_free;
2387 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002388 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002389
Li Zefan34d52cb2011-03-29 13:46:06 +08002390 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002391 if (!entry)
2392 return -ENOSPC;
2393
2394 /*
2395 * We don't want bitmaps, so just move along until we find a normal
2396 * extent entry.
2397 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002398 while (entry->bitmap || entry->bytes < min_bytes) {
2399 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002400 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002401 node = rb_next(&entry->offset_index);
2402 if (!node)
2403 return -ENOSPC;
2404 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2405 }
2406
2407 window_start = entry->offset;
2408 window_free = entry->bytes;
2409 max_extent = entry->bytes;
2410 first = entry;
2411 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002412
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002413 for (node = rb_next(&entry->offset_index); node;
2414 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002415 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2416
Josef Bacik86d4a772011-05-25 13:03:16 -04002417 if (entry->bitmap) {
2418 if (list_empty(&entry->list))
2419 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002420 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002421 }
2422
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002423 if (entry->bytes < min_bytes)
2424 continue;
2425
2426 last = entry;
2427 window_free += entry->bytes;
2428 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002429 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002430 }
2431
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002432 if (window_free < bytes || max_extent < cont1_bytes)
2433 return -ENOSPC;
2434
Josef Bacik4e69b592011-03-21 10:11:24 -04002435 cluster->window_start = first->offset;
2436
2437 node = &first->offset_index;
2438
2439 /*
2440 * now we've found our entries, pull them out of the free space
2441 * cache and put them into the cluster rbtree
2442 */
2443 do {
2444 int ret;
2445
2446 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2447 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002448 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002449 continue;
2450
Li Zefan34d52cb2011-03-29 13:46:06 +08002451 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002452 ret = tree_insert_offset(&cluster->root, entry->offset,
2453 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002454 total_size += entry->bytes;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002455 BUG_ON(ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002456 } while (node && entry != last);
2457
2458 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002459 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002460 return 0;
2461}
2462
2463/*
2464 * This specifically looks for bitmaps that may work in the cluster, we assume
2465 * that we have already failed to find extents that will work.
2466 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002467static noinline int
2468setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2469 struct btrfs_free_cluster *cluster,
2470 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002471 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002472{
Li Zefan34d52cb2011-03-29 13:46:06 +08002473 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002474 struct btrfs_free_space *entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002475 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002476 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002477
Li Zefan34d52cb2011-03-29 13:46:06 +08002478 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002479 return -ENOSPC;
2480
Josef Bacik86d4a772011-05-25 13:03:16 -04002481 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05002482 * The bitmap that covers offset won't be in the list unless offset
2483 * is just its start offset.
2484 */
2485 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
2486 if (entry->offset != bitmap_offset) {
2487 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
2488 if (entry && list_empty(&entry->list))
2489 list_add(&entry->list, bitmaps);
2490 }
2491
Josef Bacik86d4a772011-05-25 13:03:16 -04002492 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05002493 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04002494 continue;
2495 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002496 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002497 if (!ret)
2498 return 0;
2499 }
2500
2501 /*
Li Zefan52621cb2011-11-20 07:33:38 -05002502 * The bitmaps list has all the bitmaps that record free space
2503 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04002504 */
Li Zefan52621cb2011-11-20 07:33:38 -05002505 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04002506}
2507
2508/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002509 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002510 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04002511 * We might not find them all in one contiguous area.
2512 *
2513 * returns zero and sets up cluster if things worked out, otherwise
2514 * it returns -enospc
2515 */
2516int btrfs_find_space_cluster(struct btrfs_trans_handle *trans,
Chris Mason451d7582009-06-09 20:28:34 -04002517 struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002518 struct btrfs_block_group_cache *block_group,
2519 struct btrfs_free_cluster *cluster,
2520 u64 offset, u64 bytes, u64 empty_size)
2521{
Li Zefan34d52cb2011-03-29 13:46:06 +08002522 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002523 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05002524 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002525 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002526 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002527 int ret;
2528
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002529 /*
2530 * Choose the minimum extent size we'll require for this
2531 * cluster. For SSD_SPREAD, don't allow any fragmentation.
2532 * For metadata, allow allocates with smaller extents. For
2533 * data, keep it dense.
2534 */
Chris Mason451d7582009-06-09 20:28:34 -04002535 if (btrfs_test_opt(root, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002536 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04002537 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002538 cont1_bytes = bytes;
2539 min_bytes = block_group->sectorsize;
2540 } else {
2541 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
2542 min_bytes = block_group->sectorsize;
2543 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002544
Li Zefan34d52cb2011-03-29 13:46:06 +08002545 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002546
2547 /*
2548 * If we know we don't have enough space to make a cluster don't even
2549 * bother doing all the work to try and find one.
2550 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002551 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002552 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002553 return -ENOSPC;
2554 }
2555
Chris Masonfa9c0d792009-04-03 09:47:43 -04002556 spin_lock(&cluster->lock);
2557
2558 /* someone already found a cluster, hooray */
2559 if (cluster->block_group) {
2560 ret = 0;
2561 goto out;
2562 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002563
Josef Bacik3f7de032011-11-10 08:29:20 -05002564 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
2565 min_bytes);
2566
2567 INIT_LIST_HEAD(&bitmaps);
Josef Bacik86d4a772011-05-25 13:03:16 -04002568 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002569 bytes + empty_size,
2570 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002571 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002572 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002573 offset, bytes + empty_size,
2574 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002575
2576 /* Clear our temporary list */
2577 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2578 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002579
2580 if (!ret) {
2581 atomic_inc(&block_group->count);
2582 list_add_tail(&cluster->block_group_list,
2583 &block_group->cluster_list);
2584 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05002585 } else {
2586 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002587 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002588out:
2589 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002590 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002591
2592 return ret;
2593}
2594
2595/*
2596 * simple code to zero out a cluster
2597 */
2598void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2599{
2600 spin_lock_init(&cluster->lock);
2601 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002602 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002603 cluster->max_size = 0;
2604 INIT_LIST_HEAD(&cluster->block_group_list);
2605 cluster->block_group = NULL;
2606}
2607
Li Zefan7fe1e642011-12-29 14:47:27 +08002608static int do_trimming(struct btrfs_block_group_cache *block_group,
2609 u64 *total_trimmed, u64 start, u64 bytes,
2610 u64 reserved_start, u64 reserved_bytes)
2611{
2612 struct btrfs_space_info *space_info = block_group->space_info;
2613 struct btrfs_fs_info *fs_info = block_group->fs_info;
2614 int ret;
2615 int update = 0;
2616 u64 trimmed = 0;
2617
2618 spin_lock(&space_info->lock);
2619 spin_lock(&block_group->lock);
2620 if (!block_group->ro) {
2621 block_group->reserved += reserved_bytes;
2622 space_info->bytes_reserved += reserved_bytes;
2623 update = 1;
2624 }
2625 spin_unlock(&block_group->lock);
2626 spin_unlock(&space_info->lock);
2627
2628 ret = btrfs_error_discard_extent(fs_info->extent_root,
2629 start, bytes, &trimmed);
2630 if (!ret)
2631 *total_trimmed += trimmed;
2632
2633 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
2634
2635 if (update) {
2636 spin_lock(&space_info->lock);
2637 spin_lock(&block_group->lock);
2638 if (block_group->ro)
2639 space_info->bytes_readonly += reserved_bytes;
2640 block_group->reserved -= reserved_bytes;
2641 space_info->bytes_reserved -= reserved_bytes;
2642 spin_unlock(&space_info->lock);
2643 spin_unlock(&block_group->lock);
2644 }
2645
2646 return ret;
2647}
2648
2649static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
2650 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00002651{
Li Zefan34d52cb2011-03-29 13:46:06 +08002652 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08002653 struct btrfs_free_space *entry;
2654 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00002655 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08002656 u64 extent_start;
2657 u64 extent_bytes;
2658 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002659
2660 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002661 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002662
Li Zefan34d52cb2011-03-29 13:46:06 +08002663 if (ctl->free_space < minlen) {
2664 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002665 break;
2666 }
2667
Li Zefan34d52cb2011-03-29 13:46:06 +08002668 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08002669 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002670 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002671 break;
2672 }
2673
Li Zefan7fe1e642011-12-29 14:47:27 +08002674 /* skip bitmaps */
2675 while (entry->bitmap) {
2676 node = rb_next(&entry->offset_index);
2677 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002678 spin_unlock(&ctl->tree_lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08002679 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00002680 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002681 entry = rb_entry(node, struct btrfs_free_space,
2682 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00002683 }
2684
Li Zefan7fe1e642011-12-29 14:47:27 +08002685 if (entry->offset >= end) {
2686 spin_unlock(&ctl->tree_lock);
2687 break;
2688 }
2689
2690 extent_start = entry->offset;
2691 extent_bytes = entry->bytes;
2692 start = max(start, extent_start);
2693 bytes = min(extent_start + extent_bytes, end) - start;
2694 if (bytes < minlen) {
2695 spin_unlock(&ctl->tree_lock);
2696 goto next;
2697 }
2698
2699 unlink_free_space(ctl, entry);
2700 kmem_cache_free(btrfs_free_space_cachep, entry);
2701
Li Zefan34d52cb2011-03-29 13:46:06 +08002702 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002703
Li Zefan7fe1e642011-12-29 14:47:27 +08002704 ret = do_trimming(block_group, total_trimmed, start, bytes,
2705 extent_start, extent_bytes);
2706 if (ret)
2707 break;
2708next:
Li Dongyangf7039b12011-03-24 10:24:28 +00002709 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002710
2711 if (fatal_signal_pending(current)) {
2712 ret = -ERESTARTSYS;
2713 break;
2714 }
2715
2716 cond_resched();
2717 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002718out:
2719 return ret;
2720}
2721
2722static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
2723 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
2724{
2725 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
2726 struct btrfs_free_space *entry;
2727 int ret = 0;
2728 int ret2;
2729 u64 bytes;
2730 u64 offset = offset_to_bitmap(ctl, start);
2731
2732 while (offset < end) {
2733 bool next_bitmap = false;
2734
2735 spin_lock(&ctl->tree_lock);
2736
2737 if (ctl->free_space < minlen) {
2738 spin_unlock(&ctl->tree_lock);
2739 break;
2740 }
2741
2742 entry = tree_search_offset(ctl, offset, 1, 0);
2743 if (!entry) {
2744 spin_unlock(&ctl->tree_lock);
2745 next_bitmap = true;
2746 goto next;
2747 }
2748
2749 bytes = minlen;
2750 ret2 = search_bitmap(ctl, entry, &start, &bytes);
2751 if (ret2 || start >= end) {
2752 spin_unlock(&ctl->tree_lock);
2753 next_bitmap = true;
2754 goto next;
2755 }
2756
2757 bytes = min(bytes, end - start);
2758 if (bytes < minlen) {
2759 spin_unlock(&ctl->tree_lock);
2760 goto next;
2761 }
2762
2763 bitmap_clear_bits(ctl, entry, start, bytes);
2764 if (entry->bytes == 0)
2765 free_bitmap(ctl, entry);
2766
2767 spin_unlock(&ctl->tree_lock);
2768
2769 ret = do_trimming(block_group, total_trimmed, start, bytes,
2770 start, bytes);
2771 if (ret)
2772 break;
2773next:
2774 if (next_bitmap) {
2775 offset += BITS_PER_BITMAP * ctl->unit;
2776 } else {
2777 start += bytes;
2778 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
2779 offset += BITS_PER_BITMAP * ctl->unit;
2780 }
2781
2782 if (fatal_signal_pending(current)) {
2783 ret = -ERESTARTSYS;
2784 break;
2785 }
2786
2787 cond_resched();
2788 }
2789
2790 return ret;
2791}
2792
2793int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2794 u64 *trimmed, u64 start, u64 end, u64 minlen)
2795{
2796 int ret;
2797
2798 *trimmed = 0;
2799
2800 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
2801 if (ret)
2802 return ret;
2803
2804 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
Li Dongyangf7039b12011-03-24 10:24:28 +00002805
2806 return ret;
2807}
Li Zefan581bb052011-04-20 10:06:11 +08002808
2809/*
2810 * Find the left-most item in the cache tree, and then return the
2811 * smallest inode number in the item.
2812 *
2813 * Note: the returned inode number may not be the smallest one in
2814 * the tree, if the left-most item is a bitmap.
2815 */
2816u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2817{
2818 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2819 struct btrfs_free_space *entry = NULL;
2820 u64 ino = 0;
2821
2822 spin_lock(&ctl->tree_lock);
2823
2824 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2825 goto out;
2826
2827 entry = rb_entry(rb_first(&ctl->free_space_offset),
2828 struct btrfs_free_space, offset_index);
2829
2830 if (!entry->bitmap) {
2831 ino = entry->offset;
2832
2833 unlink_free_space(ctl, entry);
2834 entry->offset++;
2835 entry->bytes--;
2836 if (!entry->bytes)
2837 kmem_cache_free(btrfs_free_space_cachep, entry);
2838 else
2839 link_free_space(ctl, entry);
2840 } else {
2841 u64 offset = 0;
2842 u64 count = 1;
2843 int ret;
2844
2845 ret = search_bitmap(ctl, entry, &offset, &count);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002846 /* Logic error; Should be empty if it can't find anything */
Li Zefan581bb052011-04-20 10:06:11 +08002847 BUG_ON(ret);
2848
2849 ino = offset;
2850 bitmap_clear_bits(ctl, entry, offset, 1);
2851 if (entry->bytes == 0)
2852 free_bitmap(ctl, entry);
2853 }
2854out:
2855 spin_unlock(&ctl->tree_lock);
2856
2857 return ino;
2858}
Li Zefan82d59022011-04-20 10:33:24 +08002859
2860struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2861 struct btrfs_path *path)
2862{
2863 struct inode *inode = NULL;
2864
2865 spin_lock(&root->cache_lock);
2866 if (root->cache_inode)
2867 inode = igrab(root->cache_inode);
2868 spin_unlock(&root->cache_lock);
2869 if (inode)
2870 return inode;
2871
2872 inode = __lookup_free_space_inode(root, path, 0);
2873 if (IS_ERR(inode))
2874 return inode;
2875
2876 spin_lock(&root->cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02002877 if (!btrfs_fs_closing(root->fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002878 root->cache_inode = igrab(inode);
2879 spin_unlock(&root->cache_lock);
2880
2881 return inode;
2882}
2883
2884int create_free_ino_inode(struct btrfs_root *root,
2885 struct btrfs_trans_handle *trans,
2886 struct btrfs_path *path)
2887{
2888 return __create_free_space_inode(root, trans, path,
2889 BTRFS_FREE_INO_OBJECTID, 0);
2890}
2891
2892int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2893{
2894 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2895 struct btrfs_path *path;
2896 struct inode *inode;
2897 int ret = 0;
2898 u64 root_gen = btrfs_root_generation(&root->root_item);
2899
Chris Mason4b9465c2011-06-03 09:36:29 -04002900 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2901 return 0;
2902
Li Zefan82d59022011-04-20 10:33:24 +08002903 /*
2904 * If we're unmounting then just return, since this does a search on the
2905 * normal root and not the commit root and we could deadlock.
2906 */
David Sterba7841cb22011-05-31 18:07:27 +02002907 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002908 return 0;
2909
2910 path = btrfs_alloc_path();
2911 if (!path)
2912 return 0;
2913
2914 inode = lookup_free_ino_inode(root, path);
2915 if (IS_ERR(inode))
2916 goto out;
2917
2918 if (root_gen != BTRFS_I(inode)->generation)
2919 goto out_put;
2920
2921 ret = __load_free_space_cache(root, inode, ctl, path, 0);
2922
2923 if (ret < 0)
2924 printk(KERN_ERR "btrfs: failed to load free ino cache for "
2925 "root %llu\n", root->root_key.objectid);
2926out_put:
2927 iput(inode);
2928out:
2929 btrfs_free_path(path);
2930 return ret;
2931}
2932
2933int btrfs_write_out_ino_cache(struct btrfs_root *root,
2934 struct btrfs_trans_handle *trans,
2935 struct btrfs_path *path)
2936{
2937 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2938 struct inode *inode;
2939 int ret;
2940
Chris Mason4b9465c2011-06-03 09:36:29 -04002941 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2942 return 0;
2943
Li Zefan82d59022011-04-20 10:33:24 +08002944 inode = lookup_free_ino_inode(root, path);
2945 if (IS_ERR(inode))
2946 return 0;
2947
2948 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
Josef Bacikc09544e2011-08-30 10:19:10 -04002949 if (ret) {
2950 btrfs_delalloc_release_metadata(inode, inode->i_size);
2951#ifdef DEBUG
Li Zefan82d59022011-04-20 10:33:24 +08002952 printk(KERN_ERR "btrfs: failed to write free ino cache "
2953 "for root %llu\n", root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04002954#endif
2955 }
Li Zefan82d59022011-04-20 10:33:24 +08002956
2957 iput(inode);
2958 return ret;
2959}