blob: 79c16a68a2bcec8d8d1368833a80c88dda48aea8 [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 Bacik0f9dd462008-09-23 13:14:11 -040023#include "ctree.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040024#include "free-space-cache.h"
25#include "transaction.h"
Josef Bacik0af3d002010-06-21 14:48:16 -040026#include "disk-io.h"
Josef Bacik43be2142011-04-01 14:55:00 +000027#include "extent_io.h"
Li Zefan581bb052011-04-20 10:06:11 +080028#include "inode-map.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040029
Josef Bacik96303082009-07-13 21:29:25 -040030#define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8)
31#define MAX_CACHE_BYTES_PER_GIG (32 * 1024)
32
Li Zefan34d52cb2011-03-29 13:46:06 +080033static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040034 struct btrfs_free_space *info);
35
Li Zefan0414efa2011-04-20 10:20:14 +080036static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
37 struct btrfs_path *path,
38 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040039{
40 struct btrfs_key key;
41 struct btrfs_key location;
42 struct btrfs_disk_key disk_key;
43 struct btrfs_free_space_header *header;
44 struct extent_buffer *leaf;
45 struct inode *inode = NULL;
46 int ret;
47
Josef Bacik0af3d002010-06-21 14:48:16 -040048 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080049 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040050 key.type = 0;
51
52 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
53 if (ret < 0)
54 return ERR_PTR(ret);
55 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020056 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040057 return ERR_PTR(-ENOENT);
58 }
59
60 leaf = path->nodes[0];
61 header = btrfs_item_ptr(leaf, path->slots[0],
62 struct btrfs_free_space_header);
63 btrfs_free_space_key(leaf, header, &disk_key);
64 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020065 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040066
67 inode = btrfs_iget(root->fs_info->sb, &location, root, NULL);
68 if (!inode)
69 return ERR_PTR(-ENOENT);
70 if (IS_ERR(inode))
71 return inode;
72 if (is_bad_inode(inode)) {
73 iput(inode);
74 return ERR_PTR(-ENOENT);
75 }
76
Miao Xieadae52b2011-03-31 09:43:23 +000077 inode->i_mapping->flags &= ~__GFP_FS;
78
Li Zefan0414efa2011-04-20 10:20:14 +080079 return inode;
80}
81
82struct inode *lookup_free_space_inode(struct btrfs_root *root,
83 struct btrfs_block_group_cache
84 *block_group, struct btrfs_path *path)
85{
86 struct inode *inode = NULL;
87
88 spin_lock(&block_group->lock);
89 if (block_group->inode)
90 inode = igrab(block_group->inode);
91 spin_unlock(&block_group->lock);
92 if (inode)
93 return inode;
94
95 inode = __lookup_free_space_inode(root, path,
96 block_group->key.objectid);
97 if (IS_ERR(inode))
98 return inode;
99
Josef Bacik0af3d002010-06-21 14:48:16 -0400100 spin_lock(&block_group->lock);
Josef Bacik2f356122011-06-10 15:31:13 -0400101 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) {
102 printk(KERN_INFO "Old style space inode found, converting.\n");
103 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NODATASUM;
104 block_group->disk_cache_state = BTRFS_DC_CLEAR;
105 }
106
David Sterba7841cb22011-05-31 18:07:27 +0200107 if (!btrfs_fs_closing(root->fs_info)) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400108 block_group->inode = igrab(inode);
109 block_group->iref = 1;
110 }
111 spin_unlock(&block_group->lock);
112
113 return inode;
114}
115
Li Zefan0414efa2011-04-20 10:20:14 +0800116int __create_free_space_inode(struct btrfs_root *root,
117 struct btrfs_trans_handle *trans,
118 struct btrfs_path *path, u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400119{
120 struct btrfs_key key;
121 struct btrfs_disk_key disk_key;
122 struct btrfs_free_space_header *header;
123 struct btrfs_inode_item *inode_item;
124 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -0400125 int ret;
126
Li Zefan0414efa2011-04-20 10:20:14 +0800127 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400128 if (ret)
129 return ret;
130
131 leaf = path->nodes[0];
132 inode_item = btrfs_item_ptr(leaf, path->slots[0],
133 struct btrfs_inode_item);
134 btrfs_item_key(leaf, &disk_key, path->slots[0]);
135 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
136 sizeof(*inode_item));
137 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
138 btrfs_set_inode_size(leaf, inode_item, 0);
139 btrfs_set_inode_nbytes(leaf, inode_item, 0);
140 btrfs_set_inode_uid(leaf, inode_item, 0);
141 btrfs_set_inode_gid(leaf, inode_item, 0);
142 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
143 btrfs_set_inode_flags(leaf, inode_item, BTRFS_INODE_NOCOMPRESS |
Josef Bacik2f356122011-06-10 15:31:13 -0400144 BTRFS_INODE_PREALLOC);
Josef Bacik0af3d002010-06-21 14:48:16 -0400145 btrfs_set_inode_nlink(leaf, inode_item, 1);
146 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800147 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400148 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200149 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400150
151 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800152 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400153 key.type = 0;
154
155 ret = btrfs_insert_empty_item(trans, root, path, &key,
156 sizeof(struct btrfs_free_space_header));
157 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200158 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400159 return ret;
160 }
161 leaf = path->nodes[0];
162 header = btrfs_item_ptr(leaf, path->slots[0],
163 struct btrfs_free_space_header);
164 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
165 btrfs_set_free_space_key(leaf, header, &disk_key);
166 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200167 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400168
169 return 0;
170}
171
Li Zefan0414efa2011-04-20 10:20:14 +0800172int create_free_space_inode(struct btrfs_root *root,
173 struct btrfs_trans_handle *trans,
174 struct btrfs_block_group_cache *block_group,
175 struct btrfs_path *path)
176{
177 int ret;
178 u64 ino;
179
180 ret = btrfs_find_free_objectid(root, &ino);
181 if (ret < 0)
182 return ret;
183
184 return __create_free_space_inode(root, trans, path, ino,
185 block_group->key.objectid);
186}
187
Josef Bacik0af3d002010-06-21 14:48:16 -0400188int btrfs_truncate_free_space_cache(struct btrfs_root *root,
189 struct btrfs_trans_handle *trans,
190 struct btrfs_path *path,
191 struct inode *inode)
192{
Liu Bo65450aa2011-09-11 10:52:24 -0400193 struct btrfs_block_rsv *rsv;
Josef Bacik0af3d002010-06-21 14:48:16 -0400194 loff_t oldsize;
195 int ret = 0;
196
Liu Bo65450aa2011-09-11 10:52:24 -0400197 rsv = trans->block_rsv;
Josef Bacik0af3d002010-06-21 14:48:16 -0400198 trans->block_rsv = root->orphan_block_rsv;
199 ret = btrfs_block_rsv_check(trans, root,
200 root->orphan_block_rsv,
201 0, 5);
202 if (ret)
203 return ret;
204
205 oldsize = i_size_read(inode);
206 btrfs_i_size_write(inode, 0);
207 truncate_pagecache(inode, oldsize, 0);
208
209 /*
210 * We don't need an orphan item because truncating the free space cache
211 * will never be split across transactions.
212 */
213 ret = btrfs_truncate_inode_items(trans, root, inode,
214 0, BTRFS_EXTENT_DATA_KEY);
Liu Bo65450aa2011-09-11 10:52:24 -0400215
216 trans->block_rsv = rsv;
Josef Bacik0af3d002010-06-21 14:48:16 -0400217 if (ret) {
218 WARN_ON(1);
219 return ret;
220 }
221
Li Zefan82d59022011-04-20 10:33:24 +0800222 ret = btrfs_update_inode(trans, root, inode);
223 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400224}
225
Josef Bacik9d66e232010-08-25 16:54:15 -0400226static int readahead_cache(struct inode *inode)
227{
228 struct file_ra_state *ra;
229 unsigned long last_index;
230
231 ra = kzalloc(sizeof(*ra), GFP_NOFS);
232 if (!ra)
233 return -ENOMEM;
234
235 file_ra_state_init(ra, inode->i_mapping);
236 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
237
238 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
239
240 kfree(ra);
241
242 return 0;
243}
244
Li Zefan0414efa2011-04-20 10:20:14 +0800245int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
246 struct btrfs_free_space_ctl *ctl,
247 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400248{
Josef Bacik9d66e232010-08-25 16:54:15 -0400249 struct btrfs_free_space_header *header;
250 struct extent_buffer *leaf;
251 struct page *page;
Josef Bacik9d66e232010-08-25 16:54:15 -0400252 struct btrfs_key key;
253 struct list_head bitmaps;
254 u64 num_entries;
255 u64 num_bitmaps;
256 u64 generation;
Josef Bacik9d66e232010-08-25 16:54:15 -0400257 pgoff_t index = 0;
Josef Bacikf6a39822011-06-06 10:50:35 -0400258 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400259
260 INIT_LIST_HEAD(&bitmaps);
261
Josef Bacik9d66e232010-08-25 16:54:15 -0400262 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800263 if (!i_size_read(inode))
Josef Bacik9d66e232010-08-25 16:54:15 -0400264 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400265
266 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800267 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400268 key.type = 0;
269
270 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800271 if (ret < 0)
272 goto out;
273 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400274 btrfs_release_path(path);
Li Zefan0414efa2011-04-20 10:20:14 +0800275 ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400276 goto out;
277 }
278
Li Zefan0414efa2011-04-20 10:20:14 +0800279 ret = -1;
280
Josef Bacik9d66e232010-08-25 16:54:15 -0400281 leaf = path->nodes[0];
282 header = btrfs_item_ptr(leaf, path->slots[0],
283 struct btrfs_free_space_header);
284 num_entries = btrfs_free_space_entries(leaf, header);
285 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
286 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400287 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400288
289 if (BTRFS_I(inode)->generation != generation) {
290 printk(KERN_ERR "btrfs: free space inode generation (%llu) did"
Li Zefan0414efa2011-04-20 10:20:14 +0800291 " not match free space cache generation (%llu)\n",
Josef Bacik9d66e232010-08-25 16:54:15 -0400292 (unsigned long long)BTRFS_I(inode)->generation,
Li Zefan0414efa2011-04-20 10:20:14 +0800293 (unsigned long long)generation);
294 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400295 }
296
297 if (!num_entries)
298 goto out;
299
Josef Bacik9d66e232010-08-25 16:54:15 -0400300 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800301 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400302 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400303
304 while (1) {
305 struct btrfs_free_space_entry *entry;
306 struct btrfs_free_space *e;
307 void *addr;
308 unsigned long offset = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400309 int need_loop = 0;
310
311 if (!num_entries && !num_bitmaps)
312 break;
313
Josef Bacika94733d2011-07-11 10:47:06 -0400314 page = find_or_create_page(inode->i_mapping, index, GFP_NOFS);
Li Zefan0414efa2011-04-20 10:20:14 +0800315 if (!page)
Josef Bacik9d66e232010-08-25 16:54:15 -0400316 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400317
318 if (!PageUptodate(page)) {
319 btrfs_readpage(NULL, page);
320 lock_page(page);
321 if (!PageUptodate(page)) {
322 unlock_page(page);
323 page_cache_release(page);
324 printk(KERN_ERR "btrfs: error reading free "
Li Zefan0414efa2011-04-20 10:20:14 +0800325 "space cache\n");
Josef Bacik9d66e232010-08-25 16:54:15 -0400326 goto free_cache;
327 }
328 }
329 addr = kmap(page);
330
331 if (index == 0) {
332 u64 *gen;
333
Josef Bacik2f356122011-06-10 15:31:13 -0400334 /*
335 * We put a bogus crc in the front of the first page in
336 * case old kernels try to mount a fs with the new
337 * format to make sure they discard the cache.
338 */
339 addr += sizeof(u64);
340 offset += sizeof(u64);
341
342 gen = addr;
Josef Bacik9d66e232010-08-25 16:54:15 -0400343 if (*gen != BTRFS_I(inode)->generation) {
344 printk(KERN_ERR "btrfs: space cache generation"
Li Zefan0414efa2011-04-20 10:20:14 +0800345 " (%llu) does not match inode (%llu)\n",
Josef Bacik9d66e232010-08-25 16:54:15 -0400346 (unsigned long long)*gen,
347 (unsigned long long)
Li Zefan0414efa2011-04-20 10:20:14 +0800348 BTRFS_I(inode)->generation);
Josef Bacik9d66e232010-08-25 16:54:15 -0400349 kunmap(page);
350 unlock_page(page);
351 page_cache_release(page);
352 goto free_cache;
353 }
Josef Bacik2f356122011-06-10 15:31:13 -0400354 addr += sizeof(u64);
355 offset += sizeof(u64);
Josef Bacik9d66e232010-08-25 16:54:15 -0400356 }
Josef Bacik2f356122011-06-10 15:31:13 -0400357 entry = addr;
Josef Bacik9d66e232010-08-25 16:54:15 -0400358
359 while (1) {
360 if (!num_entries)
361 break;
362
363 need_loop = 1;
Josef Bacikdc89e982011-01-28 17:05:48 -0500364 e = kmem_cache_zalloc(btrfs_free_space_cachep,
365 GFP_NOFS);
Josef Bacik9d66e232010-08-25 16:54:15 -0400366 if (!e) {
367 kunmap(page);
368 unlock_page(page);
369 page_cache_release(page);
370 goto free_cache;
371 }
372
373 e->offset = le64_to_cpu(entry->offset);
374 e->bytes = le64_to_cpu(entry->bytes);
375 if (!e->bytes) {
376 kunmap(page);
Josef Bacikdc89e982011-01-28 17:05:48 -0500377 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400378 unlock_page(page);
379 page_cache_release(page);
380 goto free_cache;
381 }
382
383 if (entry->type == BTRFS_FREE_SPACE_EXTENT) {
Li Zefan34d52cb2011-03-29 13:46:06 +0800384 spin_lock(&ctl->tree_lock);
385 ret = link_free_space(ctl, e);
386 spin_unlock(&ctl->tree_lock);
Josef Bacik207dde82011-05-13 14:49:23 -0400387 if (ret) {
388 printk(KERN_ERR "Duplicate entries in "
389 "free space cache, dumping\n");
390 kunmap(page);
391 unlock_page(page);
392 page_cache_release(page);
393 goto free_cache;
394 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400395 } else {
396 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
397 if (!e->bitmap) {
398 kunmap(page);
Josef Bacikdc89e982011-01-28 17:05:48 -0500399 kmem_cache_free(
400 btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400401 unlock_page(page);
402 page_cache_release(page);
403 goto free_cache;
404 }
Li Zefan34d52cb2011-03-29 13:46:06 +0800405 spin_lock(&ctl->tree_lock);
Josef Bacikf6a39822011-06-06 10:50:35 -0400406 ret = link_free_space(ctl, e);
Li Zefan34d52cb2011-03-29 13:46:06 +0800407 ctl->total_bitmaps++;
408 ctl->op->recalc_thresholds(ctl);
409 spin_unlock(&ctl->tree_lock);
Josef Bacik207dde82011-05-13 14:49:23 -0400410 if (ret) {
411 printk(KERN_ERR "Duplicate entries in "
412 "free space cache, dumping\n");
413 kunmap(page);
414 unlock_page(page);
415 page_cache_release(page);
416 goto free_cache;
417 }
Josef Bacikf6a39822011-06-06 10:50:35 -0400418 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400419 }
420
421 num_entries--;
422 offset += sizeof(struct btrfs_free_space_entry);
423 if (offset + sizeof(struct btrfs_free_space_entry) >=
424 PAGE_CACHE_SIZE)
425 break;
426 entry++;
427 }
428
429 /*
430 * We read an entry out of this page, we need to move on to the
431 * next page.
432 */
433 if (need_loop) {
434 kunmap(page);
435 goto next;
436 }
437
438 /*
439 * We add the bitmaps at the end of the entries in order that
440 * the bitmap entries are added to the cache.
441 */
442 e = list_entry(bitmaps.next, struct btrfs_free_space, list);
443 list_del_init(&e->list);
444 memcpy(e->bitmap, addr, PAGE_CACHE_SIZE);
445 kunmap(page);
446 num_bitmaps--;
447next:
448 unlock_page(page);
449 page_cache_release(page);
450 index++;
451 }
452
453 ret = 1;
454out:
Josef Bacik9d66e232010-08-25 16:54:15 -0400455 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400456free_cache:
Li Zefan0414efa2011-04-20 10:20:14 +0800457 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400458 goto out;
459}
460
Li Zefan0414efa2011-04-20 10:20:14 +0800461int load_free_space_cache(struct btrfs_fs_info *fs_info,
462 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400463{
Li Zefan34d52cb2011-03-29 13:46:06 +0800464 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800465 struct btrfs_root *root = fs_info->tree_root;
466 struct inode *inode;
467 struct btrfs_path *path;
468 int ret;
469 bool matched;
470 u64 used = btrfs_block_group_used(&block_group->item);
471
472 /*
473 * If we're unmounting then just return, since this does a search on the
474 * normal root and not the commit root and we could deadlock.
475 */
David Sterba7841cb22011-05-31 18:07:27 +0200476 if (btrfs_fs_closing(fs_info))
Li Zefan0414efa2011-04-20 10:20:14 +0800477 return 0;
478
479 /*
480 * If this block group has been marked to be cleared for one reason or
481 * another then we can't trust the on disk cache, so just return.
482 */
483 spin_lock(&block_group->lock);
484 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
485 spin_unlock(&block_group->lock);
486 return 0;
487 }
488 spin_unlock(&block_group->lock);
489
490 path = btrfs_alloc_path();
491 if (!path)
492 return 0;
493
494 inode = lookup_free_space_inode(root, block_group, path);
495 if (IS_ERR(inode)) {
496 btrfs_free_path(path);
497 return 0;
498 }
499
500 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
501 path, block_group->key.objectid);
502 btrfs_free_path(path);
503 if (ret <= 0)
504 goto out;
505
506 spin_lock(&ctl->tree_lock);
507 matched = (ctl->free_space == (block_group->key.offset - used -
508 block_group->bytes_super));
509 spin_unlock(&ctl->tree_lock);
510
511 if (!matched) {
512 __btrfs_remove_free_space_cache(ctl);
513 printk(KERN_ERR "block group %llu has an wrong amount of free "
514 "space\n", block_group->key.objectid);
515 ret = -1;
516 }
517out:
518 if (ret < 0) {
519 /* This cache is bogus, make sure it gets cleared */
520 spin_lock(&block_group->lock);
521 block_group->disk_cache_state = BTRFS_DC_CLEAR;
522 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800523 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800524
525 printk(KERN_ERR "btrfs: failed to load free space cache "
526 "for block group %llu\n", block_group->key.objectid);
527 }
528
529 iput(inode);
530 return ret;
531}
532
533int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
534 struct btrfs_free_space_ctl *ctl,
535 struct btrfs_block_group_cache *block_group,
536 struct btrfs_trans_handle *trans,
537 struct btrfs_path *path, u64 offset)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400538{
539 struct btrfs_free_space_header *header;
540 struct extent_buffer *leaf;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400541 struct rb_node *node;
542 struct list_head *pos, *n;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400543 struct page **pages;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400544 struct page *page;
545 struct extent_state *cached_state = NULL;
Josef Bacik43be2142011-04-01 14:55:00 +0000546 struct btrfs_free_cluster *cluster = NULL;
547 struct extent_io_tree *unpin = NULL;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400548 struct list_head bitmap_list;
549 struct btrfs_key key;
Josef Bacik43be2142011-04-01 14:55:00 +0000550 u64 start, end, len;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400551 u64 bytes = 0;
Josef Bacik2f356122011-06-10 15:31:13 -0400552 u32 crc = ~(u32)0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400553 int index = 0, num_pages = 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400554 int entries = 0;
555 int bitmaps = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800556 int ret = -1;
Josef Bacik43be2142011-04-01 14:55:00 +0000557 bool next_page = false;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400558 bool out_of_space = false;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400559
Josef Bacik0cb59c92010-07-02 12:14:14 -0400560 INIT_LIST_HEAD(&bitmap_list);
561
Li Zefan34d52cb2011-03-29 13:46:06 +0800562 node = rb_first(&ctl->free_space_offset);
Li Zefan0414efa2011-04-20 10:20:14 +0800563 if (!node)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400564 return 0;
565
Li Zefan0414efa2011-04-20 10:20:14 +0800566 if (!i_size_read(inode))
567 return -1;
Josef Bacik2b209822010-12-03 13:17:53 -0500568
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400569 num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
570 PAGE_CACHE_SHIFT;
Chris Mason211f96c2011-06-03 01:26:53 -0400571
Josef Bacik0cb59c92010-07-02 12:14:14 -0400572 filemap_write_and_wait(inode->i_mapping);
573 btrfs_wait_ordered_range(inode, inode->i_size &
574 ~(root->sectorsize - 1), (u64)-1);
575
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400576 pages = kzalloc(sizeof(struct page *) * num_pages, GFP_NOFS);
Josef Bacik2f356122011-06-10 15:31:13 -0400577 if (!pages)
Li Zefan0414efa2011-04-20 10:20:14 +0800578 return -1;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400579
Josef Bacik43be2142011-04-01 14:55:00 +0000580 /* Get the cluster for this block_group if it exists */
Li Zefan0414efa2011-04-20 10:20:14 +0800581 if (block_group && !list_empty(&block_group->cluster_list))
Josef Bacik43be2142011-04-01 14:55:00 +0000582 cluster = list_entry(block_group->cluster_list.next,
583 struct btrfs_free_cluster,
584 block_group_list);
585
586 /*
587 * We shouldn't have switched the pinned extents yet so this is the
588 * right one
589 */
590 unpin = root->fs_info->pinned_extents;
591
Josef Bacik0cb59c92010-07-02 12:14:14 -0400592 /*
593 * Lock all pages first so we can lock the extent safely.
594 *
595 * NOTE: Because we hold the ref the entire time we're going to write to
596 * the page find_get_page should never fail, so we don't do a check
597 * after find_get_page at this point. Just putting this here so people
598 * know and don't freak out.
599 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400600 while (index < num_pages) {
Josef Bacika94733d2011-07-11 10:47:06 -0400601 page = find_or_create_page(inode->i_mapping, index, GFP_NOFS);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400602 if (!page) {
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400603 int i;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400604
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400605 for (i = 0; i < num_pages; i++) {
606 unlock_page(pages[i]);
607 page_cache_release(pages[i]);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400608 }
Josef Bacik2f356122011-06-10 15:31:13 -0400609 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400610 }
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400611 pages[index] = page;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400612 index++;
613 }
614
615 index = 0;
616 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
617 0, &cached_state, GFP_NOFS);
618
Josef Bacik43be2142011-04-01 14:55:00 +0000619 /*
620 * When searching for pinned extents, we need to start at our start
621 * offset.
622 */
Li Zefan0414efa2011-04-20 10:20:14 +0800623 if (block_group)
624 start = block_group->key.objectid;
Josef Bacik43be2142011-04-01 14:55:00 +0000625
Josef Bacik0cb59c92010-07-02 12:14:14 -0400626 /* Write out the extent entries */
627 do {
628 struct btrfs_free_space_entry *entry;
Josef Bacik2f356122011-06-10 15:31:13 -0400629 void *addr, *orig;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400630 unsigned long offset = 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400631
Josef Bacik43be2142011-04-01 14:55:00 +0000632 next_page = false;
633
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400634 if (index >= num_pages) {
635 out_of_space = true;
636 break;
637 }
638
639 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400640
Josef Bacik2f356122011-06-10 15:31:13 -0400641 orig = addr = kmap(page);
642 if (index == 0) {
643 u64 *gen;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400644
Josef Bacik2f356122011-06-10 15:31:13 -0400645 /*
646 * We're going to put in a bogus crc for this page to
647 * make sure that old kernels who aren't aware of this
648 * format will be sure to discard the cache.
649 */
650 addr += sizeof(u64);
651 offset += sizeof(u64);
652
653 gen = addr;
654 *gen = trans->transid;
655 addr += sizeof(u64);
656 offset += sizeof(u64);
657 }
658 entry = addr;
659
660 memset(addr, 0, PAGE_CACHE_SIZE - offset);
Josef Bacik43be2142011-04-01 14:55:00 +0000661 while (node && !next_page) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400662 struct btrfs_free_space *e;
663
664 e = rb_entry(node, struct btrfs_free_space, offset_index);
665 entries++;
666
667 entry->offset = cpu_to_le64(e->offset);
668 entry->bytes = cpu_to_le64(e->bytes);
669 if (e->bitmap) {
670 entry->type = BTRFS_FREE_SPACE_BITMAP;
671 list_add_tail(&e->list, &bitmap_list);
672 bitmaps++;
673 } else {
674 entry->type = BTRFS_FREE_SPACE_EXTENT;
675 }
676 node = rb_next(node);
Josef Bacik43be2142011-04-01 14:55:00 +0000677 if (!node && cluster) {
678 node = rb_first(&cluster->root);
679 cluster = NULL;
680 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400681 offset += sizeof(struct btrfs_free_space_entry);
682 if (offset + sizeof(struct btrfs_free_space_entry) >=
683 PAGE_CACHE_SIZE)
Josef Bacik43be2142011-04-01 14:55:00 +0000684 next_page = true;
685 entry++;
686 }
687
688 /*
689 * We want to add any pinned extents to our free space cache
690 * so we don't leak the space
691 */
Li Zefan0414efa2011-04-20 10:20:14 +0800692 while (block_group && !next_page &&
693 (start < block_group->key.objectid +
694 block_group->key.offset)) {
Josef Bacik43be2142011-04-01 14:55:00 +0000695 ret = find_first_extent_bit(unpin, start, &start, &end,
696 EXTENT_DIRTY);
697 if (ret) {
698 ret = 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400699 break;
Josef Bacik43be2142011-04-01 14:55:00 +0000700 }
701
702 /* This pinned extent is out of our range */
703 if (start >= block_group->key.objectid +
704 block_group->key.offset)
705 break;
706
707 len = block_group->key.objectid +
708 block_group->key.offset - start;
709 len = min(len, end + 1 - start);
710
711 entries++;
712 entry->offset = cpu_to_le64(start);
713 entry->bytes = cpu_to_le64(len);
714 entry->type = BTRFS_FREE_SPACE_EXTENT;
715
716 start = end + 1;
717 offset += sizeof(struct btrfs_free_space_entry);
718 if (offset + sizeof(struct btrfs_free_space_entry) >=
719 PAGE_CACHE_SIZE)
720 next_page = true;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400721 entry++;
722 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400723
Josef Bacik2f356122011-06-10 15:31:13 -0400724 /* Generate bogus crc value */
725 if (index == 0) {
726 u32 *tmp;
727 crc = btrfs_csum_data(root, orig + sizeof(u64), crc,
728 PAGE_CACHE_SIZE - sizeof(u64));
729 btrfs_csum_final(crc, (char *)&crc);
730 crc++;
731 tmp = orig;
732 *tmp = crc;
733 }
734
735 kunmap(page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400736
737 bytes += PAGE_CACHE_SIZE;
738
Josef Bacik0cb59c92010-07-02 12:14:14 -0400739 index++;
Josef Bacik43be2142011-04-01 14:55:00 +0000740 } while (node || next_page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400741
742 /* Write out the bitmaps */
743 list_for_each_safe(pos, n, &bitmap_list) {
744 void *addr;
745 struct btrfs_free_space *entry =
746 list_entry(pos, struct btrfs_free_space, list);
747
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400748 if (index >= num_pages) {
749 out_of_space = true;
750 break;
751 }
Chris Masonf65647c2011-04-18 08:55:34 -0400752 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400753
754 addr = kmap(page);
755 memcpy(addr, entry->bitmap, PAGE_CACHE_SIZE);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400756 kunmap(page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400757 bytes += PAGE_CACHE_SIZE;
758
Josef Bacik0cb59c92010-07-02 12:14:14 -0400759 list_del_init(&entry->list);
760 index++;
761 }
762
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400763 if (out_of_space) {
764 btrfs_drop_pages(pages, num_pages);
765 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
766 i_size_read(inode) - 1, &cached_state,
767 GFP_NOFS);
768 ret = 0;
Josef Bacik2f356122011-06-10 15:31:13 -0400769 goto out;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400770 }
771
Josef Bacik0cb59c92010-07-02 12:14:14 -0400772 /* Zero out the rest of the pages just to make sure */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400773 while (index < num_pages) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400774 void *addr;
775
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400776 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400777 addr = kmap(page);
778 memset(addr, 0, PAGE_CACHE_SIZE);
779 kunmap(page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400780 bytes += PAGE_CACHE_SIZE;
781 index++;
782 }
783
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400784 ret = btrfs_dirty_pages(root, inode, pages, num_pages, 0,
785 bytes, &cached_state);
786 btrfs_drop_pages(pages, num_pages);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400787 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
788 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
789
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400790 if (ret) {
791 ret = 0;
Josef Bacik2f356122011-06-10 15:31:13 -0400792 goto out;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400793 }
794
795 BTRFS_I(inode)->generation = trans->transid;
796
Josef Bacik0cb59c92010-07-02 12:14:14 -0400797 filemap_write_and_wait(inode->i_mapping);
798
799 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800800 key.offset = offset;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400801 key.type = 0;
802
803 ret = btrfs_search_slot(trans, root, &key, path, 1, 1);
804 if (ret < 0) {
Li Zefan0414efa2011-04-20 10:20:14 +0800805 ret = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400806 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1,
807 EXTENT_DIRTY | EXTENT_DELALLOC |
808 EXTENT_DO_ACCOUNTING, 0, 0, NULL, GFP_NOFS);
Josef Bacik2f356122011-06-10 15:31:13 -0400809 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400810 }
811 leaf = path->nodes[0];
812 if (ret > 0) {
813 struct btrfs_key found_key;
814 BUG_ON(!path->slots[0]);
815 path->slots[0]--;
816 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
817 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
Li Zefan0414efa2011-04-20 10:20:14 +0800818 found_key.offset != offset) {
819 ret = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400820 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1,
821 EXTENT_DIRTY | EXTENT_DELALLOC |
822 EXTENT_DO_ACCOUNTING, 0, 0, NULL,
823 GFP_NOFS);
David Sterbab3b4aa72011-04-21 01:20:15 +0200824 btrfs_release_path(path);
Josef Bacik2f356122011-06-10 15:31:13 -0400825 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400826 }
827 }
828 header = btrfs_item_ptr(leaf, path->slots[0],
829 struct btrfs_free_space_header);
830 btrfs_set_free_space_entries(leaf, header, entries);
831 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
832 btrfs_set_free_space_generation(leaf, header, trans->transid);
833 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200834 btrfs_release_path(path);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400835
836 ret = 1;
837
Josef Bacik2f356122011-06-10 15:31:13 -0400838out:
Chris Mason211f96c2011-06-03 01:26:53 -0400839 kfree(pages);
Li Zefan0414efa2011-04-20 10:20:14 +0800840 if (ret != 1) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400841 invalidate_inode_pages2_range(inode->i_mapping, 0, index);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400842 BTRFS_I(inode)->generation = 0;
843 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400844 btrfs_update_inode(trans, root, inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800845 return ret;
846}
847
848int btrfs_write_out_cache(struct btrfs_root *root,
849 struct btrfs_trans_handle *trans,
850 struct btrfs_block_group_cache *block_group,
851 struct btrfs_path *path)
852{
853 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
854 struct inode *inode;
855 int ret = 0;
856
857 root = root->fs_info->tree_root;
858
859 spin_lock(&block_group->lock);
860 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
861 spin_unlock(&block_group->lock);
862 return 0;
863 }
864 spin_unlock(&block_group->lock);
865
866 inode = lookup_free_space_inode(root, block_group, path);
867 if (IS_ERR(inode))
868 return 0;
869
870 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
871 path, block_group->key.objectid);
872 if (ret < 0) {
873 spin_lock(&block_group->lock);
874 block_group->disk_cache_state = BTRFS_DC_ERROR;
875 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800876 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800877
878 printk(KERN_ERR "btrfs: failed to write free space cace "
879 "for block group %llu\n", block_group->key.objectid);
880 }
881
Josef Bacik0cb59c92010-07-02 12:14:14 -0400882 iput(inode);
883 return ret;
884}
885
Li Zefan34d52cb2011-03-29 13:46:06 +0800886static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -0400887 u64 offset)
888{
889 BUG_ON(offset < bitmap_start);
890 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +0800891 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -0400892}
893
Li Zefan34d52cb2011-03-29 13:46:06 +0800894static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -0400895{
Li Zefan34d52cb2011-03-29 13:46:06 +0800896 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -0400897}
898
Li Zefan34d52cb2011-03-29 13:46:06 +0800899static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -0400900 u64 offset)
901{
902 u64 bitmap_start;
903 u64 bytes_per_bitmap;
904
Li Zefan34d52cb2011-03-29 13:46:06 +0800905 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
906 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -0400907 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
908 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +0800909 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -0400910
911 return bitmap_start;
912}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400913
914static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -0400915 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400916{
917 struct rb_node **p = &root->rb_node;
918 struct rb_node *parent = NULL;
919 struct btrfs_free_space *info;
920
921 while (*p) {
922 parent = *p;
923 info = rb_entry(parent, struct btrfs_free_space, offset_index);
924
Josef Bacik96303082009-07-13 21:29:25 -0400925 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400926 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -0400927 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400928 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -0400929 } else {
930 /*
931 * we could have a bitmap entry and an extent entry
932 * share the same offset. If this is the case, we want
933 * the extent entry to always be found first if we do a
934 * linear search through the tree, since we want to have
935 * the quickest allocation time, and allocating from an
936 * extent is faster than allocating from a bitmap. So
937 * if we're inserting a bitmap and we find an entry at
938 * this offset, we want to go right, or after this entry
939 * logically. If we are inserting an extent and we've
940 * found a bitmap, we want to go left, or before
941 * logically.
942 */
943 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -0400944 if (info->bitmap) {
945 WARN_ON_ONCE(1);
946 return -EEXIST;
947 }
Josef Bacik96303082009-07-13 21:29:25 -0400948 p = &(*p)->rb_right;
949 } else {
Josef Bacik207dde82011-05-13 14:49:23 -0400950 if (!info->bitmap) {
951 WARN_ON_ONCE(1);
952 return -EEXIST;
953 }
Josef Bacik96303082009-07-13 21:29:25 -0400954 p = &(*p)->rb_left;
955 }
956 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400957 }
958
959 rb_link_node(node, parent, p);
960 rb_insert_color(node, root);
961
962 return 0;
963}
964
965/*
Josef Bacik70cb0742009-04-03 10:14:19 -0400966 * searches the tree for the given offset.
967 *
Josef Bacik96303082009-07-13 21:29:25 -0400968 * fuzzy - If this is set, then we are trying to make an allocation, and we just
969 * want a section that has at least bytes size and comes at or after the given
970 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -0400971 */
Josef Bacik96303082009-07-13 21:29:25 -0400972static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +0800973tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -0400974 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400975{
Li Zefan34d52cb2011-03-29 13:46:06 +0800976 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -0400977 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400978
Josef Bacik96303082009-07-13 21:29:25 -0400979 /* find entry that is closest to the 'offset' */
980 while (1) {
981 if (!n) {
982 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400983 break;
984 }
Josef Bacik96303082009-07-13 21:29:25 -0400985
986 entry = rb_entry(n, struct btrfs_free_space, offset_index);
987 prev = entry;
988
989 if (offset < entry->offset)
990 n = n->rb_left;
991 else if (offset > entry->offset)
992 n = n->rb_right;
993 else
994 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400995 }
996
Josef Bacik96303082009-07-13 21:29:25 -0400997 if (bitmap_only) {
998 if (!entry)
999 return NULL;
1000 if (entry->bitmap)
1001 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001002
Josef Bacik96303082009-07-13 21:29:25 -04001003 /*
1004 * bitmap entry and extent entry may share same offset,
1005 * in that case, bitmap entry comes after extent entry.
1006 */
1007 n = rb_next(n);
1008 if (!n)
1009 return NULL;
1010 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1011 if (entry->offset != offset)
1012 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001013
Josef Bacik96303082009-07-13 21:29:25 -04001014 WARN_ON(!entry->bitmap);
1015 return entry;
1016 } else if (entry) {
1017 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001018 /*
Josef Bacik96303082009-07-13 21:29:25 -04001019 * if previous extent entry covers the offset,
1020 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001021 */
Josef Bacik96303082009-07-13 21:29:25 -04001022 n = &entry->offset_index;
1023 while (1) {
1024 n = rb_prev(n);
1025 if (!n)
1026 break;
1027 prev = rb_entry(n, struct btrfs_free_space,
1028 offset_index);
1029 if (!prev->bitmap) {
1030 if (prev->offset + prev->bytes > offset)
1031 entry = prev;
1032 break;
1033 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001034 }
Josef Bacik96303082009-07-13 21:29:25 -04001035 }
1036 return entry;
1037 }
1038
1039 if (!prev)
1040 return NULL;
1041
1042 /* find last entry before the 'offset' */
1043 entry = prev;
1044 if (entry->offset > offset) {
1045 n = rb_prev(&entry->offset_index);
1046 if (n) {
1047 entry = rb_entry(n, struct btrfs_free_space,
1048 offset_index);
1049 BUG_ON(entry->offset > offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001050 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001051 if (fuzzy)
1052 return entry;
1053 else
1054 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001055 }
1056 }
1057
Josef Bacik96303082009-07-13 21:29:25 -04001058 if (entry->bitmap) {
1059 n = &entry->offset_index;
1060 while (1) {
1061 n = rb_prev(n);
1062 if (!n)
1063 break;
1064 prev = rb_entry(n, struct btrfs_free_space,
1065 offset_index);
1066 if (!prev->bitmap) {
1067 if (prev->offset + prev->bytes > offset)
1068 return prev;
1069 break;
1070 }
1071 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001072 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001073 return entry;
1074 } else if (entry->offset + entry->bytes > offset)
1075 return entry;
1076
1077 if (!fuzzy)
1078 return NULL;
1079
1080 while (1) {
1081 if (entry->bitmap) {
1082 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001083 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001084 break;
1085 } else {
1086 if (entry->offset + entry->bytes > offset)
1087 break;
1088 }
1089
1090 n = rb_next(&entry->offset_index);
1091 if (!n)
1092 return NULL;
1093 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1094 }
1095 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001096}
1097
Li Zefanf333adb2010-11-09 14:57:39 +08001098static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001099__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001100 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001101{
Li Zefan34d52cb2011-03-29 13:46:06 +08001102 rb_erase(&info->offset_index, &ctl->free_space_offset);
1103 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001104}
1105
Li Zefan34d52cb2011-03-29 13:46:06 +08001106static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001107 struct btrfs_free_space *info)
1108{
Li Zefan34d52cb2011-03-29 13:46:06 +08001109 __unlink_free_space(ctl, info);
1110 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001111}
1112
Li Zefan34d52cb2011-03-29 13:46:06 +08001113static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001114 struct btrfs_free_space *info)
1115{
1116 int ret = 0;
1117
Josef Bacik96303082009-07-13 21:29:25 -04001118 BUG_ON(!info->bitmap && !info->bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001119 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001120 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001121 if (ret)
1122 return ret;
1123
Li Zefan34d52cb2011-03-29 13:46:06 +08001124 ctl->free_space += info->bytes;
1125 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001126 return ret;
1127}
1128
Li Zefan34d52cb2011-03-29 13:46:06 +08001129static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001130{
Li Zefan34d52cb2011-03-29 13:46:06 +08001131 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001132 u64 max_bytes;
1133 u64 bitmap_bytes;
1134 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001135 u64 size = block_group->key.offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001136 u64 bytes_per_bg = BITS_PER_BITMAP * block_group->sectorsize;
1137 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1138
1139 BUG_ON(ctl->total_bitmaps > max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001140
1141 /*
1142 * The goal is to keep the total amount of memory used per 1gb of space
1143 * at or below 32k, so we need to adjust how much memory we allow to be
1144 * used by extent based free space tracking
1145 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001146 if (size < 1024 * 1024 * 1024)
1147 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1148 else
1149 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1150 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001151
Josef Bacik25891f72009-09-11 16:11:20 -04001152 /*
1153 * we want to account for 1 more bitmap than what we have so we can make
1154 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1155 * we add more bitmaps.
1156 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001157 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001158
Josef Bacik25891f72009-09-11 16:11:20 -04001159 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001160 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001161 return;
Josef Bacik96303082009-07-13 21:29:25 -04001162 }
Josef Bacik25891f72009-09-11 16:11:20 -04001163
1164 /*
1165 * we want the extent entry threshold to always be at most 1/2 the maxw
1166 * bytes we can have, or whatever is less than that.
1167 */
1168 extent_bytes = max_bytes - bitmap_bytes;
1169 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1170
Li Zefan34d52cb2011-03-29 13:46:06 +08001171 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001172 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001173}
1174
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001175static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1176 struct btrfs_free_space *info,
1177 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001178{
Li Zefanf38b6e72011-03-14 13:40:51 +08001179 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001180
Li Zefan34d52cb2011-03-29 13:46:06 +08001181 start = offset_to_bit(info->offset, ctl->unit, offset);
1182 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001183 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001184
Li Zefanf38b6e72011-03-14 13:40:51 +08001185 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001186
1187 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001188}
1189
1190static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1191 struct btrfs_free_space *info, u64 offset,
1192 u64 bytes)
1193{
1194 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001195 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001196}
1197
Li Zefan34d52cb2011-03-29 13:46:06 +08001198static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001199 struct btrfs_free_space *info, u64 offset,
1200 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001201{
Li Zefanf38b6e72011-03-14 13:40:51 +08001202 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001203
Li Zefan34d52cb2011-03-29 13:46:06 +08001204 start = offset_to_bit(info->offset, ctl->unit, offset);
1205 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001206 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001207
Li Zefanf38b6e72011-03-14 13:40:51 +08001208 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001209
1210 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001211 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001212}
1213
Li Zefan34d52cb2011-03-29 13:46:06 +08001214static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001215 struct btrfs_free_space *bitmap_info, u64 *offset,
1216 u64 *bytes)
1217{
1218 unsigned long found_bits = 0;
1219 unsigned long bits, i;
1220 unsigned long next_zero;
1221
Li Zefan34d52cb2011-03-29 13:46:06 +08001222 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001223 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001224 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001225
1226 for (i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i);
1227 i < BITS_PER_BITMAP;
1228 i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i + 1)) {
1229 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1230 BITS_PER_BITMAP, i);
1231 if ((next_zero - i) >= bits) {
1232 found_bits = next_zero - i;
1233 break;
1234 }
1235 i = next_zero;
1236 }
1237
1238 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001239 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1240 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001241 return 0;
1242 }
1243
1244 return -1;
1245}
1246
Li Zefan34d52cb2011-03-29 13:46:06 +08001247static struct btrfs_free_space *
1248find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001249{
1250 struct btrfs_free_space *entry;
1251 struct rb_node *node;
1252 int ret;
1253
Li Zefan34d52cb2011-03-29 13:46:06 +08001254 if (!ctl->free_space_offset.rb_node)
Josef Bacik96303082009-07-13 21:29:25 -04001255 return NULL;
1256
Li Zefan34d52cb2011-03-29 13:46:06 +08001257 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001258 if (!entry)
1259 return NULL;
1260
1261 for (node = &entry->offset_index; node; node = rb_next(node)) {
1262 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1263 if (entry->bytes < *bytes)
1264 continue;
1265
1266 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001267 ret = search_bitmap(ctl, entry, offset, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001268 if (!ret)
1269 return entry;
1270 continue;
1271 }
1272
1273 *offset = entry->offset;
1274 *bytes = entry->bytes;
1275 return entry;
1276 }
1277
1278 return NULL;
1279}
1280
Li Zefan34d52cb2011-03-29 13:46:06 +08001281static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001282 struct btrfs_free_space *info, u64 offset)
1283{
Li Zefan34d52cb2011-03-29 13:46:06 +08001284 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001285 info->bytes = 0;
Li Zefan34d52cb2011-03-29 13:46:06 +08001286 link_free_space(ctl, info);
1287 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001288
Li Zefan34d52cb2011-03-29 13:46:06 +08001289 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001290}
1291
Li Zefan34d52cb2011-03-29 13:46:06 +08001292static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001293 struct btrfs_free_space *bitmap_info)
1294{
Li Zefan34d52cb2011-03-29 13:46:06 +08001295 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001296 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001297 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001298 ctl->total_bitmaps--;
1299 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001300}
1301
Li Zefan34d52cb2011-03-29 13:46:06 +08001302static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001303 struct btrfs_free_space *bitmap_info,
1304 u64 *offset, u64 *bytes)
1305{
1306 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001307 u64 search_start, search_bytes;
1308 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001309
1310again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001311 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001312
Josef Bacik6606bb92009-07-31 11:03:58 -04001313 /*
1314 * XXX - this can go away after a few releases.
1315 *
1316 * since the only user of btrfs_remove_free_space is the tree logging
1317 * stuff, and the only way to test that is under crash conditions, we
1318 * want to have this debug stuff here just in case somethings not
1319 * working. Search the bitmap for the space we are trying to use to
1320 * make sure its actually there. If its not there then we need to stop
1321 * because something has gone wrong.
1322 */
1323 search_start = *offset;
1324 search_bytes = *bytes;
Josef Bacik13dbc082011-02-03 02:39:52 +00001325 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001326 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacik6606bb92009-07-31 11:03:58 -04001327 BUG_ON(ret < 0 || search_start != *offset);
1328
Josef Bacik96303082009-07-13 21:29:25 -04001329 if (*offset > bitmap_info->offset && *offset + *bytes > end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001330 bitmap_clear_bits(ctl, bitmap_info, *offset, end - *offset + 1);
Josef Bacik96303082009-07-13 21:29:25 -04001331 *bytes -= end - *offset + 1;
1332 *offset = end + 1;
1333 } else if (*offset >= bitmap_info->offset && *offset + *bytes <= end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001334 bitmap_clear_bits(ctl, bitmap_info, *offset, *bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001335 *bytes = 0;
1336 }
1337
1338 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001339 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001340 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001341 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001342
Josef Bacik6606bb92009-07-31 11:03:58 -04001343 /*
1344 * no entry after this bitmap, but we still have bytes to
1345 * remove, so something has gone wrong.
1346 */
1347 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001348 return -EINVAL;
1349
Josef Bacik6606bb92009-07-31 11:03:58 -04001350 bitmap_info = rb_entry(next, struct btrfs_free_space,
1351 offset_index);
1352
1353 /*
1354 * if the next entry isn't a bitmap we need to return to let the
1355 * extent stuff do its work.
1356 */
Josef Bacik96303082009-07-13 21:29:25 -04001357 if (!bitmap_info->bitmap)
1358 return -EAGAIN;
1359
Josef Bacik6606bb92009-07-31 11:03:58 -04001360 /*
1361 * Ok the next item is a bitmap, but it may not actually hold
1362 * the information for the rest of this free space stuff, so
1363 * look for it, and if we don't find it return so we can try
1364 * everything over again.
1365 */
1366 search_start = *offset;
1367 search_bytes = *bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001368 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001369 &search_bytes);
1370 if (ret < 0 || search_start != *offset)
1371 return -EAGAIN;
1372
Josef Bacik96303082009-07-13 21:29:25 -04001373 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001374 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001375 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001376
1377 return 0;
1378}
1379
Josef Bacik2cdc3422011-05-27 14:07:49 -04001380static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1381 struct btrfs_free_space *info, u64 offset,
1382 u64 bytes)
1383{
1384 u64 bytes_to_set = 0;
1385 u64 end;
1386
1387 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1388
1389 bytes_to_set = min(end - offset, bytes);
1390
1391 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1392
1393 return bytes_to_set;
1394
1395}
1396
Li Zefan34d52cb2011-03-29 13:46:06 +08001397static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1398 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001399{
Li Zefan34d52cb2011-03-29 13:46:06 +08001400 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001401
1402 /*
1403 * If we are below the extents threshold then we can add this as an
1404 * extent, and don't have to deal with the bitmap
1405 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001406 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001407 /*
1408 * If this block group has some small extents we don't want to
1409 * use up all of our free slots in the cache with them, we want
1410 * to reserve them to larger extents, however if we have plent
1411 * of cache left then go ahead an dadd them, no sense in adding
1412 * the overhead of a bitmap if we don't have to.
1413 */
1414 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001415 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1416 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001417 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001418 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001419 }
1420 }
Josef Bacik96303082009-07-13 21:29:25 -04001421
1422 /*
1423 * some block groups are so tiny they can't be enveloped by a bitmap, so
1424 * don't even bother to create a bitmap for this
1425 */
1426 if (BITS_PER_BITMAP * block_group->sectorsize >
1427 block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001428 return false;
1429
1430 return true;
1431}
1432
Josef Bacik2cdc3422011-05-27 14:07:49 -04001433static struct btrfs_free_space_op free_space_op = {
1434 .recalc_thresholds = recalculate_thresholds,
1435 .use_bitmap = use_bitmap,
1436};
1437
Li Zefan34d52cb2011-03-29 13:46:06 +08001438static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1439 struct btrfs_free_space *info)
1440{
1441 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001442 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08001443 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001444 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08001445 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001446
1447 bytes = info->bytes;
1448 offset = info->offset;
1449
Li Zefan34d52cb2011-03-29 13:46:06 +08001450 if (!ctl->op->use_bitmap(ctl, info))
1451 return 0;
1452
Josef Bacik2cdc3422011-05-27 14:07:49 -04001453 if (ctl->op == &free_space_op)
1454 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001455again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001456 /*
1457 * Since we link bitmaps right into the cluster we need to see if we
1458 * have a cluster here, and if so and it has our bitmap we need to add
1459 * the free space to that bitmap.
1460 */
1461 if (block_group && !list_empty(&block_group->cluster_list)) {
1462 struct btrfs_free_cluster *cluster;
1463 struct rb_node *node;
1464 struct btrfs_free_space *entry;
1465
1466 cluster = list_entry(block_group->cluster_list.next,
1467 struct btrfs_free_cluster,
1468 block_group_list);
1469 spin_lock(&cluster->lock);
1470 node = rb_first(&cluster->root);
1471 if (!node) {
1472 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001473 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001474 }
1475
1476 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1477 if (!entry->bitmap) {
1478 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001479 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001480 }
1481
1482 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1483 bytes_added = add_bytes_to_bitmap(ctl, entry,
1484 offset, bytes);
1485 bytes -= bytes_added;
1486 offset += bytes_added;
1487 }
1488 spin_unlock(&cluster->lock);
1489 if (!bytes) {
1490 ret = 1;
1491 goto out;
1492 }
1493 }
Chris Mason38e87882011-06-10 16:36:57 -04001494
1495no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08001496 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001497 1, 0);
1498 if (!bitmap_info) {
1499 BUG_ON(added);
1500 goto new_bitmap;
1501 }
1502
Josef Bacik2cdc3422011-05-27 14:07:49 -04001503 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1504 bytes -= bytes_added;
1505 offset += bytes_added;
1506 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001507
1508 if (!bytes) {
1509 ret = 1;
1510 goto out;
1511 } else
1512 goto again;
1513
1514new_bitmap:
1515 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001516 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001517 added = 1;
1518 info = NULL;
1519 goto again;
1520 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001521 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001522
1523 /* no pre-allocated info, allocate a new one */
1524 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001525 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1526 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001527 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001528 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001529 ret = -ENOMEM;
1530 goto out;
1531 }
1532 }
1533
1534 /* allocate the bitmap */
1535 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001536 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001537 if (!info->bitmap) {
1538 ret = -ENOMEM;
1539 goto out;
1540 }
1541 goto again;
1542 }
1543
1544out:
1545 if (info) {
1546 if (info->bitmap)
1547 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001548 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001549 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001550
1551 return ret;
1552}
1553
Chris Mason945d8962011-05-22 12:33:42 -04001554static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001555 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001556{
Li Zefan120d66e2010-11-09 14:56:50 +08001557 struct btrfs_free_space *left_info;
1558 struct btrfs_free_space *right_info;
1559 bool merged = false;
1560 u64 offset = info->offset;
1561 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001562
Josef Bacik0f9dd462008-09-23 13:14:11 -04001563 /*
1564 * first we want to see if there is free space adjacent to the range we
1565 * are adding, if there is remove that struct and add a new one to
1566 * cover the entire range
1567 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001568 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001569 if (right_info && rb_prev(&right_info->offset_index))
1570 left_info = rb_entry(rb_prev(&right_info->offset_index),
1571 struct btrfs_free_space, offset_index);
1572 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001573 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001574
Josef Bacik96303082009-07-13 21:29:25 -04001575 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001576 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001577 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001578 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001579 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001580 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001581 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001582 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001583 }
1584
Josef Bacik96303082009-07-13 21:29:25 -04001585 if (left_info && !left_info->bitmap &&
1586 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001587 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001588 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001589 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001590 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001591 info->offset = left_info->offset;
1592 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001593 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001594 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001595 }
1596
Li Zefan120d66e2010-11-09 14:56:50 +08001597 return merged;
1598}
1599
Li Zefan581bb052011-04-20 10:06:11 +08001600int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1601 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001602{
1603 struct btrfs_free_space *info;
1604 int ret = 0;
1605
Josef Bacikdc89e982011-01-28 17:05:48 -05001606 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001607 if (!info)
1608 return -ENOMEM;
1609
1610 info->offset = offset;
1611 info->bytes = bytes;
1612
Li Zefan34d52cb2011-03-29 13:46:06 +08001613 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001614
Li Zefan34d52cb2011-03-29 13:46:06 +08001615 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001616 goto link;
1617
1618 /*
1619 * There was no extent directly to the left or right of this new
1620 * extent then we know we're going to have to allocate a new extent, so
1621 * before we do that see if we need to drop this into a bitmap
1622 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001623 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001624 if (ret < 0) {
1625 goto out;
1626 } else if (ret) {
1627 ret = 0;
1628 goto out;
1629 }
1630link:
Li Zefan34d52cb2011-03-29 13:46:06 +08001631 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001632 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001633 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001634out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001635 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001636
Josef Bacik0f9dd462008-09-23 13:14:11 -04001637 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001638 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001639 BUG_ON(ret == -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001640 }
1641
Josef Bacik0f9dd462008-09-23 13:14:11 -04001642 return ret;
1643}
1644
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001645int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1646 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001647{
Li Zefan34d52cb2011-03-29 13:46:06 +08001648 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001649 struct btrfs_free_space *info;
Josef Bacik96303082009-07-13 21:29:25 -04001650 struct btrfs_free_space *next_info = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001651 int ret = 0;
1652
Li Zefan34d52cb2011-03-29 13:46:06 +08001653 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001654
Josef Bacik96303082009-07-13 21:29:25 -04001655again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001656 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001657 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001658 /*
1659 * oops didn't find an extent that matched the space we wanted
1660 * to remove, look for a bitmap instead
1661 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001662 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04001663 1, 0);
1664 if (!info) {
1665 WARN_ON(1);
1666 goto out_lock;
1667 }
Josef Bacik96303082009-07-13 21:29:25 -04001668 }
1669
1670 if (info->bytes < bytes && rb_next(&info->offset_index)) {
1671 u64 end;
1672 next_info = rb_entry(rb_next(&info->offset_index),
1673 struct btrfs_free_space,
1674 offset_index);
1675
1676 if (next_info->bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08001677 end = next_info->offset +
1678 BITS_PER_BITMAP * ctl->unit - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001679 else
1680 end = next_info->offset + next_info->bytes;
1681
1682 if (next_info->bytes < bytes ||
1683 next_info->offset > offset || offset > end) {
1684 printk(KERN_CRIT "Found free space at %llu, size %llu,"
1685 " trying to use %llu\n",
1686 (unsigned long long)info->offset,
1687 (unsigned long long)info->bytes,
1688 (unsigned long long)bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001689 WARN_ON(1);
1690 ret = -EINVAL;
Josef Bacik96303082009-07-13 21:29:25 -04001691 goto out_lock;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001692 }
Josef Bacik96303082009-07-13 21:29:25 -04001693
1694 info = next_info;
1695 }
1696
1697 if (info->bytes == bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001698 unlink_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001699 if (info->bitmap) {
1700 kfree(info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001701 ctl->total_bitmaps--;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001702 }
Josef Bacikdc89e982011-01-28 17:05:48 -05001703 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001704 goto out_lock;
1705 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001706
Josef Bacik96303082009-07-13 21:29:25 -04001707 if (!info->bitmap && info->offset == offset) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001708 unlink_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001709 info->offset += bytes;
1710 info->bytes -= bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001711 link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001712 goto out_lock;
1713 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001714
Josef Bacik96303082009-07-13 21:29:25 -04001715 if (!info->bitmap && info->offset <= offset &&
1716 info->offset + info->bytes >= offset + bytes) {
Chris Mason9b49c9b2008-09-24 11:23:25 -04001717 u64 old_start = info->offset;
1718 /*
1719 * we're freeing space in the middle of the info,
1720 * this can happen during tree log replay
1721 *
1722 * first unlink the old info and then
1723 * insert it again after the hole we're creating
1724 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001725 unlink_free_space(ctl, info);
Chris Mason9b49c9b2008-09-24 11:23:25 -04001726 if (offset + bytes < info->offset + info->bytes) {
1727 u64 old_end = info->offset + info->bytes;
1728
1729 info->offset = offset + bytes;
1730 info->bytes = old_end - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001731 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001732 WARN_ON(ret);
1733 if (ret)
1734 goto out_lock;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001735 } else {
1736 /* the hole we're creating ends at the end
1737 * of the info struct, just free the info
1738 */
Josef Bacikdc89e982011-01-28 17:05:48 -05001739 kmem_cache_free(btrfs_free_space_cachep, info);
Chris Mason9b49c9b2008-09-24 11:23:25 -04001740 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001741 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001742
1743 /* step two, insert a new info struct to cover
1744 * anything before the hole
Chris Mason9b49c9b2008-09-24 11:23:25 -04001745 */
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001746 ret = btrfs_add_free_space(block_group, old_start,
1747 offset - old_start);
Josef Bacik96303082009-07-13 21:29:25 -04001748 WARN_ON(ret);
1749 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001750 }
Josef Bacik96303082009-07-13 21:29:25 -04001751
Li Zefan34d52cb2011-03-29 13:46:06 +08001752 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001753 if (ret == -EAGAIN)
1754 goto again;
1755 BUG_ON(ret);
1756out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08001757 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001758out:
Josef Bacik25179202008-10-29 14:49:05 -04001759 return ret;
1760}
1761
Josef Bacik0f9dd462008-09-23 13:14:11 -04001762void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1763 u64 bytes)
1764{
Li Zefan34d52cb2011-03-29 13:46:06 +08001765 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001766 struct btrfs_free_space *info;
1767 struct rb_node *n;
1768 int count = 0;
1769
Li Zefan34d52cb2011-03-29 13:46:06 +08001770 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001771 info = rb_entry(n, struct btrfs_free_space, offset_index);
1772 if (info->bytes >= bytes)
1773 count++;
Josef Bacik96303082009-07-13 21:29:25 -04001774 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Joel Becker21380932009-04-21 12:38:29 -07001775 (unsigned long long)info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001776 (unsigned long long)info->bytes,
1777 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001778 }
Josef Bacik96303082009-07-13 21:29:25 -04001779 printk(KERN_INFO "block group has cluster?: %s\n",
1780 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001781 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
1782 "\n", count);
1783}
1784
Li Zefan34d52cb2011-03-29 13:46:06 +08001785void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001786{
Li Zefan34d52cb2011-03-29 13:46:06 +08001787 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001788
Li Zefan34d52cb2011-03-29 13:46:06 +08001789 spin_lock_init(&ctl->tree_lock);
1790 ctl->unit = block_group->sectorsize;
1791 ctl->start = block_group->key.objectid;
1792 ctl->private = block_group;
1793 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001794
Li Zefan34d52cb2011-03-29 13:46:06 +08001795 /*
1796 * we only want to have 32k of ram per block group for keeping
1797 * track of free space, and if we pass 1/2 of that we want to
1798 * start converting things over to using bitmaps
1799 */
1800 ctl->extents_thresh = ((1024 * 32) / 2) /
1801 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001802}
1803
Chris Masonfa9c0d792009-04-03 09:47:43 -04001804/*
1805 * for a given cluster, put all of its extents back into the free
1806 * space cache. If the block group passed doesn't match the block group
1807 * pointed to by the cluster, someone else raced in and freed the
1808 * cluster already. In that case, we just return without changing anything
1809 */
1810static int
1811__btrfs_return_cluster_to_free_space(
1812 struct btrfs_block_group_cache *block_group,
1813 struct btrfs_free_cluster *cluster)
1814{
Li Zefan34d52cb2011-03-29 13:46:06 +08001815 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001816 struct btrfs_free_space *entry;
1817 struct rb_node *node;
1818
1819 spin_lock(&cluster->lock);
1820 if (cluster->block_group != block_group)
1821 goto out;
1822
Josef Bacik96303082009-07-13 21:29:25 -04001823 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001824 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001825 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04001826
Chris Masonfa9c0d792009-04-03 09:47:43 -04001827 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04001828 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04001829 bool bitmap;
1830
Chris Masonfa9c0d792009-04-03 09:47:43 -04001831 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1832 node = rb_next(&entry->offset_index);
1833 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04001834
1835 bitmap = (entry->bitmap != NULL);
1836 if (!bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08001837 try_merge_free_space(ctl, entry, false);
1838 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04001839 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001840 }
Eric Paris6bef4d32010-02-23 19:43:04 +00001841 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04001842
Chris Masonfa9c0d792009-04-03 09:47:43 -04001843out:
1844 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04001845 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001846 return 0;
1847}
1848
Chris Mason09655372011-05-21 09:27:38 -04001849void __btrfs_remove_free_space_cache_locked(struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001850{
1851 struct btrfs_free_space *info;
1852 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08001853
Li Zefan581bb052011-04-20 10:06:11 +08001854 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
1855 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00001856 if (!info->bitmap) {
1857 unlink_free_space(ctl, info);
1858 kmem_cache_free(btrfs_free_space_cachep, info);
1859 } else {
1860 free_bitmap(ctl, info);
1861 }
Li Zefan581bb052011-04-20 10:06:11 +08001862 if (need_resched()) {
1863 spin_unlock(&ctl->tree_lock);
1864 cond_resched();
1865 spin_lock(&ctl->tree_lock);
1866 }
1867 }
Chris Mason09655372011-05-21 09:27:38 -04001868}
1869
1870void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
1871{
1872 spin_lock(&ctl->tree_lock);
1873 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08001874 spin_unlock(&ctl->tree_lock);
1875}
1876
Josef Bacik0f9dd462008-09-23 13:14:11 -04001877void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
1878{
Li Zefan34d52cb2011-03-29 13:46:06 +08001879 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001880 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04001881 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001882
Li Zefan34d52cb2011-03-29 13:46:06 +08001883 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001884 while ((head = block_group->cluster_list.next) !=
1885 &block_group->cluster_list) {
1886 cluster = list_entry(head, struct btrfs_free_cluster,
1887 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001888
1889 WARN_ON(cluster->block_group != block_group);
1890 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04001891 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001892 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001893 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08001894 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001895 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04001896 }
Chris Mason09655372011-05-21 09:27:38 -04001897 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08001898 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001899
Josef Bacik0f9dd462008-09-23 13:14:11 -04001900}
1901
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001902u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
1903 u64 offset, u64 bytes, u64 empty_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001904{
Li Zefan34d52cb2011-03-29 13:46:06 +08001905 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001906 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04001907 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001908 u64 ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001909
Li Zefan34d52cb2011-03-29 13:46:06 +08001910 spin_lock(&ctl->tree_lock);
1911 entry = find_free_space(ctl, &offset, &bytes_search);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001912 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04001913 goto out;
1914
1915 ret = offset;
1916 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001917 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001918 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001919 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04001920 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001921 unlink_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001922 entry->offset += bytes;
1923 entry->bytes -= bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001924 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05001925 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001926 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001927 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001928 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001929
Josef Bacik96303082009-07-13 21:29:25 -04001930out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001931 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04001932
Josef Bacik0f9dd462008-09-23 13:14:11 -04001933 return ret;
1934}
Chris Masonfa9c0d792009-04-03 09:47:43 -04001935
1936/*
1937 * given a cluster, put all of its extents back into the free space
1938 * cache. If a block group is passed, this function will only free
1939 * a cluster that belongs to the passed block group.
1940 *
1941 * Otherwise, it'll get a reference on the block group pointed to by the
1942 * cluster and remove the cluster from it.
1943 */
1944int btrfs_return_cluster_to_free_space(
1945 struct btrfs_block_group_cache *block_group,
1946 struct btrfs_free_cluster *cluster)
1947{
Li Zefan34d52cb2011-03-29 13:46:06 +08001948 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001949 int ret;
1950
1951 /* first, get a safe pointer to the block group */
1952 spin_lock(&cluster->lock);
1953 if (!block_group) {
1954 block_group = cluster->block_group;
1955 if (!block_group) {
1956 spin_unlock(&cluster->lock);
1957 return 0;
1958 }
1959 } else if (cluster->block_group != block_group) {
1960 /* someone else has already freed it don't redo their work */
1961 spin_unlock(&cluster->lock);
1962 return 0;
1963 }
1964 atomic_inc(&block_group->count);
1965 spin_unlock(&cluster->lock);
1966
Li Zefan34d52cb2011-03-29 13:46:06 +08001967 ctl = block_group->free_space_ctl;
1968
Chris Masonfa9c0d792009-04-03 09:47:43 -04001969 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08001970 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001971 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08001972 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001973
1974 /* finally drop our ref */
1975 btrfs_put_block_group(block_group);
1976 return ret;
1977}
1978
Josef Bacik96303082009-07-13 21:29:25 -04001979static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
1980 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04001981 struct btrfs_free_space *entry,
Josef Bacik96303082009-07-13 21:29:25 -04001982 u64 bytes, u64 min_start)
1983{
Li Zefan34d52cb2011-03-29 13:46:06 +08001984 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04001985 int err;
1986 u64 search_start = cluster->window_start;
1987 u64 search_bytes = bytes;
1988 u64 ret = 0;
1989
Josef Bacik96303082009-07-13 21:29:25 -04001990 search_start = min_start;
1991 search_bytes = bytes;
1992
Li Zefan34d52cb2011-03-29 13:46:06 +08001993 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001994 if (err)
Josef Bacik4e69b592011-03-21 10:11:24 -04001995 return 0;
Josef Bacik96303082009-07-13 21:29:25 -04001996
1997 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001998 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001999
2000 return ret;
2001}
2002
Chris Masonfa9c0d792009-04-03 09:47:43 -04002003/*
2004 * given a cluster, try to allocate 'bytes' from it, returns 0
2005 * if it couldn't find anything suitably large, or a logical disk offset
2006 * if things worked out
2007 */
2008u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2009 struct btrfs_free_cluster *cluster, u64 bytes,
2010 u64 min_start)
2011{
Li Zefan34d52cb2011-03-29 13:46:06 +08002012 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002013 struct btrfs_free_space *entry = NULL;
2014 struct rb_node *node;
2015 u64 ret = 0;
2016
2017 spin_lock(&cluster->lock);
2018 if (bytes > cluster->max_size)
2019 goto out;
2020
2021 if (cluster->block_group != block_group)
2022 goto out;
2023
2024 node = rb_first(&cluster->root);
2025 if (!node)
2026 goto out;
2027
2028 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002029 while(1) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002030 if (entry->bytes < bytes ||
2031 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002032 node = rb_next(&entry->offset_index);
2033 if (!node)
2034 break;
2035 entry = rb_entry(node, struct btrfs_free_space,
2036 offset_index);
2037 continue;
2038 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002039
Josef Bacik4e69b592011-03-21 10:11:24 -04002040 if (entry->bitmap) {
2041 ret = btrfs_alloc_from_bitmap(block_group,
2042 cluster, entry, bytes,
2043 min_start);
2044 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002045 node = rb_next(&entry->offset_index);
2046 if (!node)
2047 break;
2048 entry = rb_entry(node, struct btrfs_free_space,
2049 offset_index);
2050 continue;
2051 }
2052 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002053 ret = entry->offset;
2054
2055 entry->offset += bytes;
2056 entry->bytes -= bytes;
2057 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002058
Li Zefan5e71b5d2010-11-09 14:55:34 +08002059 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002060 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002061 break;
2062 }
2063out:
2064 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002065
Li Zefan5e71b5d2010-11-09 14:55:34 +08002066 if (!ret)
2067 return 0;
2068
Li Zefan34d52cb2011-03-29 13:46:06 +08002069 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002070
Li Zefan34d52cb2011-03-29 13:46:06 +08002071 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002072 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002073 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002074 if (entry->bitmap) {
2075 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002076 ctl->total_bitmaps--;
2077 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002078 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002079 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002080 }
2081
Li Zefan34d52cb2011-03-29 13:46:06 +08002082 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002083
Chris Masonfa9c0d792009-04-03 09:47:43 -04002084 return ret;
2085}
2086
Josef Bacik96303082009-07-13 21:29:25 -04002087static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2088 struct btrfs_free_space *entry,
2089 struct btrfs_free_cluster *cluster,
2090 u64 offset, u64 bytes, u64 min_bytes)
2091{
Li Zefan34d52cb2011-03-29 13:46:06 +08002092 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002093 unsigned long next_zero;
2094 unsigned long i;
2095 unsigned long search_bits;
2096 unsigned long total_bits;
2097 unsigned long found_bits;
2098 unsigned long start = 0;
2099 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002100 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002101 bool found = false;
2102
2103 i = offset_to_bit(entry->offset, block_group->sectorsize,
2104 max_t(u64, offset, entry->offset));
Josef Bacikd0a365e2011-03-18 15:27:43 -04002105 search_bits = bytes_to_bits(bytes, block_group->sectorsize);
2106 total_bits = bytes_to_bits(min_bytes, block_group->sectorsize);
Josef Bacik96303082009-07-13 21:29:25 -04002107
2108again:
2109 found_bits = 0;
2110 for (i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, i);
2111 i < BITS_PER_BITMAP;
2112 i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, i + 1)) {
2113 next_zero = find_next_zero_bit(entry->bitmap,
2114 BITS_PER_BITMAP, i);
2115 if (next_zero - i >= search_bits) {
2116 found_bits = next_zero - i;
2117 break;
2118 }
2119 i = next_zero;
2120 }
2121
2122 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002123 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002124
2125 if (!found) {
2126 start = i;
2127 found = true;
2128 }
2129
2130 total_found += found_bits;
2131
2132 if (cluster->max_size < found_bits * block_group->sectorsize)
2133 cluster->max_size = found_bits * block_group->sectorsize;
2134
2135 if (total_found < total_bits) {
2136 i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, next_zero);
2137 if (i - start > total_bits * 2) {
2138 total_found = 0;
2139 cluster->max_size = 0;
2140 found = false;
2141 }
2142 goto again;
2143 }
2144
2145 cluster->window_start = start * block_group->sectorsize +
2146 entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002147 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002148 ret = tree_insert_offset(&cluster->root, entry->offset,
2149 &entry->offset_index, 1);
2150 BUG_ON(ret);
Josef Bacik96303082009-07-13 21:29:25 -04002151
2152 return 0;
2153}
2154
Chris Masonfa9c0d792009-04-03 09:47:43 -04002155/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002156 * This searches the block group for just extents to fill the cluster with.
2157 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002158static noinline int
2159setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2160 struct btrfs_free_cluster *cluster,
2161 struct list_head *bitmaps, u64 offset, u64 bytes,
2162 u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002163{
Li Zefan34d52cb2011-03-29 13:46:06 +08002164 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002165 struct btrfs_free_space *first = NULL;
2166 struct btrfs_free_space *entry = NULL;
2167 struct btrfs_free_space *prev = NULL;
2168 struct btrfs_free_space *last;
2169 struct rb_node *node;
2170 u64 window_start;
2171 u64 window_free;
2172 u64 max_extent;
2173 u64 max_gap = 128 * 1024;
2174
Li Zefan34d52cb2011-03-29 13:46:06 +08002175 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002176 if (!entry)
2177 return -ENOSPC;
2178
2179 /*
2180 * We don't want bitmaps, so just move along until we find a normal
2181 * extent entry.
2182 */
2183 while (entry->bitmap) {
Josef Bacik86d4a772011-05-25 13:03:16 -04002184 if (list_empty(&entry->list))
2185 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002186 node = rb_next(&entry->offset_index);
2187 if (!node)
2188 return -ENOSPC;
2189 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2190 }
2191
2192 window_start = entry->offset;
2193 window_free = entry->bytes;
2194 max_extent = entry->bytes;
2195 first = entry;
2196 last = entry;
2197 prev = entry;
2198
2199 while (window_free <= min_bytes) {
2200 node = rb_next(&entry->offset_index);
2201 if (!node)
2202 return -ENOSPC;
2203 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2204
Josef Bacik86d4a772011-05-25 13:03:16 -04002205 if (entry->bitmap) {
2206 if (list_empty(&entry->list))
2207 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002208 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002209 }
2210
Josef Bacik4e69b592011-03-21 10:11:24 -04002211 /*
2212 * we haven't filled the empty size and the window is
2213 * very large. reset and try again
2214 */
2215 if (entry->offset - (prev->offset + prev->bytes) > max_gap ||
2216 entry->offset - window_start > (min_bytes * 2)) {
2217 first = entry;
2218 window_start = entry->offset;
2219 window_free = entry->bytes;
2220 last = entry;
2221 max_extent = entry->bytes;
2222 } else {
2223 last = entry;
2224 window_free += entry->bytes;
2225 if (entry->bytes > max_extent)
2226 max_extent = entry->bytes;
2227 }
2228 prev = entry;
2229 }
2230
2231 cluster->window_start = first->offset;
2232
2233 node = &first->offset_index;
2234
2235 /*
2236 * now we've found our entries, pull them out of the free space
2237 * cache and put them into the cluster rbtree
2238 */
2239 do {
2240 int ret;
2241
2242 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2243 node = rb_next(&entry->offset_index);
2244 if (entry->bitmap)
2245 continue;
2246
Li Zefan34d52cb2011-03-29 13:46:06 +08002247 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002248 ret = tree_insert_offset(&cluster->root, entry->offset,
2249 &entry->offset_index, 0);
2250 BUG_ON(ret);
2251 } while (node && entry != last);
2252
2253 cluster->max_size = max_extent;
2254
2255 return 0;
2256}
2257
2258/*
2259 * This specifically looks for bitmaps that may work in the cluster, we assume
2260 * that we have already failed to find extents that will work.
2261 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002262static noinline int
2263setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2264 struct btrfs_free_cluster *cluster,
2265 struct list_head *bitmaps, u64 offset, u64 bytes,
2266 u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002267{
Li Zefan34d52cb2011-03-29 13:46:06 +08002268 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002269 struct btrfs_free_space *entry;
2270 struct rb_node *node;
2271 int ret = -ENOSPC;
2272
Li Zefan34d52cb2011-03-29 13:46:06 +08002273 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002274 return -ENOSPC;
2275
Josef Bacik86d4a772011-05-25 13:03:16 -04002276 /*
2277 * First check our cached list of bitmaps and see if there is an entry
2278 * here that will work.
2279 */
2280 list_for_each_entry(entry, bitmaps, list) {
2281 if (entry->bytes < min_bytes)
2282 continue;
2283 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
2284 bytes, min_bytes);
2285 if (!ret)
2286 return 0;
2287 }
2288
2289 /*
2290 * If we do have entries on our list and we are here then we didn't find
2291 * anything, so go ahead and get the next entry after the last entry in
2292 * this list and start the search from there.
2293 */
2294 if (!list_empty(bitmaps)) {
2295 entry = list_entry(bitmaps->prev, struct btrfs_free_space,
2296 list);
2297 node = rb_next(&entry->offset_index);
2298 if (!node)
2299 return -ENOSPC;
2300 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2301 goto search;
2302 }
2303
Li Zefan34d52cb2011-03-29 13:46:06 +08002304 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002305 if (!entry)
2306 return -ENOSPC;
2307
Josef Bacik86d4a772011-05-25 13:03:16 -04002308search:
Josef Bacik4e69b592011-03-21 10:11:24 -04002309 node = &entry->offset_index;
2310 do {
2311 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2312 node = rb_next(&entry->offset_index);
2313 if (!entry->bitmap)
2314 continue;
2315 if (entry->bytes < min_bytes)
2316 continue;
2317 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
2318 bytes, min_bytes);
2319 } while (ret && node);
2320
2321 return ret;
2322}
2323
2324/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002325 * here we try to find a cluster of blocks in a block group. The goal
2326 * is to find at least bytes free and up to empty_size + bytes free.
2327 * We might not find them all in one contiguous area.
2328 *
2329 * returns zero and sets up cluster if things worked out, otherwise
2330 * it returns -enospc
2331 */
2332int btrfs_find_space_cluster(struct btrfs_trans_handle *trans,
Chris Mason451d7582009-06-09 20:28:34 -04002333 struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002334 struct btrfs_block_group_cache *block_group,
2335 struct btrfs_free_cluster *cluster,
2336 u64 offset, u64 bytes, u64 empty_size)
2337{
Li Zefan34d52cb2011-03-29 13:46:06 +08002338 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002339 struct list_head bitmaps;
2340 struct btrfs_free_space *entry, *tmp;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002341 u64 min_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002342 int ret;
2343
2344 /* for metadata, allow allocates with more holes */
Chris Mason451d7582009-06-09 20:28:34 -04002345 if (btrfs_test_opt(root, SSD_SPREAD)) {
2346 min_bytes = bytes + empty_size;
2347 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002348 /*
2349 * we want to do larger allocations when we are
2350 * flushing out the delayed refs, it helps prevent
2351 * making more work as we go along.
2352 */
2353 if (trans->transaction->delayed_refs.flushing)
2354 min_bytes = max(bytes, (bytes + empty_size) >> 1);
2355 else
2356 min_bytes = max(bytes, (bytes + empty_size) >> 4);
2357 } else
2358 min_bytes = max(bytes, (bytes + empty_size) >> 2);
2359
Li Zefan34d52cb2011-03-29 13:46:06 +08002360 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002361
2362 /*
2363 * If we know we don't have enough space to make a cluster don't even
2364 * bother doing all the work to try and find one.
2365 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002366 if (ctl->free_space < min_bytes) {
2367 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002368 return -ENOSPC;
2369 }
2370
Chris Masonfa9c0d792009-04-03 09:47:43 -04002371 spin_lock(&cluster->lock);
2372
2373 /* someone already found a cluster, hooray */
2374 if (cluster->block_group) {
2375 ret = 0;
2376 goto out;
2377 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002378
Josef Bacik86d4a772011-05-25 13:03:16 -04002379 INIT_LIST_HEAD(&bitmaps);
2380 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
2381 bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002382 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002383 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
2384 offset, bytes, min_bytes);
2385
2386 /* Clear our temporary list */
2387 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2388 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002389
2390 if (!ret) {
2391 atomic_inc(&block_group->count);
2392 list_add_tail(&cluster->block_group_list,
2393 &block_group->cluster_list);
2394 cluster->block_group = block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002395 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002396out:
2397 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002398 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002399
2400 return ret;
2401}
2402
2403/*
2404 * simple code to zero out a cluster
2405 */
2406void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2407{
2408 spin_lock_init(&cluster->lock);
2409 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002410 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002411 cluster->max_size = 0;
2412 INIT_LIST_HEAD(&cluster->block_group_list);
2413 cluster->block_group = NULL;
2414}
2415
Li Dongyangf7039b12011-03-24 10:24:28 +00002416int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2417 u64 *trimmed, u64 start, u64 end, u64 minlen)
2418{
Li Zefan34d52cb2011-03-29 13:46:06 +08002419 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Dongyangf7039b12011-03-24 10:24:28 +00002420 struct btrfs_free_space *entry = NULL;
2421 struct btrfs_fs_info *fs_info = block_group->fs_info;
2422 u64 bytes = 0;
2423 u64 actually_trimmed;
2424 int ret = 0;
2425
2426 *trimmed = 0;
2427
2428 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002429 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002430
Li Zefan34d52cb2011-03-29 13:46:06 +08002431 if (ctl->free_space < minlen) {
2432 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002433 break;
2434 }
2435
Li Zefan34d52cb2011-03-29 13:46:06 +08002436 entry = tree_search_offset(ctl, start, 0, 1);
Li Dongyangf7039b12011-03-24 10:24:28 +00002437 if (!entry)
Li Zefan34d52cb2011-03-29 13:46:06 +08002438 entry = tree_search_offset(ctl,
2439 offset_to_bitmap(ctl, start),
Li Dongyangf7039b12011-03-24 10:24:28 +00002440 1, 1);
2441
2442 if (!entry || entry->offset >= end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002443 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002444 break;
2445 }
2446
2447 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002448 ret = search_bitmap(ctl, entry, &start, &bytes);
Li Dongyangf7039b12011-03-24 10:24:28 +00002449 if (!ret) {
2450 if (start >= end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002451 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002452 break;
2453 }
2454 bytes = min(bytes, end - start);
Li Zefan34d52cb2011-03-29 13:46:06 +08002455 bitmap_clear_bits(ctl, entry, start, bytes);
Li Dongyangf7039b12011-03-24 10:24:28 +00002456 if (entry->bytes == 0)
Li Zefan34d52cb2011-03-29 13:46:06 +08002457 free_bitmap(ctl, entry);
Li Dongyangf7039b12011-03-24 10:24:28 +00002458 } else {
2459 start = entry->offset + BITS_PER_BITMAP *
2460 block_group->sectorsize;
Li Zefan34d52cb2011-03-29 13:46:06 +08002461 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002462 ret = 0;
2463 continue;
2464 }
2465 } else {
2466 start = entry->offset;
2467 bytes = min(entry->bytes, end - start);
Li Zefan34d52cb2011-03-29 13:46:06 +08002468 unlink_free_space(ctl, entry);
Li Zefanf789b682011-04-25 19:43:52 -04002469 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Dongyangf7039b12011-03-24 10:24:28 +00002470 }
2471
Li Zefan34d52cb2011-03-29 13:46:06 +08002472 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002473
2474 if (bytes >= minlen) {
Josef Bacikfb25e912011-07-26 17:00:46 -04002475 struct btrfs_space_info *space_info;
2476 int update = 0;
2477
2478 space_info = block_group->space_info;
2479 spin_lock(&space_info->lock);
2480 spin_lock(&block_group->lock);
2481 if (!block_group->ro) {
2482 block_group->reserved += bytes;
2483 space_info->bytes_reserved += bytes;
2484 update = 1;
2485 }
2486 spin_unlock(&block_group->lock);
2487 spin_unlock(&space_info->lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002488
2489 ret = btrfs_error_discard_extent(fs_info->extent_root,
2490 start,
2491 bytes,
2492 &actually_trimmed);
2493
Li Zefan34d52cb2011-03-29 13:46:06 +08002494 btrfs_add_free_space(block_group, start, bytes);
Josef Bacikfb25e912011-07-26 17:00:46 -04002495 if (update) {
2496 spin_lock(&space_info->lock);
2497 spin_lock(&block_group->lock);
2498 if (block_group->ro)
2499 space_info->bytes_readonly += bytes;
2500 block_group->reserved -= bytes;
2501 space_info->bytes_reserved -= bytes;
2502 spin_unlock(&space_info->lock);
2503 spin_unlock(&block_group->lock);
2504 }
Li Dongyangf7039b12011-03-24 10:24:28 +00002505
2506 if (ret)
2507 break;
2508 *trimmed += actually_trimmed;
2509 }
2510 start += bytes;
2511 bytes = 0;
2512
2513 if (fatal_signal_pending(current)) {
2514 ret = -ERESTARTSYS;
2515 break;
2516 }
2517
2518 cond_resched();
2519 }
2520
2521 return ret;
2522}
Li Zefan581bb052011-04-20 10:06:11 +08002523
2524/*
2525 * Find the left-most item in the cache tree, and then return the
2526 * smallest inode number in the item.
2527 *
2528 * Note: the returned inode number may not be the smallest one in
2529 * the tree, if the left-most item is a bitmap.
2530 */
2531u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2532{
2533 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2534 struct btrfs_free_space *entry = NULL;
2535 u64 ino = 0;
2536
2537 spin_lock(&ctl->tree_lock);
2538
2539 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2540 goto out;
2541
2542 entry = rb_entry(rb_first(&ctl->free_space_offset),
2543 struct btrfs_free_space, offset_index);
2544
2545 if (!entry->bitmap) {
2546 ino = entry->offset;
2547
2548 unlink_free_space(ctl, entry);
2549 entry->offset++;
2550 entry->bytes--;
2551 if (!entry->bytes)
2552 kmem_cache_free(btrfs_free_space_cachep, entry);
2553 else
2554 link_free_space(ctl, entry);
2555 } else {
2556 u64 offset = 0;
2557 u64 count = 1;
2558 int ret;
2559
2560 ret = search_bitmap(ctl, entry, &offset, &count);
2561 BUG_ON(ret);
2562
2563 ino = offset;
2564 bitmap_clear_bits(ctl, entry, offset, 1);
2565 if (entry->bytes == 0)
2566 free_bitmap(ctl, entry);
2567 }
2568out:
2569 spin_unlock(&ctl->tree_lock);
2570
2571 return ino;
2572}
Li Zefan82d59022011-04-20 10:33:24 +08002573
2574struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2575 struct btrfs_path *path)
2576{
2577 struct inode *inode = NULL;
2578
2579 spin_lock(&root->cache_lock);
2580 if (root->cache_inode)
2581 inode = igrab(root->cache_inode);
2582 spin_unlock(&root->cache_lock);
2583 if (inode)
2584 return inode;
2585
2586 inode = __lookup_free_space_inode(root, path, 0);
2587 if (IS_ERR(inode))
2588 return inode;
2589
2590 spin_lock(&root->cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02002591 if (!btrfs_fs_closing(root->fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002592 root->cache_inode = igrab(inode);
2593 spin_unlock(&root->cache_lock);
2594
2595 return inode;
2596}
2597
2598int create_free_ino_inode(struct btrfs_root *root,
2599 struct btrfs_trans_handle *trans,
2600 struct btrfs_path *path)
2601{
2602 return __create_free_space_inode(root, trans, path,
2603 BTRFS_FREE_INO_OBJECTID, 0);
2604}
2605
2606int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2607{
2608 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2609 struct btrfs_path *path;
2610 struct inode *inode;
2611 int ret = 0;
2612 u64 root_gen = btrfs_root_generation(&root->root_item);
2613
Chris Mason4b9465c2011-06-03 09:36:29 -04002614 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2615 return 0;
2616
Li Zefan82d59022011-04-20 10:33:24 +08002617 /*
2618 * If we're unmounting then just return, since this does a search on the
2619 * normal root and not the commit root and we could deadlock.
2620 */
David Sterba7841cb22011-05-31 18:07:27 +02002621 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002622 return 0;
2623
2624 path = btrfs_alloc_path();
2625 if (!path)
2626 return 0;
2627
2628 inode = lookup_free_ino_inode(root, path);
2629 if (IS_ERR(inode))
2630 goto out;
2631
2632 if (root_gen != BTRFS_I(inode)->generation)
2633 goto out_put;
2634
2635 ret = __load_free_space_cache(root, inode, ctl, path, 0);
2636
2637 if (ret < 0)
2638 printk(KERN_ERR "btrfs: failed to load free ino cache for "
2639 "root %llu\n", root->root_key.objectid);
2640out_put:
2641 iput(inode);
2642out:
2643 btrfs_free_path(path);
2644 return ret;
2645}
2646
2647int btrfs_write_out_ino_cache(struct btrfs_root *root,
2648 struct btrfs_trans_handle *trans,
2649 struct btrfs_path *path)
2650{
2651 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2652 struct inode *inode;
2653 int ret;
2654
Chris Mason4b9465c2011-06-03 09:36:29 -04002655 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2656 return 0;
2657
Li Zefan82d59022011-04-20 10:33:24 +08002658 inode = lookup_free_ino_inode(root, path);
2659 if (IS_ERR(inode))
2660 return 0;
2661
2662 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
2663 if (ret < 0)
2664 printk(KERN_ERR "btrfs: failed to write free ino cache "
2665 "for root %llu\n", root->root_key.objectid);
2666
2667 iput(inode);
2668 return ret;
2669}