blob: 7d8b6b6434034354965b3b5cc725e200dbd3ed5f [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) {
56 btrfs_release_path(root, path);
57 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);
65 btrfs_release_path(root, path);
66
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);
101 if (!root->fs_info->closing) {
102 block_group->inode = igrab(inode);
103 block_group->iref = 1;
104 }
105 spin_unlock(&block_group->lock);
106
107 return inode;
108}
109
Li Zefan0414efa2011-04-20 10:20:14 +0800110int __create_free_space_inode(struct btrfs_root *root,
111 struct btrfs_trans_handle *trans,
112 struct btrfs_path *path, u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400113{
114 struct btrfs_key key;
115 struct btrfs_disk_key disk_key;
116 struct btrfs_free_space_header *header;
117 struct btrfs_inode_item *inode_item;
118 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -0400119 int ret;
120
Li Zefan0414efa2011-04-20 10:20:14 +0800121 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400122 if (ret)
123 return ret;
124
125 leaf = path->nodes[0];
126 inode_item = btrfs_item_ptr(leaf, path->slots[0],
127 struct btrfs_inode_item);
128 btrfs_item_key(leaf, &disk_key, path->slots[0]);
129 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
130 sizeof(*inode_item));
131 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
132 btrfs_set_inode_size(leaf, inode_item, 0);
133 btrfs_set_inode_nbytes(leaf, inode_item, 0);
134 btrfs_set_inode_uid(leaf, inode_item, 0);
135 btrfs_set_inode_gid(leaf, inode_item, 0);
136 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
137 btrfs_set_inode_flags(leaf, inode_item, BTRFS_INODE_NOCOMPRESS |
138 BTRFS_INODE_PREALLOC | BTRFS_INODE_NODATASUM);
139 btrfs_set_inode_nlink(leaf, inode_item, 1);
140 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800141 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400142 btrfs_mark_buffer_dirty(leaf);
143 btrfs_release_path(root, path);
144
145 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800146 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400147 key.type = 0;
148
149 ret = btrfs_insert_empty_item(trans, root, path, &key,
150 sizeof(struct btrfs_free_space_header));
151 if (ret < 0) {
152 btrfs_release_path(root, path);
153 return ret;
154 }
155 leaf = path->nodes[0];
156 header = btrfs_item_ptr(leaf, path->slots[0],
157 struct btrfs_free_space_header);
158 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
159 btrfs_set_free_space_key(leaf, header, &disk_key);
160 btrfs_mark_buffer_dirty(leaf);
161 btrfs_release_path(root, path);
162
163 return 0;
164}
165
Li Zefan0414efa2011-04-20 10:20:14 +0800166int create_free_space_inode(struct btrfs_root *root,
167 struct btrfs_trans_handle *trans,
168 struct btrfs_block_group_cache *block_group,
169 struct btrfs_path *path)
170{
171 int ret;
172 u64 ino;
173
174 ret = btrfs_find_free_objectid(root, &ino);
175 if (ret < 0)
176 return ret;
177
178 return __create_free_space_inode(root, trans, path, ino,
179 block_group->key.objectid);
180}
181
Josef Bacik0af3d002010-06-21 14:48:16 -0400182int btrfs_truncate_free_space_cache(struct btrfs_root *root,
183 struct btrfs_trans_handle *trans,
184 struct btrfs_path *path,
185 struct inode *inode)
186{
187 loff_t oldsize;
188 int ret = 0;
189
190 trans->block_rsv = root->orphan_block_rsv;
191 ret = btrfs_block_rsv_check(trans, root,
192 root->orphan_block_rsv,
193 0, 5);
194 if (ret)
195 return ret;
196
197 oldsize = i_size_read(inode);
198 btrfs_i_size_write(inode, 0);
199 truncate_pagecache(inode, oldsize, 0);
200
201 /*
202 * We don't need an orphan item because truncating the free space cache
203 * will never be split across transactions.
204 */
205 ret = btrfs_truncate_inode_items(trans, root, inode,
206 0, BTRFS_EXTENT_DATA_KEY);
207 if (ret) {
208 WARN_ON(1);
209 return ret;
210 }
211
Li Zefan82d59022011-04-20 10:33:24 +0800212 ret = btrfs_update_inode(trans, root, inode);
213 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400214}
215
Josef Bacik9d66e232010-08-25 16:54:15 -0400216static int readahead_cache(struct inode *inode)
217{
218 struct file_ra_state *ra;
219 unsigned long last_index;
220
221 ra = kzalloc(sizeof(*ra), GFP_NOFS);
222 if (!ra)
223 return -ENOMEM;
224
225 file_ra_state_init(ra, inode->i_mapping);
226 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
227
228 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
229
230 kfree(ra);
231
232 return 0;
233}
234
Li Zefan0414efa2011-04-20 10:20:14 +0800235int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
236 struct btrfs_free_space_ctl *ctl,
237 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400238{
Josef Bacik9d66e232010-08-25 16:54:15 -0400239 struct btrfs_free_space_header *header;
240 struct extent_buffer *leaf;
241 struct page *page;
Josef Bacik9d66e232010-08-25 16:54:15 -0400242 u32 *checksums = NULL, *crc;
243 char *disk_crcs = NULL;
244 struct btrfs_key key;
245 struct list_head bitmaps;
246 u64 num_entries;
247 u64 num_bitmaps;
248 u64 generation;
249 u32 cur_crc = ~(u32)0;
250 pgoff_t index = 0;
251 unsigned long first_page_offset;
252 int num_checksums;
Li Zefan0414efa2011-04-20 10:20:14 +0800253 int ret = 0, ret2;
Josef Bacik9d66e232010-08-25 16:54:15 -0400254
255 INIT_LIST_HEAD(&bitmaps);
256
Josef Bacik9d66e232010-08-25 16:54:15 -0400257 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800258 if (!i_size_read(inode))
Josef Bacik9d66e232010-08-25 16:54:15 -0400259 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400260
261 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800262 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400263 key.type = 0;
264
265 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800266 if (ret < 0)
267 goto out;
268 else if (ret > 0) {
269 btrfs_release_path(root, path);
270 ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400271 goto out;
272 }
273
Li Zefan0414efa2011-04-20 10:20:14 +0800274 ret = -1;
275
Josef Bacik9d66e232010-08-25 16:54:15 -0400276 leaf = path->nodes[0];
277 header = btrfs_item_ptr(leaf, path->slots[0],
278 struct btrfs_free_space_header);
279 num_entries = btrfs_free_space_entries(leaf, header);
280 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
281 generation = btrfs_free_space_generation(leaf, header);
Li Zefan0414efa2011-04-20 10:20:14 +0800282 btrfs_release_path(root, path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400283
284 if (BTRFS_I(inode)->generation != generation) {
285 printk(KERN_ERR "btrfs: free space inode generation (%llu) did"
Li Zefan0414efa2011-04-20 10:20:14 +0800286 " not match free space cache generation (%llu)\n",
Josef Bacik9d66e232010-08-25 16:54:15 -0400287 (unsigned long long)BTRFS_I(inode)->generation,
Li Zefan0414efa2011-04-20 10:20:14 +0800288 (unsigned long long)generation);
289 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400290 }
291
292 if (!num_entries)
293 goto out;
294
295 /* Setup everything for doing checksumming */
296 num_checksums = i_size_read(inode) / PAGE_CACHE_SIZE;
297 checksums = crc = kzalloc(sizeof(u32) * num_checksums, GFP_NOFS);
298 if (!checksums)
299 goto out;
300 first_page_offset = (sizeof(u32) * num_checksums) + sizeof(u64);
301 disk_crcs = kzalloc(first_page_offset, GFP_NOFS);
302 if (!disk_crcs)
303 goto out;
304
305 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800306 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400307 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400308
309 while (1) {
310 struct btrfs_free_space_entry *entry;
311 struct btrfs_free_space *e;
312 void *addr;
313 unsigned long offset = 0;
314 unsigned long start_offset = 0;
315 int need_loop = 0;
316
317 if (!num_entries && !num_bitmaps)
318 break;
319
320 if (index == 0) {
321 start_offset = first_page_offset;
322 offset = start_offset;
323 }
324
325 page = grab_cache_page(inode->i_mapping, index);
Li Zefan0414efa2011-04-20 10:20:14 +0800326 if (!page)
Josef Bacik9d66e232010-08-25 16:54:15 -0400327 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400328
329 if (!PageUptodate(page)) {
330 btrfs_readpage(NULL, page);
331 lock_page(page);
332 if (!PageUptodate(page)) {
333 unlock_page(page);
334 page_cache_release(page);
335 printk(KERN_ERR "btrfs: error reading free "
Li Zefan0414efa2011-04-20 10:20:14 +0800336 "space cache\n");
Josef Bacik9d66e232010-08-25 16:54:15 -0400337 goto free_cache;
338 }
339 }
340 addr = kmap(page);
341
342 if (index == 0) {
343 u64 *gen;
344
345 memcpy(disk_crcs, addr, first_page_offset);
346 gen = addr + (sizeof(u32) * num_checksums);
347 if (*gen != BTRFS_I(inode)->generation) {
348 printk(KERN_ERR "btrfs: space cache generation"
Li Zefan0414efa2011-04-20 10:20:14 +0800349 " (%llu) does not match inode (%llu)\n",
Josef Bacik9d66e232010-08-25 16:54:15 -0400350 (unsigned long long)*gen,
351 (unsigned long long)
Li Zefan0414efa2011-04-20 10:20:14 +0800352 BTRFS_I(inode)->generation);
Josef Bacik9d66e232010-08-25 16:54:15 -0400353 kunmap(page);
354 unlock_page(page);
355 page_cache_release(page);
356 goto free_cache;
357 }
358 crc = (u32 *)disk_crcs;
359 }
360 entry = addr + start_offset;
361
362 /* First lets check our crc before we do anything fun */
363 cur_crc = ~(u32)0;
364 cur_crc = btrfs_csum_data(root, addr + start_offset, cur_crc,
365 PAGE_CACHE_SIZE - start_offset);
366 btrfs_csum_final(cur_crc, (char *)&cur_crc);
367 if (cur_crc != *crc) {
Li Zefan0414efa2011-04-20 10:20:14 +0800368 printk(KERN_ERR "btrfs: crc mismatch for page %lu\n",
369 index);
Josef Bacik9d66e232010-08-25 16:54:15 -0400370 kunmap(page);
371 unlock_page(page);
372 page_cache_release(page);
373 goto free_cache;
374 }
375 crc++;
376
377 while (1) {
378 if (!num_entries)
379 break;
380
381 need_loop = 1;
Josef Bacikdc89e982011-01-28 17:05:48 -0500382 e = kmem_cache_zalloc(btrfs_free_space_cachep,
383 GFP_NOFS);
Josef Bacik9d66e232010-08-25 16:54:15 -0400384 if (!e) {
385 kunmap(page);
386 unlock_page(page);
387 page_cache_release(page);
388 goto free_cache;
389 }
390
391 e->offset = le64_to_cpu(entry->offset);
392 e->bytes = le64_to_cpu(entry->bytes);
393 if (!e->bytes) {
394 kunmap(page);
Josef Bacikdc89e982011-01-28 17:05:48 -0500395 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400396 unlock_page(page);
397 page_cache_release(page);
398 goto free_cache;
399 }
400
401 if (entry->type == BTRFS_FREE_SPACE_EXTENT) {
Li Zefan34d52cb2011-03-29 13:46:06 +0800402 spin_lock(&ctl->tree_lock);
403 ret = link_free_space(ctl, e);
404 spin_unlock(&ctl->tree_lock);
Josef Bacik9d66e232010-08-25 16:54:15 -0400405 BUG_ON(ret);
406 } else {
407 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
408 if (!e->bitmap) {
409 kunmap(page);
Josef Bacikdc89e982011-01-28 17:05:48 -0500410 kmem_cache_free(
411 btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400412 unlock_page(page);
413 page_cache_release(page);
414 goto free_cache;
415 }
Li Zefan34d52cb2011-03-29 13:46:06 +0800416 spin_lock(&ctl->tree_lock);
Li Zefan0414efa2011-04-20 10:20:14 +0800417 ret2 = link_free_space(ctl, e);
Li Zefan34d52cb2011-03-29 13:46:06 +0800418 ctl->total_bitmaps++;
419 ctl->op->recalc_thresholds(ctl);
420 spin_unlock(&ctl->tree_lock);
Josef Bacik9d66e232010-08-25 16:54:15 -0400421 list_add_tail(&e->list, &bitmaps);
422 }
423
424 num_entries--;
425 offset += sizeof(struct btrfs_free_space_entry);
426 if (offset + sizeof(struct btrfs_free_space_entry) >=
427 PAGE_CACHE_SIZE)
428 break;
429 entry++;
430 }
431
432 /*
433 * We read an entry out of this page, we need to move on to the
434 * next page.
435 */
436 if (need_loop) {
437 kunmap(page);
438 goto next;
439 }
440
441 /*
442 * We add the bitmaps at the end of the entries in order that
443 * the bitmap entries are added to the cache.
444 */
445 e = list_entry(bitmaps.next, struct btrfs_free_space, list);
446 list_del_init(&e->list);
447 memcpy(e->bitmap, addr, PAGE_CACHE_SIZE);
448 kunmap(page);
449 num_bitmaps--;
450next:
451 unlock_page(page);
452 page_cache_release(page);
453 index++;
454 }
455
456 ret = 1;
457out:
458 kfree(checksums);
459 kfree(disk_crcs);
Josef Bacik9d66e232010-08-25 16:54:15 -0400460 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400461free_cache:
Li Zefan0414efa2011-04-20 10:20:14 +0800462 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400463 goto out;
464}
465
Li Zefan0414efa2011-04-20 10:20:14 +0800466int load_free_space_cache(struct btrfs_fs_info *fs_info,
467 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400468{
Li Zefan34d52cb2011-03-29 13:46:06 +0800469 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800470 struct btrfs_root *root = fs_info->tree_root;
471 struct inode *inode;
472 struct btrfs_path *path;
473 int ret;
474 bool matched;
475 u64 used = btrfs_block_group_used(&block_group->item);
476
477 /*
478 * If we're unmounting then just return, since this does a search on the
479 * normal root and not the commit root and we could deadlock.
480 */
481 smp_mb();
482 if (fs_info->closing)
483 return 0;
484
485 /*
486 * If this block group has been marked to be cleared for one reason or
487 * another then we can't trust the on disk cache, so just return.
488 */
489 spin_lock(&block_group->lock);
490 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
491 spin_unlock(&block_group->lock);
492 return 0;
493 }
494 spin_unlock(&block_group->lock);
495
496 path = btrfs_alloc_path();
497 if (!path)
498 return 0;
499
500 inode = lookup_free_space_inode(root, block_group, path);
501 if (IS_ERR(inode)) {
502 btrfs_free_path(path);
503 return 0;
504 }
505
506 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
507 path, block_group->key.objectid);
508 btrfs_free_path(path);
509 if (ret <= 0)
510 goto out;
511
512 spin_lock(&ctl->tree_lock);
513 matched = (ctl->free_space == (block_group->key.offset - used -
514 block_group->bytes_super));
515 spin_unlock(&ctl->tree_lock);
516
517 if (!matched) {
518 __btrfs_remove_free_space_cache(ctl);
519 printk(KERN_ERR "block group %llu has an wrong amount of free "
520 "space\n", block_group->key.objectid);
521 ret = -1;
522 }
523out:
524 if (ret < 0) {
525 /* This cache is bogus, make sure it gets cleared */
526 spin_lock(&block_group->lock);
527 block_group->disk_cache_state = BTRFS_DC_CLEAR;
528 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800529 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800530
531 printk(KERN_ERR "btrfs: failed to load free space cache "
532 "for block group %llu\n", block_group->key.objectid);
533 }
534
535 iput(inode);
536 return ret;
537}
538
539int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
540 struct btrfs_free_space_ctl *ctl,
541 struct btrfs_block_group_cache *block_group,
542 struct btrfs_trans_handle *trans,
543 struct btrfs_path *path, u64 offset)
544{
Josef Bacik0cb59c92010-07-02 12:14:14 -0400545 struct btrfs_free_space_header *header;
546 struct extent_buffer *leaf;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400547 struct rb_node *node;
548 struct list_head *pos, *n;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400549 struct page **pages;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400550 struct page *page;
551 struct extent_state *cached_state = NULL;
Josef Bacik43be2142011-04-01 14:55:00 +0000552 struct btrfs_free_cluster *cluster = NULL;
553 struct extent_io_tree *unpin = NULL;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400554 struct list_head bitmap_list;
555 struct btrfs_key key;
Josef Bacik43be2142011-04-01 14:55:00 +0000556 u64 start, end, len;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400557 u64 bytes = 0;
558 u32 *crc, *checksums;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400559 unsigned long first_page_offset;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400560 int index = 0, num_pages = 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400561 int entries = 0;
562 int bitmaps = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800563 int ret = -1;
Josef Bacik43be2142011-04-01 14:55:00 +0000564 bool next_page = false;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400565 bool out_of_space = false;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400566
Josef Bacik0cb59c92010-07-02 12:14:14 -0400567 INIT_LIST_HEAD(&bitmap_list);
568
Li Zefan34d52cb2011-03-29 13:46:06 +0800569 node = rb_first(&ctl->free_space_offset);
Li Zefan0414efa2011-04-20 10:20:14 +0800570 if (!node)
Josef Bacik2b209822010-12-03 13:17:53 -0500571 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800572
573 if (!i_size_read(inode))
574 return -1;
Josef Bacik2b209822010-12-03 13:17:53 -0500575
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400576 num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
577 PAGE_CACHE_SHIFT;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400578 filemap_write_and_wait(inode->i_mapping);
579 btrfs_wait_ordered_range(inode, inode->i_size &
580 ~(root->sectorsize - 1), (u64)-1);
581
582 /* We need a checksum per page. */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400583 crc = checksums = kzalloc(sizeof(u32) * num_pages, GFP_NOFS);
Li Zefan0414efa2011-04-20 10:20:14 +0800584 if (!crc)
585 return -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400586
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400587 pages = kzalloc(sizeof(struct page *) * num_pages, GFP_NOFS);
588 if (!pages) {
589 kfree(crc);
Li Zefan0414efa2011-04-20 10:20:14 +0800590 return -1;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400591 }
592
Josef Bacik0cb59c92010-07-02 12:14:14 -0400593 /* Since the first page has all of our checksums and our generation we
594 * need to calculate the offset into the page that we can start writing
595 * our entries.
596 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400597 first_page_offset = (sizeof(u32) * num_pages) + sizeof(u64);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400598
Josef Bacik43be2142011-04-01 14:55:00 +0000599 /* Get the cluster for this block_group if it exists */
Li Zefan0414efa2011-04-20 10:20:14 +0800600 if (block_group && !list_empty(&block_group->cluster_list))
Josef Bacik43be2142011-04-01 14:55:00 +0000601 cluster = list_entry(block_group->cluster_list.next,
602 struct btrfs_free_cluster,
603 block_group_list);
604
605 /*
606 * We shouldn't have switched the pinned extents yet so this is the
607 * right one
608 */
609 unpin = root->fs_info->pinned_extents;
610
Josef Bacik0cb59c92010-07-02 12:14:14 -0400611 /*
612 * Lock all pages first so we can lock the extent safely.
613 *
614 * NOTE: Because we hold the ref the entire time we're going to write to
615 * the page find_get_page should never fail, so we don't do a check
616 * after find_get_page at this point. Just putting this here so people
617 * know and don't freak out.
618 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400619 while (index < num_pages) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400620 page = grab_cache_page(inode->i_mapping, index);
621 if (!page) {
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400622 int i;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400623
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400624 for (i = 0; i < num_pages; i++) {
625 unlock_page(pages[i]);
626 page_cache_release(pages[i]);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400627 }
628 goto out_free;
629 }
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400630 pages[index] = page;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400631 index++;
632 }
633
634 index = 0;
635 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
636 0, &cached_state, GFP_NOFS);
637
Josef Bacik43be2142011-04-01 14:55:00 +0000638 /*
639 * When searching for pinned extents, we need to start at our start
640 * offset.
641 */
Li Zefan0414efa2011-04-20 10:20:14 +0800642 if (block_group)
643 start = block_group->key.objectid;
Josef Bacik43be2142011-04-01 14:55:00 +0000644
Josef Bacik0cb59c92010-07-02 12:14:14 -0400645 /* Write out the extent entries */
646 do {
647 struct btrfs_free_space_entry *entry;
648 void *addr;
649 unsigned long offset = 0;
650 unsigned long start_offset = 0;
651
Josef Bacik43be2142011-04-01 14:55:00 +0000652 next_page = false;
653
Josef Bacik0cb59c92010-07-02 12:14:14 -0400654 if (index == 0) {
655 start_offset = first_page_offset;
656 offset = start_offset;
657 }
658
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400659 if (index >= num_pages) {
660 out_of_space = true;
661 break;
662 }
663
664 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400665
666 addr = kmap(page);
667 entry = addr + start_offset;
668
669 memset(addr, 0, PAGE_CACHE_SIZE);
Josef Bacik43be2142011-04-01 14:55:00 +0000670 while (node && !next_page) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400671 struct btrfs_free_space *e;
672
673 e = rb_entry(node, struct btrfs_free_space, offset_index);
674 entries++;
675
676 entry->offset = cpu_to_le64(e->offset);
677 entry->bytes = cpu_to_le64(e->bytes);
678 if (e->bitmap) {
679 entry->type = BTRFS_FREE_SPACE_BITMAP;
680 list_add_tail(&e->list, &bitmap_list);
681 bitmaps++;
682 } else {
683 entry->type = BTRFS_FREE_SPACE_EXTENT;
684 }
685 node = rb_next(node);
Josef Bacik43be2142011-04-01 14:55:00 +0000686 if (!node && cluster) {
687 node = rb_first(&cluster->root);
688 cluster = NULL;
689 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400690 offset += sizeof(struct btrfs_free_space_entry);
691 if (offset + sizeof(struct btrfs_free_space_entry) >=
692 PAGE_CACHE_SIZE)
Josef Bacik43be2142011-04-01 14:55:00 +0000693 next_page = true;
694 entry++;
695 }
696
697 /*
698 * We want to add any pinned extents to our free space cache
699 * so we don't leak the space
700 */
Li Zefan0414efa2011-04-20 10:20:14 +0800701 while (block_group && !next_page &&
702 (start < block_group->key.objectid +
703 block_group->key.offset)) {
Josef Bacik43be2142011-04-01 14:55:00 +0000704 ret = find_first_extent_bit(unpin, start, &start, &end,
705 EXTENT_DIRTY);
706 if (ret) {
707 ret = 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400708 break;
Josef Bacik43be2142011-04-01 14:55:00 +0000709 }
710
711 /* This pinned extent is out of our range */
712 if (start >= block_group->key.objectid +
713 block_group->key.offset)
714 break;
715
716 len = block_group->key.objectid +
717 block_group->key.offset - start;
718 len = min(len, end + 1 - start);
719
720 entries++;
721 entry->offset = cpu_to_le64(start);
722 entry->bytes = cpu_to_le64(len);
723 entry->type = BTRFS_FREE_SPACE_EXTENT;
724
725 start = end + 1;
726 offset += sizeof(struct btrfs_free_space_entry);
727 if (offset + sizeof(struct btrfs_free_space_entry) >=
728 PAGE_CACHE_SIZE)
729 next_page = true;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400730 entry++;
731 }
732 *crc = ~(u32)0;
733 *crc = btrfs_csum_data(root, addr + start_offset, *crc,
734 PAGE_CACHE_SIZE - start_offset);
735 kunmap(page);
736
737 btrfs_csum_final(*crc, (char *)crc);
738 crc++;
739
740 bytes += PAGE_CACHE_SIZE;
741
Josef Bacik0cb59c92010-07-02 12:14:14 -0400742 index++;
Josef Bacik43be2142011-04-01 14:55:00 +0000743 } while (node || next_page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400744
745 /* Write out the bitmaps */
746 list_for_each_safe(pos, n, &bitmap_list) {
747 void *addr;
748 struct btrfs_free_space *entry =
749 list_entry(pos, struct btrfs_free_space, list);
750
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400751 if (index >= num_pages) {
752 out_of_space = true;
753 break;
754 }
Chris Masonf65647c2011-04-18 08:55:34 -0400755 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400756
757 addr = kmap(page);
758 memcpy(addr, entry->bitmap, PAGE_CACHE_SIZE);
759 *crc = ~(u32)0;
760 *crc = btrfs_csum_data(root, addr, *crc, PAGE_CACHE_SIZE);
761 kunmap(page);
762 btrfs_csum_final(*crc, (char *)crc);
763 crc++;
764 bytes += PAGE_CACHE_SIZE;
765
Josef Bacik0cb59c92010-07-02 12:14:14 -0400766 list_del_init(&entry->list);
767 index++;
768 }
769
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400770 if (out_of_space) {
771 btrfs_drop_pages(pages, num_pages);
772 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
773 i_size_read(inode) - 1, &cached_state,
774 GFP_NOFS);
775 ret = 0;
776 goto out_free;
777 }
778
Josef Bacik0cb59c92010-07-02 12:14:14 -0400779 /* Zero out the rest of the pages just to make sure */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400780 while (index < num_pages) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400781 void *addr;
782
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400783 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400784 addr = kmap(page);
785 memset(addr, 0, PAGE_CACHE_SIZE);
786 kunmap(page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400787 bytes += PAGE_CACHE_SIZE;
788 index++;
789 }
790
Josef Bacik0cb59c92010-07-02 12:14:14 -0400791 /* Write the checksums and trans id to the first page */
792 {
793 void *addr;
794 u64 *gen;
795
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400796 page = pages[0];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400797
798 addr = kmap(page);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400799 memcpy(addr, checksums, sizeof(u32) * num_pages);
800 gen = addr + (sizeof(u32) * num_pages);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400801 *gen = trans->transid;
802 kunmap(page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400803 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400804
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400805 ret = btrfs_dirty_pages(root, inode, pages, num_pages, 0,
806 bytes, &cached_state);
807 btrfs_drop_pages(pages, num_pages);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400808 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
809 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
810
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400811 if (ret) {
812 ret = 0;
813 goto out_free;
814 }
815
816 BTRFS_I(inode)->generation = trans->transid;
817
Josef Bacik0cb59c92010-07-02 12:14:14 -0400818 filemap_write_and_wait(inode->i_mapping);
819
820 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800821 key.offset = offset;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400822 key.type = 0;
823
824 ret = btrfs_search_slot(trans, root, &key, path, 1, 1);
825 if (ret < 0) {
Li Zefan0414efa2011-04-20 10:20:14 +0800826 ret = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400827 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1,
828 EXTENT_DIRTY | EXTENT_DELALLOC |
829 EXTENT_DO_ACCOUNTING, 0, 0, NULL, GFP_NOFS);
830 goto out_free;
831 }
832 leaf = path->nodes[0];
833 if (ret > 0) {
834 struct btrfs_key found_key;
835 BUG_ON(!path->slots[0]);
836 path->slots[0]--;
837 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
838 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
Li Zefan0414efa2011-04-20 10:20:14 +0800839 found_key.offset != offset) {
840 ret = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400841 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1,
842 EXTENT_DIRTY | EXTENT_DELALLOC |
843 EXTENT_DO_ACCOUNTING, 0, 0, NULL,
844 GFP_NOFS);
845 btrfs_release_path(root, path);
846 goto out_free;
847 }
848 }
849 header = btrfs_item_ptr(leaf, path->slots[0],
850 struct btrfs_free_space_header);
851 btrfs_set_free_space_entries(leaf, header, entries);
852 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
853 btrfs_set_free_space_generation(leaf, header, trans->transid);
854 btrfs_mark_buffer_dirty(leaf);
855 btrfs_release_path(root, path);
856
857 ret = 1;
858
859out_free:
Li Zefan0414efa2011-04-20 10:20:14 +0800860 if (ret != 1) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400861 invalidate_inode_pages2_range(inode->i_mapping, 0, index);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400862 BTRFS_I(inode)->generation = 0;
863 }
864 kfree(checksums);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400865 kfree(pages);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400866 btrfs_update_inode(trans, root, inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800867 return ret;
868}
869
870int btrfs_write_out_cache(struct btrfs_root *root,
871 struct btrfs_trans_handle *trans,
872 struct btrfs_block_group_cache *block_group,
873 struct btrfs_path *path)
874{
875 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
876 struct inode *inode;
877 int ret = 0;
878
879 root = root->fs_info->tree_root;
880
881 spin_lock(&block_group->lock);
882 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
883 spin_unlock(&block_group->lock);
884 return 0;
885 }
886 spin_unlock(&block_group->lock);
887
888 inode = lookup_free_space_inode(root, block_group, path);
889 if (IS_ERR(inode))
890 return 0;
891
892 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
893 path, block_group->key.objectid);
894 if (ret < 0) {
895 spin_lock(&block_group->lock);
896 block_group->disk_cache_state = BTRFS_DC_ERROR;
897 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800898 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800899
900 printk(KERN_ERR "btrfs: failed to write free space cace "
901 "for block group %llu\n", block_group->key.objectid);
902 }
903
Josef Bacik0cb59c92010-07-02 12:14:14 -0400904 iput(inode);
905 return ret;
906}
907
Li Zefan34d52cb2011-03-29 13:46:06 +0800908static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -0400909 u64 offset)
910{
911 BUG_ON(offset < bitmap_start);
912 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +0800913 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -0400914}
915
Li Zefan34d52cb2011-03-29 13:46:06 +0800916static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -0400917{
Li Zefan34d52cb2011-03-29 13:46:06 +0800918 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -0400919}
920
Li Zefan34d52cb2011-03-29 13:46:06 +0800921static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -0400922 u64 offset)
923{
924 u64 bitmap_start;
925 u64 bytes_per_bitmap;
926
Li Zefan34d52cb2011-03-29 13:46:06 +0800927 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
928 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -0400929 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
930 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +0800931 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -0400932
933 return bitmap_start;
934}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400935
936static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -0400937 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400938{
939 struct rb_node **p = &root->rb_node;
940 struct rb_node *parent = NULL;
941 struct btrfs_free_space *info;
942
943 while (*p) {
944 parent = *p;
945 info = rb_entry(parent, struct btrfs_free_space, offset_index);
946
Josef Bacik96303082009-07-13 21:29:25 -0400947 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400948 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -0400949 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400950 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -0400951 } else {
952 /*
953 * we could have a bitmap entry and an extent entry
954 * share the same offset. If this is the case, we want
955 * the extent entry to always be found first if we do a
956 * linear search through the tree, since we want to have
957 * the quickest allocation time, and allocating from an
958 * extent is faster than allocating from a bitmap. So
959 * if we're inserting a bitmap and we find an entry at
960 * this offset, we want to go right, or after this entry
961 * logically. If we are inserting an extent and we've
962 * found a bitmap, we want to go left, or before
963 * logically.
964 */
965 if (bitmap) {
966 WARN_ON(info->bitmap);
967 p = &(*p)->rb_right;
968 } else {
969 WARN_ON(!info->bitmap);
970 p = &(*p)->rb_left;
971 }
972 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400973 }
974
975 rb_link_node(node, parent, p);
976 rb_insert_color(node, root);
977
978 return 0;
979}
980
981/*
Josef Bacik70cb0742009-04-03 10:14:19 -0400982 * searches the tree for the given offset.
983 *
Josef Bacik96303082009-07-13 21:29:25 -0400984 * fuzzy - If this is set, then we are trying to make an allocation, and we just
985 * want a section that has at least bytes size and comes at or after the given
986 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -0400987 */
Josef Bacik96303082009-07-13 21:29:25 -0400988static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +0800989tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -0400990 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400991{
Li Zefan34d52cb2011-03-29 13:46:06 +0800992 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -0400993 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400994
Josef Bacik96303082009-07-13 21:29:25 -0400995 /* find entry that is closest to the 'offset' */
996 while (1) {
997 if (!n) {
998 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400999 break;
1000 }
Josef Bacik96303082009-07-13 21:29:25 -04001001
1002 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1003 prev = entry;
1004
1005 if (offset < entry->offset)
1006 n = n->rb_left;
1007 else if (offset > entry->offset)
1008 n = n->rb_right;
1009 else
1010 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001011 }
1012
Josef Bacik96303082009-07-13 21:29:25 -04001013 if (bitmap_only) {
1014 if (!entry)
1015 return NULL;
1016 if (entry->bitmap)
1017 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001018
Josef Bacik96303082009-07-13 21:29:25 -04001019 /*
1020 * bitmap entry and extent entry may share same offset,
1021 * in that case, bitmap entry comes after extent entry.
1022 */
1023 n = rb_next(n);
1024 if (!n)
1025 return NULL;
1026 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1027 if (entry->offset != offset)
1028 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001029
Josef Bacik96303082009-07-13 21:29:25 -04001030 WARN_ON(!entry->bitmap);
1031 return entry;
1032 } else if (entry) {
1033 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001034 /*
Josef Bacik96303082009-07-13 21:29:25 -04001035 * if previous extent entry covers the offset,
1036 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001037 */
Josef Bacik96303082009-07-13 21:29:25 -04001038 n = &entry->offset_index;
1039 while (1) {
1040 n = rb_prev(n);
1041 if (!n)
1042 break;
1043 prev = rb_entry(n, struct btrfs_free_space,
1044 offset_index);
1045 if (!prev->bitmap) {
1046 if (prev->offset + prev->bytes > offset)
1047 entry = prev;
1048 break;
1049 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001050 }
Josef Bacik96303082009-07-13 21:29:25 -04001051 }
1052 return entry;
1053 }
1054
1055 if (!prev)
1056 return NULL;
1057
1058 /* find last entry before the 'offset' */
1059 entry = prev;
1060 if (entry->offset > offset) {
1061 n = rb_prev(&entry->offset_index);
1062 if (n) {
1063 entry = rb_entry(n, struct btrfs_free_space,
1064 offset_index);
1065 BUG_ON(entry->offset > offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001066 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001067 if (fuzzy)
1068 return entry;
1069 else
1070 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001071 }
1072 }
1073
Josef Bacik96303082009-07-13 21:29:25 -04001074 if (entry->bitmap) {
1075 n = &entry->offset_index;
1076 while (1) {
1077 n = rb_prev(n);
1078 if (!n)
1079 break;
1080 prev = rb_entry(n, struct btrfs_free_space,
1081 offset_index);
1082 if (!prev->bitmap) {
1083 if (prev->offset + prev->bytes > offset)
1084 return prev;
1085 break;
1086 }
1087 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001088 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001089 return entry;
1090 } else if (entry->offset + entry->bytes > offset)
1091 return entry;
1092
1093 if (!fuzzy)
1094 return NULL;
1095
1096 while (1) {
1097 if (entry->bitmap) {
1098 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001099 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001100 break;
1101 } else {
1102 if (entry->offset + entry->bytes > offset)
1103 break;
1104 }
1105
1106 n = rb_next(&entry->offset_index);
1107 if (!n)
1108 return NULL;
1109 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1110 }
1111 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001112}
1113
Li Zefanf333adb2010-11-09 14:57:39 +08001114static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001115__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001116 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001117{
Li Zefan34d52cb2011-03-29 13:46:06 +08001118 rb_erase(&info->offset_index, &ctl->free_space_offset);
1119 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001120}
1121
Li Zefan34d52cb2011-03-29 13:46:06 +08001122static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001123 struct btrfs_free_space *info)
1124{
Li Zefan34d52cb2011-03-29 13:46:06 +08001125 __unlink_free_space(ctl, info);
1126 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001127}
1128
Li Zefan34d52cb2011-03-29 13:46:06 +08001129static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001130 struct btrfs_free_space *info)
1131{
1132 int ret = 0;
1133
Josef Bacik96303082009-07-13 21:29:25 -04001134 BUG_ON(!info->bitmap && !info->bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001135 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001136 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001137 if (ret)
1138 return ret;
1139
Li Zefan34d52cb2011-03-29 13:46:06 +08001140 ctl->free_space += info->bytes;
1141 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001142 return ret;
1143}
1144
Li Zefan34d52cb2011-03-29 13:46:06 +08001145static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001146{
Li Zefan34d52cb2011-03-29 13:46:06 +08001147 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001148 u64 max_bytes;
1149 u64 bitmap_bytes;
1150 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001151 u64 size = block_group->key.offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001152 u64 bytes_per_bg = BITS_PER_BITMAP * block_group->sectorsize;
1153 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1154
1155 BUG_ON(ctl->total_bitmaps > max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001156
1157 /*
1158 * The goal is to keep the total amount of memory used per 1gb of space
1159 * at or below 32k, so we need to adjust how much memory we allow to be
1160 * used by extent based free space tracking
1161 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001162 if (size < 1024 * 1024 * 1024)
1163 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1164 else
1165 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1166 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001167
Josef Bacik25891f72009-09-11 16:11:20 -04001168 /*
1169 * we want to account for 1 more bitmap than what we have so we can make
1170 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1171 * we add more bitmaps.
1172 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001173 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001174
Josef Bacik25891f72009-09-11 16:11:20 -04001175 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001176 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001177 return;
Josef Bacik96303082009-07-13 21:29:25 -04001178 }
Josef Bacik25891f72009-09-11 16:11:20 -04001179
1180 /*
1181 * we want the extent entry threshold to always be at most 1/2 the maxw
1182 * bytes we can have, or whatever is less than that.
1183 */
1184 extent_bytes = max_bytes - bitmap_bytes;
1185 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1186
Li Zefan34d52cb2011-03-29 13:46:06 +08001187 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001188 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001189}
1190
Li Zefan34d52cb2011-03-29 13:46:06 +08001191static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001192 struct btrfs_free_space *info, u64 offset,
1193 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001194{
Li Zefanf38b6e72011-03-14 13:40:51 +08001195 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001196
Li Zefan34d52cb2011-03-29 13:46:06 +08001197 start = offset_to_bit(info->offset, ctl->unit, offset);
1198 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001199 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001200
Li Zefanf38b6e72011-03-14 13:40:51 +08001201 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001202
1203 info->bytes -= bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001204 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001205}
1206
Li Zefan34d52cb2011-03-29 13:46:06 +08001207static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001208 struct btrfs_free_space *info, u64 offset,
1209 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001210{
Li Zefanf38b6e72011-03-14 13:40:51 +08001211 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001212
Li Zefan34d52cb2011-03-29 13:46:06 +08001213 start = offset_to_bit(info->offset, ctl->unit, offset);
1214 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001215 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001216
Li Zefanf38b6e72011-03-14 13:40:51 +08001217 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001218
1219 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001220 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001221}
1222
Li Zefan34d52cb2011-03-29 13:46:06 +08001223static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001224 struct btrfs_free_space *bitmap_info, u64 *offset,
1225 u64 *bytes)
1226{
1227 unsigned long found_bits = 0;
1228 unsigned long bits, i;
1229 unsigned long next_zero;
1230
Li Zefan34d52cb2011-03-29 13:46:06 +08001231 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001232 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001233 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001234
1235 for (i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i);
1236 i < BITS_PER_BITMAP;
1237 i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i + 1)) {
1238 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1239 BITS_PER_BITMAP, i);
1240 if ((next_zero - i) >= bits) {
1241 found_bits = next_zero - i;
1242 break;
1243 }
1244 i = next_zero;
1245 }
1246
1247 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001248 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1249 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001250 return 0;
1251 }
1252
1253 return -1;
1254}
1255
Li Zefan34d52cb2011-03-29 13:46:06 +08001256static struct btrfs_free_space *
1257find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001258{
1259 struct btrfs_free_space *entry;
1260 struct rb_node *node;
1261 int ret;
1262
Li Zefan34d52cb2011-03-29 13:46:06 +08001263 if (!ctl->free_space_offset.rb_node)
Josef Bacik96303082009-07-13 21:29:25 -04001264 return NULL;
1265
Li Zefan34d52cb2011-03-29 13:46:06 +08001266 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001267 if (!entry)
1268 return NULL;
1269
1270 for (node = &entry->offset_index; node; node = rb_next(node)) {
1271 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1272 if (entry->bytes < *bytes)
1273 continue;
1274
1275 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001276 ret = search_bitmap(ctl, entry, offset, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001277 if (!ret)
1278 return entry;
1279 continue;
1280 }
1281
1282 *offset = entry->offset;
1283 *bytes = entry->bytes;
1284 return entry;
1285 }
1286
1287 return NULL;
1288}
1289
Li Zefan34d52cb2011-03-29 13:46:06 +08001290static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001291 struct btrfs_free_space *info, u64 offset)
1292{
Li Zefan34d52cb2011-03-29 13:46:06 +08001293 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001294 info->bytes = 0;
Li Zefan34d52cb2011-03-29 13:46:06 +08001295 link_free_space(ctl, info);
1296 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001297
Li Zefan34d52cb2011-03-29 13:46:06 +08001298 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001299}
1300
Li Zefan34d52cb2011-03-29 13:46:06 +08001301static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001302 struct btrfs_free_space *bitmap_info)
1303{
Li Zefan34d52cb2011-03-29 13:46:06 +08001304 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001305 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001306 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001307 ctl->total_bitmaps--;
1308 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001309}
1310
Li Zefan34d52cb2011-03-29 13:46:06 +08001311static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001312 struct btrfs_free_space *bitmap_info,
1313 u64 *offset, u64 *bytes)
1314{
1315 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001316 u64 search_start, search_bytes;
1317 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001318
1319again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001320 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001321
Josef Bacik6606bb92009-07-31 11:03:58 -04001322 /*
1323 * XXX - this can go away after a few releases.
1324 *
1325 * since the only user of btrfs_remove_free_space is the tree logging
1326 * stuff, and the only way to test that is under crash conditions, we
1327 * want to have this debug stuff here just in case somethings not
1328 * working. Search the bitmap for the space we are trying to use to
1329 * make sure its actually there. If its not there then we need to stop
1330 * because something has gone wrong.
1331 */
1332 search_start = *offset;
1333 search_bytes = *bytes;
Josef Bacik13dbc082011-02-03 02:39:52 +00001334 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001335 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacik6606bb92009-07-31 11:03:58 -04001336 BUG_ON(ret < 0 || search_start != *offset);
1337
Josef Bacik96303082009-07-13 21:29:25 -04001338 if (*offset > bitmap_info->offset && *offset + *bytes > end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001339 bitmap_clear_bits(ctl, bitmap_info, *offset, end - *offset + 1);
Josef Bacik96303082009-07-13 21:29:25 -04001340 *bytes -= end - *offset + 1;
1341 *offset = end + 1;
1342 } else if (*offset >= bitmap_info->offset && *offset + *bytes <= end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001343 bitmap_clear_bits(ctl, bitmap_info, *offset, *bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001344 *bytes = 0;
1345 }
1346
1347 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001348 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001349 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001350 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001351
Josef Bacik6606bb92009-07-31 11:03:58 -04001352 /*
1353 * no entry after this bitmap, but we still have bytes to
1354 * remove, so something has gone wrong.
1355 */
1356 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001357 return -EINVAL;
1358
Josef Bacik6606bb92009-07-31 11:03:58 -04001359 bitmap_info = rb_entry(next, struct btrfs_free_space,
1360 offset_index);
1361
1362 /*
1363 * if the next entry isn't a bitmap we need to return to let the
1364 * extent stuff do its work.
1365 */
Josef Bacik96303082009-07-13 21:29:25 -04001366 if (!bitmap_info->bitmap)
1367 return -EAGAIN;
1368
Josef Bacik6606bb92009-07-31 11:03:58 -04001369 /*
1370 * Ok the next item is a bitmap, but it may not actually hold
1371 * the information for the rest of this free space stuff, so
1372 * look for it, and if we don't find it return so we can try
1373 * everything over again.
1374 */
1375 search_start = *offset;
1376 search_bytes = *bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001377 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001378 &search_bytes);
1379 if (ret < 0 || search_start != *offset)
1380 return -EAGAIN;
1381
Josef Bacik96303082009-07-13 21:29:25 -04001382 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001383 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001384 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001385
1386 return 0;
1387}
1388
Li Zefan34d52cb2011-03-29 13:46:06 +08001389static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1390 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001391{
Li Zefan34d52cb2011-03-29 13:46:06 +08001392 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001393
1394 /*
1395 * If we are below the extents threshold then we can add this as an
1396 * extent, and don't have to deal with the bitmap
1397 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001398 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001399 /*
1400 * If this block group has some small extents we don't want to
1401 * use up all of our free slots in the cache with them, we want
1402 * to reserve them to larger extents, however if we have plent
1403 * of cache left then go ahead an dadd them, no sense in adding
1404 * the overhead of a bitmap if we don't have to.
1405 */
1406 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001407 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1408 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001409 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001410 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001411 }
1412 }
Josef Bacik96303082009-07-13 21:29:25 -04001413
1414 /*
1415 * some block groups are so tiny they can't be enveloped by a bitmap, so
1416 * don't even bother to create a bitmap for this
1417 */
1418 if (BITS_PER_BITMAP * block_group->sectorsize >
1419 block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001420 return false;
1421
1422 return true;
1423}
1424
1425static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1426 struct btrfs_free_space *info)
1427{
1428 struct btrfs_free_space *bitmap_info;
1429 int added = 0;
1430 u64 bytes, offset, end;
1431 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001432
1433 bytes = info->bytes;
1434 offset = info->offset;
1435
Li Zefan34d52cb2011-03-29 13:46:06 +08001436 if (!ctl->op->use_bitmap(ctl, info))
1437 return 0;
1438
Josef Bacik96303082009-07-13 21:29:25 -04001439again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001440 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001441 1, 0);
1442 if (!bitmap_info) {
1443 BUG_ON(added);
1444 goto new_bitmap;
1445 }
1446
Li Zefan34d52cb2011-03-29 13:46:06 +08001447 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001448
1449 if (offset >= bitmap_info->offset && offset + bytes > end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001450 bitmap_set_bits(ctl, bitmap_info, offset, end - offset);
Josef Bacik96303082009-07-13 21:29:25 -04001451 bytes -= end - offset;
1452 offset = end;
1453 added = 0;
1454 } else if (offset >= bitmap_info->offset && offset + bytes <= end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001455 bitmap_set_bits(ctl, bitmap_info, offset, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001456 bytes = 0;
1457 } else {
1458 BUG();
1459 }
1460
1461 if (!bytes) {
1462 ret = 1;
1463 goto out;
1464 } else
1465 goto again;
1466
1467new_bitmap:
1468 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001469 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001470 added = 1;
1471 info = NULL;
1472 goto again;
1473 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001474 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001475
1476 /* no pre-allocated info, allocate a new one */
1477 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001478 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1479 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001480 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001481 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001482 ret = -ENOMEM;
1483 goto out;
1484 }
1485 }
1486
1487 /* allocate the bitmap */
1488 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001489 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001490 if (!info->bitmap) {
1491 ret = -ENOMEM;
1492 goto out;
1493 }
1494 goto again;
1495 }
1496
1497out:
1498 if (info) {
1499 if (info->bitmap)
1500 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001501 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001502 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001503
1504 return ret;
1505}
1506
Li Zefan34d52cb2011-03-29 13:46:06 +08001507bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001508 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001509{
Li Zefan120d66e2010-11-09 14:56:50 +08001510 struct btrfs_free_space *left_info;
1511 struct btrfs_free_space *right_info;
1512 bool merged = false;
1513 u64 offset = info->offset;
1514 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001515
Josef Bacik0f9dd462008-09-23 13:14:11 -04001516 /*
1517 * first we want to see if there is free space adjacent to the range we
1518 * are adding, if there is remove that struct and add a new one to
1519 * cover the entire range
1520 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001521 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001522 if (right_info && rb_prev(&right_info->offset_index))
1523 left_info = rb_entry(rb_prev(&right_info->offset_index),
1524 struct btrfs_free_space, offset_index);
1525 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001526 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001527
Josef Bacik96303082009-07-13 21:29:25 -04001528 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001529 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001530 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001531 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001532 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001533 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001534 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001535 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001536 }
1537
Josef Bacik96303082009-07-13 21:29:25 -04001538 if (left_info && !left_info->bitmap &&
1539 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001540 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001541 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001542 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001543 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001544 info->offset = left_info->offset;
1545 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001546 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001547 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001548 }
1549
Li Zefan120d66e2010-11-09 14:56:50 +08001550 return merged;
1551}
1552
Li Zefan581bb052011-04-20 10:06:11 +08001553int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1554 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001555{
1556 struct btrfs_free_space *info;
1557 int ret = 0;
1558
Josef Bacikdc89e982011-01-28 17:05:48 -05001559 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001560 if (!info)
1561 return -ENOMEM;
1562
1563 info->offset = offset;
1564 info->bytes = bytes;
1565
Li Zefan34d52cb2011-03-29 13:46:06 +08001566 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001567
Li Zefan34d52cb2011-03-29 13:46:06 +08001568 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001569 goto link;
1570
1571 /*
1572 * There was no extent directly to the left or right of this new
1573 * extent then we know we're going to have to allocate a new extent, so
1574 * before we do that see if we need to drop this into a bitmap
1575 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001576 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001577 if (ret < 0) {
1578 goto out;
1579 } else if (ret) {
1580 ret = 0;
1581 goto out;
1582 }
1583link:
Li Zefan34d52cb2011-03-29 13:46:06 +08001584 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001585 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001586 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001587out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001588 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001589
Josef Bacik0f9dd462008-09-23 13:14:11 -04001590 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001591 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001592 BUG_ON(ret == -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001593 }
1594
Josef Bacik0f9dd462008-09-23 13:14:11 -04001595 return ret;
1596}
1597
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001598int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1599 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001600{
Li Zefan34d52cb2011-03-29 13:46:06 +08001601 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001602 struct btrfs_free_space *info;
Josef Bacik96303082009-07-13 21:29:25 -04001603 struct btrfs_free_space *next_info = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001604 int ret = 0;
1605
Li Zefan34d52cb2011-03-29 13:46:06 +08001606 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001607
Josef Bacik96303082009-07-13 21:29:25 -04001608again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001609 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001610 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001611 /*
1612 * oops didn't find an extent that matched the space we wanted
1613 * to remove, look for a bitmap instead
1614 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001615 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04001616 1, 0);
1617 if (!info) {
1618 WARN_ON(1);
1619 goto out_lock;
1620 }
Josef Bacik96303082009-07-13 21:29:25 -04001621 }
1622
1623 if (info->bytes < bytes && rb_next(&info->offset_index)) {
1624 u64 end;
1625 next_info = rb_entry(rb_next(&info->offset_index),
1626 struct btrfs_free_space,
1627 offset_index);
1628
1629 if (next_info->bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08001630 end = next_info->offset +
1631 BITS_PER_BITMAP * ctl->unit - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001632 else
1633 end = next_info->offset + next_info->bytes;
1634
1635 if (next_info->bytes < bytes ||
1636 next_info->offset > offset || offset > end) {
1637 printk(KERN_CRIT "Found free space at %llu, size %llu,"
1638 " trying to use %llu\n",
1639 (unsigned long long)info->offset,
1640 (unsigned long long)info->bytes,
1641 (unsigned long long)bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001642 WARN_ON(1);
1643 ret = -EINVAL;
Josef Bacik96303082009-07-13 21:29:25 -04001644 goto out_lock;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001645 }
Josef Bacik96303082009-07-13 21:29:25 -04001646
1647 info = next_info;
1648 }
1649
1650 if (info->bytes == bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001651 unlink_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001652 if (info->bitmap) {
1653 kfree(info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001654 ctl->total_bitmaps--;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001655 }
Josef Bacikdc89e982011-01-28 17:05:48 -05001656 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001657 goto out_lock;
1658 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001659
Josef Bacik96303082009-07-13 21:29:25 -04001660 if (!info->bitmap && info->offset == offset) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001661 unlink_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001662 info->offset += bytes;
1663 info->bytes -= bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001664 link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001665 goto out_lock;
1666 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001667
Josef Bacik96303082009-07-13 21:29:25 -04001668 if (!info->bitmap && info->offset <= offset &&
1669 info->offset + info->bytes >= offset + bytes) {
Chris Mason9b49c9b2008-09-24 11:23:25 -04001670 u64 old_start = info->offset;
1671 /*
1672 * we're freeing space in the middle of the info,
1673 * this can happen during tree log replay
1674 *
1675 * first unlink the old info and then
1676 * insert it again after the hole we're creating
1677 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001678 unlink_free_space(ctl, info);
Chris Mason9b49c9b2008-09-24 11:23:25 -04001679 if (offset + bytes < info->offset + info->bytes) {
1680 u64 old_end = info->offset + info->bytes;
1681
1682 info->offset = offset + bytes;
1683 info->bytes = old_end - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001684 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001685 WARN_ON(ret);
1686 if (ret)
1687 goto out_lock;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001688 } else {
1689 /* the hole we're creating ends at the end
1690 * of the info struct, just free the info
1691 */
Josef Bacikdc89e982011-01-28 17:05:48 -05001692 kmem_cache_free(btrfs_free_space_cachep, info);
Chris Mason9b49c9b2008-09-24 11:23:25 -04001693 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001694 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001695
1696 /* step two, insert a new info struct to cover
1697 * anything before the hole
Chris Mason9b49c9b2008-09-24 11:23:25 -04001698 */
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001699 ret = btrfs_add_free_space(block_group, old_start,
1700 offset - old_start);
Josef Bacik96303082009-07-13 21:29:25 -04001701 WARN_ON(ret);
1702 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001703 }
Josef Bacik96303082009-07-13 21:29:25 -04001704
Li Zefan34d52cb2011-03-29 13:46:06 +08001705 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001706 if (ret == -EAGAIN)
1707 goto again;
1708 BUG_ON(ret);
1709out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08001710 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001711out:
Josef Bacik25179202008-10-29 14:49:05 -04001712 return ret;
1713}
1714
Josef Bacik0f9dd462008-09-23 13:14:11 -04001715void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1716 u64 bytes)
1717{
Li Zefan34d52cb2011-03-29 13:46:06 +08001718 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001719 struct btrfs_free_space *info;
1720 struct rb_node *n;
1721 int count = 0;
1722
Li Zefan34d52cb2011-03-29 13:46:06 +08001723 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001724 info = rb_entry(n, struct btrfs_free_space, offset_index);
1725 if (info->bytes >= bytes)
1726 count++;
Josef Bacik96303082009-07-13 21:29:25 -04001727 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Joel Becker21380932009-04-21 12:38:29 -07001728 (unsigned long long)info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001729 (unsigned long long)info->bytes,
1730 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001731 }
Josef Bacik96303082009-07-13 21:29:25 -04001732 printk(KERN_INFO "block group has cluster?: %s\n",
1733 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001734 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
1735 "\n", count);
1736}
1737
Li Zefan34d52cb2011-03-29 13:46:06 +08001738static struct btrfs_free_space_op free_space_op = {
1739 .recalc_thresholds = recalculate_thresholds,
1740 .use_bitmap = use_bitmap,
1741};
1742
1743void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
1744{
1745 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1746
1747 spin_lock_init(&ctl->tree_lock);
1748 ctl->unit = block_group->sectorsize;
1749 ctl->start = block_group->key.objectid;
1750 ctl->private = block_group;
1751 ctl->op = &free_space_op;
1752
1753 /*
1754 * we only want to have 32k of ram per block group for keeping
1755 * track of free space, and if we pass 1/2 of that we want to
1756 * start converting things over to using bitmaps
1757 */
1758 ctl->extents_thresh = ((1024 * 32) / 2) /
1759 sizeof(struct btrfs_free_space);
1760}
1761
Chris Masonfa9c0d792009-04-03 09:47:43 -04001762/*
1763 * for a given cluster, put all of its extents back into the free
1764 * space cache. If the block group passed doesn't match the block group
1765 * pointed to by the cluster, someone else raced in and freed the
1766 * cluster already. In that case, we just return without changing anything
1767 */
1768static int
1769__btrfs_return_cluster_to_free_space(
1770 struct btrfs_block_group_cache *block_group,
1771 struct btrfs_free_cluster *cluster)
1772{
Li Zefan34d52cb2011-03-29 13:46:06 +08001773 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001774 struct btrfs_free_space *entry;
1775 struct rb_node *node;
1776
1777 spin_lock(&cluster->lock);
1778 if (cluster->block_group != block_group)
1779 goto out;
1780
Josef Bacik96303082009-07-13 21:29:25 -04001781 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001782 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001783 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04001784
Chris Masonfa9c0d792009-04-03 09:47:43 -04001785 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04001786 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04001787 bool bitmap;
1788
Chris Masonfa9c0d792009-04-03 09:47:43 -04001789 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1790 node = rb_next(&entry->offset_index);
1791 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04001792
1793 bitmap = (entry->bitmap != NULL);
1794 if (!bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08001795 try_merge_free_space(ctl, entry, false);
1796 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04001797 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001798 }
Eric Paris6bef4d32010-02-23 19:43:04 +00001799 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04001800
Chris Masonfa9c0d792009-04-03 09:47:43 -04001801out:
1802 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04001803 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001804 return 0;
1805}
1806
Li Zefan581bb052011-04-20 10:06:11 +08001807void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
1808{
1809 struct btrfs_free_space *info;
1810 struct rb_node *node;
1811
1812 spin_lock(&ctl->tree_lock);
1813 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
1814 info = rb_entry(node, struct btrfs_free_space, offset_index);
1815 unlink_free_space(ctl, info);
1816 kfree(info->bitmap);
1817 kmem_cache_free(btrfs_free_space_cachep, info);
1818 if (need_resched()) {
1819 spin_unlock(&ctl->tree_lock);
1820 cond_resched();
1821 spin_lock(&ctl->tree_lock);
1822 }
1823 }
1824 spin_unlock(&ctl->tree_lock);
1825}
1826
Josef Bacik0f9dd462008-09-23 13:14:11 -04001827void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
1828{
Li Zefan34d52cb2011-03-29 13:46:06 +08001829 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001830 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04001831 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001832
Li Zefan34d52cb2011-03-29 13:46:06 +08001833 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001834 while ((head = block_group->cluster_list.next) !=
1835 &block_group->cluster_list) {
1836 cluster = list_entry(head, struct btrfs_free_cluster,
1837 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001838
1839 WARN_ON(cluster->block_group != block_group);
1840 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04001841 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001842 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001843 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08001844 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001845 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04001846 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001847 spin_unlock(&ctl->tree_lock);
Li Zefan581bb052011-04-20 10:06:11 +08001848
1849 __btrfs_remove_free_space_cache(ctl);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001850}
1851
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001852u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
1853 u64 offset, u64 bytes, u64 empty_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001854{
Li Zefan34d52cb2011-03-29 13:46:06 +08001855 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001856 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04001857 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001858 u64 ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001859
Li Zefan34d52cb2011-03-29 13:46:06 +08001860 spin_lock(&ctl->tree_lock);
1861 entry = find_free_space(ctl, &offset, &bytes_search);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001862 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04001863 goto out;
1864
1865 ret = offset;
1866 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001867 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001868 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001869 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04001870 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001871 unlink_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001872 entry->offset += bytes;
1873 entry->bytes -= bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001874 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05001875 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001876 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001877 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001878 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001879
Josef Bacik96303082009-07-13 21:29:25 -04001880out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001881 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04001882
Josef Bacik0f9dd462008-09-23 13:14:11 -04001883 return ret;
1884}
Chris Masonfa9c0d792009-04-03 09:47:43 -04001885
1886/*
1887 * given a cluster, put all of its extents back into the free space
1888 * cache. If a block group is passed, this function will only free
1889 * a cluster that belongs to the passed block group.
1890 *
1891 * Otherwise, it'll get a reference on the block group pointed to by the
1892 * cluster and remove the cluster from it.
1893 */
1894int btrfs_return_cluster_to_free_space(
1895 struct btrfs_block_group_cache *block_group,
1896 struct btrfs_free_cluster *cluster)
1897{
Li Zefan34d52cb2011-03-29 13:46:06 +08001898 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001899 int ret;
1900
1901 /* first, get a safe pointer to the block group */
1902 spin_lock(&cluster->lock);
1903 if (!block_group) {
1904 block_group = cluster->block_group;
1905 if (!block_group) {
1906 spin_unlock(&cluster->lock);
1907 return 0;
1908 }
1909 } else if (cluster->block_group != block_group) {
1910 /* someone else has already freed it don't redo their work */
1911 spin_unlock(&cluster->lock);
1912 return 0;
1913 }
1914 atomic_inc(&block_group->count);
1915 spin_unlock(&cluster->lock);
1916
Li Zefan34d52cb2011-03-29 13:46:06 +08001917 ctl = block_group->free_space_ctl;
1918
Chris Masonfa9c0d792009-04-03 09:47:43 -04001919 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08001920 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001921 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08001922 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001923
1924 /* finally drop our ref */
1925 btrfs_put_block_group(block_group);
1926 return ret;
1927}
1928
Josef Bacik96303082009-07-13 21:29:25 -04001929static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
1930 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04001931 struct btrfs_free_space *entry,
Josef Bacik96303082009-07-13 21:29:25 -04001932 u64 bytes, u64 min_start)
1933{
Li Zefan34d52cb2011-03-29 13:46:06 +08001934 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04001935 int err;
1936 u64 search_start = cluster->window_start;
1937 u64 search_bytes = bytes;
1938 u64 ret = 0;
1939
Josef Bacik96303082009-07-13 21:29:25 -04001940 search_start = min_start;
1941 search_bytes = bytes;
1942
Li Zefan34d52cb2011-03-29 13:46:06 +08001943 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001944 if (err)
Josef Bacik4e69b592011-03-21 10:11:24 -04001945 return 0;
Josef Bacik96303082009-07-13 21:29:25 -04001946
1947 ret = search_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001948 bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001949
1950 return ret;
1951}
1952
Chris Masonfa9c0d792009-04-03 09:47:43 -04001953/*
1954 * given a cluster, try to allocate 'bytes' from it, returns 0
1955 * if it couldn't find anything suitably large, or a logical disk offset
1956 * if things worked out
1957 */
1958u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
1959 struct btrfs_free_cluster *cluster, u64 bytes,
1960 u64 min_start)
1961{
Li Zefan34d52cb2011-03-29 13:46:06 +08001962 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001963 struct btrfs_free_space *entry = NULL;
1964 struct rb_node *node;
1965 u64 ret = 0;
1966
1967 spin_lock(&cluster->lock);
1968 if (bytes > cluster->max_size)
1969 goto out;
1970
1971 if (cluster->block_group != block_group)
1972 goto out;
1973
1974 node = rb_first(&cluster->root);
1975 if (!node)
1976 goto out;
1977
1978 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001979 while(1) {
Josef Bacik4e69b592011-03-21 10:11:24 -04001980 if (entry->bytes < bytes ||
1981 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04001982 struct rb_node *node;
1983
1984 node = rb_next(&entry->offset_index);
1985 if (!node)
1986 break;
1987 entry = rb_entry(node, struct btrfs_free_space,
1988 offset_index);
1989 continue;
1990 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04001991
Josef Bacik4e69b592011-03-21 10:11:24 -04001992 if (entry->bitmap) {
1993 ret = btrfs_alloc_from_bitmap(block_group,
1994 cluster, entry, bytes,
1995 min_start);
1996 if (ret == 0) {
1997 struct rb_node *node;
1998 node = rb_next(&entry->offset_index);
1999 if (!node)
2000 break;
2001 entry = rb_entry(node, struct btrfs_free_space,
2002 offset_index);
2003 continue;
2004 }
2005 } else {
2006
2007 ret = entry->offset;
2008
2009 entry->offset += bytes;
2010 entry->bytes -= bytes;
2011 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002012
Li Zefan5e71b5d2010-11-09 14:55:34 +08002013 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002014 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002015 break;
2016 }
2017out:
2018 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002019
Li Zefan5e71b5d2010-11-09 14:55:34 +08002020 if (!ret)
2021 return 0;
2022
Li Zefan34d52cb2011-03-29 13:46:06 +08002023 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002024
Li Zefan34d52cb2011-03-29 13:46:06 +08002025 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002026 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002027 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002028 if (entry->bitmap) {
2029 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002030 ctl->total_bitmaps--;
2031 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002032 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002033 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002034 }
2035
Li Zefan34d52cb2011-03-29 13:46:06 +08002036 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002037
Chris Masonfa9c0d792009-04-03 09:47:43 -04002038 return ret;
2039}
2040
Josef Bacik96303082009-07-13 21:29:25 -04002041static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2042 struct btrfs_free_space *entry,
2043 struct btrfs_free_cluster *cluster,
2044 u64 offset, u64 bytes, u64 min_bytes)
2045{
Li Zefan34d52cb2011-03-29 13:46:06 +08002046 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002047 unsigned long next_zero;
2048 unsigned long i;
2049 unsigned long search_bits;
2050 unsigned long total_bits;
2051 unsigned long found_bits;
2052 unsigned long start = 0;
2053 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002054 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002055 bool found = false;
2056
2057 i = offset_to_bit(entry->offset, block_group->sectorsize,
2058 max_t(u64, offset, entry->offset));
Josef Bacikd0a365e2011-03-18 15:27:43 -04002059 search_bits = bytes_to_bits(bytes, block_group->sectorsize);
2060 total_bits = bytes_to_bits(min_bytes, block_group->sectorsize);
Josef Bacik96303082009-07-13 21:29:25 -04002061
2062again:
2063 found_bits = 0;
2064 for (i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, i);
2065 i < BITS_PER_BITMAP;
2066 i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, i + 1)) {
2067 next_zero = find_next_zero_bit(entry->bitmap,
2068 BITS_PER_BITMAP, i);
2069 if (next_zero - i >= search_bits) {
2070 found_bits = next_zero - i;
2071 break;
2072 }
2073 i = next_zero;
2074 }
2075
2076 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002077 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002078
2079 if (!found) {
2080 start = i;
2081 found = true;
2082 }
2083
2084 total_found += found_bits;
2085
2086 if (cluster->max_size < found_bits * block_group->sectorsize)
2087 cluster->max_size = found_bits * block_group->sectorsize;
2088
2089 if (total_found < total_bits) {
2090 i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, next_zero);
2091 if (i - start > total_bits * 2) {
2092 total_found = 0;
2093 cluster->max_size = 0;
2094 found = false;
2095 }
2096 goto again;
2097 }
2098
2099 cluster->window_start = start * block_group->sectorsize +
2100 entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002101 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002102 ret = tree_insert_offset(&cluster->root, entry->offset,
2103 &entry->offset_index, 1);
2104 BUG_ON(ret);
Josef Bacik96303082009-07-13 21:29:25 -04002105
2106 return 0;
2107}
2108
Chris Masonfa9c0d792009-04-03 09:47:43 -04002109/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002110 * This searches the block group for just extents to fill the cluster with.
2111 */
2112static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2113 struct btrfs_free_cluster *cluster,
2114 u64 offset, u64 bytes, u64 min_bytes)
2115{
Li Zefan34d52cb2011-03-29 13:46:06 +08002116 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002117 struct btrfs_free_space *first = NULL;
2118 struct btrfs_free_space *entry = NULL;
2119 struct btrfs_free_space *prev = NULL;
2120 struct btrfs_free_space *last;
2121 struct rb_node *node;
2122 u64 window_start;
2123 u64 window_free;
2124 u64 max_extent;
2125 u64 max_gap = 128 * 1024;
2126
Li Zefan34d52cb2011-03-29 13:46:06 +08002127 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002128 if (!entry)
2129 return -ENOSPC;
2130
2131 /*
2132 * We don't want bitmaps, so just move along until we find a normal
2133 * extent entry.
2134 */
2135 while (entry->bitmap) {
2136 node = rb_next(&entry->offset_index);
2137 if (!node)
2138 return -ENOSPC;
2139 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2140 }
2141
2142 window_start = entry->offset;
2143 window_free = entry->bytes;
2144 max_extent = entry->bytes;
2145 first = entry;
2146 last = entry;
2147 prev = entry;
2148
2149 while (window_free <= min_bytes) {
2150 node = rb_next(&entry->offset_index);
2151 if (!node)
2152 return -ENOSPC;
2153 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2154
2155 if (entry->bitmap)
2156 continue;
2157 /*
2158 * we haven't filled the empty size and the window is
2159 * very large. reset and try again
2160 */
2161 if (entry->offset - (prev->offset + prev->bytes) > max_gap ||
2162 entry->offset - window_start > (min_bytes * 2)) {
2163 first = entry;
2164 window_start = entry->offset;
2165 window_free = entry->bytes;
2166 last = entry;
2167 max_extent = entry->bytes;
2168 } else {
2169 last = entry;
2170 window_free += entry->bytes;
2171 if (entry->bytes > max_extent)
2172 max_extent = entry->bytes;
2173 }
2174 prev = entry;
2175 }
2176
2177 cluster->window_start = first->offset;
2178
2179 node = &first->offset_index;
2180
2181 /*
2182 * now we've found our entries, pull them out of the free space
2183 * cache and put them into the cluster rbtree
2184 */
2185 do {
2186 int ret;
2187
2188 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2189 node = rb_next(&entry->offset_index);
2190 if (entry->bitmap)
2191 continue;
2192
Li Zefan34d52cb2011-03-29 13:46:06 +08002193 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002194 ret = tree_insert_offset(&cluster->root, entry->offset,
2195 &entry->offset_index, 0);
2196 BUG_ON(ret);
2197 } while (node && entry != last);
2198
2199 cluster->max_size = max_extent;
2200
2201 return 0;
2202}
2203
2204/*
2205 * This specifically looks for bitmaps that may work in the cluster, we assume
2206 * that we have already failed to find extents that will work.
2207 */
2208static int setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2209 struct btrfs_free_cluster *cluster,
2210 u64 offset, u64 bytes, u64 min_bytes)
2211{
Li Zefan34d52cb2011-03-29 13:46:06 +08002212 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002213 struct btrfs_free_space *entry;
2214 struct rb_node *node;
2215 int ret = -ENOSPC;
2216
Li Zefan34d52cb2011-03-29 13:46:06 +08002217 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002218 return -ENOSPC;
2219
Li Zefan34d52cb2011-03-29 13:46:06 +08002220 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002221 if (!entry)
2222 return -ENOSPC;
2223
2224 node = &entry->offset_index;
2225 do {
2226 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2227 node = rb_next(&entry->offset_index);
2228 if (!entry->bitmap)
2229 continue;
2230 if (entry->bytes < min_bytes)
2231 continue;
2232 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
2233 bytes, min_bytes);
2234 } while (ret && node);
2235
2236 return ret;
2237}
2238
2239/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002240 * here we try to find a cluster of blocks in a block group. The goal
2241 * is to find at least bytes free and up to empty_size + bytes free.
2242 * We might not find them all in one contiguous area.
2243 *
2244 * returns zero and sets up cluster if things worked out, otherwise
2245 * it returns -enospc
2246 */
2247int btrfs_find_space_cluster(struct btrfs_trans_handle *trans,
Chris Mason451d7582009-06-09 20:28:34 -04002248 struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002249 struct btrfs_block_group_cache *block_group,
2250 struct btrfs_free_cluster *cluster,
2251 u64 offset, u64 bytes, u64 empty_size)
2252{
Li Zefan34d52cb2011-03-29 13:46:06 +08002253 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002254 u64 min_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002255 int ret;
2256
2257 /* for metadata, allow allocates with more holes */
Chris Mason451d7582009-06-09 20:28:34 -04002258 if (btrfs_test_opt(root, SSD_SPREAD)) {
2259 min_bytes = bytes + empty_size;
2260 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002261 /*
2262 * we want to do larger allocations when we are
2263 * flushing out the delayed refs, it helps prevent
2264 * making more work as we go along.
2265 */
2266 if (trans->transaction->delayed_refs.flushing)
2267 min_bytes = max(bytes, (bytes + empty_size) >> 1);
2268 else
2269 min_bytes = max(bytes, (bytes + empty_size) >> 4);
2270 } else
2271 min_bytes = max(bytes, (bytes + empty_size) >> 2);
2272
Li Zefan34d52cb2011-03-29 13:46:06 +08002273 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002274
2275 /*
2276 * If we know we don't have enough space to make a cluster don't even
2277 * bother doing all the work to try and find one.
2278 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002279 if (ctl->free_space < min_bytes) {
2280 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002281 return -ENOSPC;
2282 }
2283
Chris Masonfa9c0d792009-04-03 09:47:43 -04002284 spin_lock(&cluster->lock);
2285
2286 /* someone already found a cluster, hooray */
2287 if (cluster->block_group) {
2288 ret = 0;
2289 goto out;
2290 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002291
2292 ret = setup_cluster_no_bitmap(block_group, cluster, offset, bytes,
2293 min_bytes);
2294 if (ret)
2295 ret = setup_cluster_bitmap(block_group, cluster, offset,
2296 bytes, min_bytes);
2297
2298 if (!ret) {
2299 atomic_inc(&block_group->count);
2300 list_add_tail(&cluster->block_group_list,
2301 &block_group->cluster_list);
2302 cluster->block_group = block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002303 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002304out:
2305 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002306 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002307
2308 return ret;
2309}
2310
2311/*
2312 * simple code to zero out a cluster
2313 */
2314void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2315{
2316 spin_lock_init(&cluster->lock);
2317 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002318 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002319 cluster->max_size = 0;
2320 INIT_LIST_HEAD(&cluster->block_group_list);
2321 cluster->block_group = NULL;
2322}
2323
Li Dongyangf7039b12011-03-24 10:24:28 +00002324int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2325 u64 *trimmed, u64 start, u64 end, u64 minlen)
2326{
Li Zefan34d52cb2011-03-29 13:46:06 +08002327 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Dongyangf7039b12011-03-24 10:24:28 +00002328 struct btrfs_free_space *entry = NULL;
2329 struct btrfs_fs_info *fs_info = block_group->fs_info;
2330 u64 bytes = 0;
2331 u64 actually_trimmed;
2332 int ret = 0;
2333
2334 *trimmed = 0;
2335
2336 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002337 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002338
Li Zefan34d52cb2011-03-29 13:46:06 +08002339 if (ctl->free_space < minlen) {
2340 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002341 break;
2342 }
2343
Li Zefan34d52cb2011-03-29 13:46:06 +08002344 entry = tree_search_offset(ctl, start, 0, 1);
Li Dongyangf7039b12011-03-24 10:24:28 +00002345 if (!entry)
Li Zefan34d52cb2011-03-29 13:46:06 +08002346 entry = tree_search_offset(ctl,
2347 offset_to_bitmap(ctl, start),
Li Dongyangf7039b12011-03-24 10:24:28 +00002348 1, 1);
2349
2350 if (!entry || entry->offset >= end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002351 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002352 break;
2353 }
2354
2355 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002356 ret = search_bitmap(ctl, entry, &start, &bytes);
Li Dongyangf7039b12011-03-24 10:24:28 +00002357 if (!ret) {
2358 if (start >= end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002359 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002360 break;
2361 }
2362 bytes = min(bytes, end - start);
Li Zefan34d52cb2011-03-29 13:46:06 +08002363 bitmap_clear_bits(ctl, entry, start, bytes);
Li Dongyangf7039b12011-03-24 10:24:28 +00002364 if (entry->bytes == 0)
Li Zefan34d52cb2011-03-29 13:46:06 +08002365 free_bitmap(ctl, entry);
Li Dongyangf7039b12011-03-24 10:24:28 +00002366 } else {
2367 start = entry->offset + BITS_PER_BITMAP *
2368 block_group->sectorsize;
Li Zefan34d52cb2011-03-29 13:46:06 +08002369 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002370 ret = 0;
2371 continue;
2372 }
2373 } else {
2374 start = entry->offset;
2375 bytes = min(entry->bytes, end - start);
Li Zefan34d52cb2011-03-29 13:46:06 +08002376 unlink_free_space(ctl, entry);
Li Dongyangf7039b12011-03-24 10:24:28 +00002377 kfree(entry);
2378 }
2379
Li Zefan34d52cb2011-03-29 13:46:06 +08002380 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002381
2382 if (bytes >= minlen) {
2383 int update_ret;
2384 update_ret = btrfs_update_reserved_bytes(block_group,
2385 bytes, 1, 1);
2386
2387 ret = btrfs_error_discard_extent(fs_info->extent_root,
2388 start,
2389 bytes,
2390 &actually_trimmed);
2391
Li Zefan34d52cb2011-03-29 13:46:06 +08002392 btrfs_add_free_space(block_group, start, bytes);
Li Dongyangf7039b12011-03-24 10:24:28 +00002393 if (!update_ret)
2394 btrfs_update_reserved_bytes(block_group,
2395 bytes, 0, 1);
2396
2397 if (ret)
2398 break;
2399 *trimmed += actually_trimmed;
2400 }
2401 start += bytes;
2402 bytes = 0;
2403
2404 if (fatal_signal_pending(current)) {
2405 ret = -ERESTARTSYS;
2406 break;
2407 }
2408
2409 cond_resched();
2410 }
2411
2412 return ret;
2413}
Li Zefan581bb052011-04-20 10:06:11 +08002414
2415/*
2416 * Find the left-most item in the cache tree, and then return the
2417 * smallest inode number in the item.
2418 *
2419 * Note: the returned inode number may not be the smallest one in
2420 * the tree, if the left-most item is a bitmap.
2421 */
2422u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2423{
2424 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2425 struct btrfs_free_space *entry = NULL;
2426 u64 ino = 0;
2427
2428 spin_lock(&ctl->tree_lock);
2429
2430 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2431 goto out;
2432
2433 entry = rb_entry(rb_first(&ctl->free_space_offset),
2434 struct btrfs_free_space, offset_index);
2435
2436 if (!entry->bitmap) {
2437 ino = entry->offset;
2438
2439 unlink_free_space(ctl, entry);
2440 entry->offset++;
2441 entry->bytes--;
2442 if (!entry->bytes)
2443 kmem_cache_free(btrfs_free_space_cachep, entry);
2444 else
2445 link_free_space(ctl, entry);
2446 } else {
2447 u64 offset = 0;
2448 u64 count = 1;
2449 int ret;
2450
2451 ret = search_bitmap(ctl, entry, &offset, &count);
2452 BUG_ON(ret);
2453
2454 ino = offset;
2455 bitmap_clear_bits(ctl, entry, offset, 1);
2456 if (entry->bytes == 0)
2457 free_bitmap(ctl, entry);
2458 }
2459out:
2460 spin_unlock(&ctl->tree_lock);
2461
2462 return ino;
2463}
Li Zefan82d59022011-04-20 10:33:24 +08002464
2465struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2466 struct btrfs_path *path)
2467{
2468 struct inode *inode = NULL;
2469
2470 spin_lock(&root->cache_lock);
2471 if (root->cache_inode)
2472 inode = igrab(root->cache_inode);
2473 spin_unlock(&root->cache_lock);
2474 if (inode)
2475 return inode;
2476
2477 inode = __lookup_free_space_inode(root, path, 0);
2478 if (IS_ERR(inode))
2479 return inode;
2480
2481 spin_lock(&root->cache_lock);
2482 if (!root->fs_info->closing)
2483 root->cache_inode = igrab(inode);
2484 spin_unlock(&root->cache_lock);
2485
2486 return inode;
2487}
2488
2489int create_free_ino_inode(struct btrfs_root *root,
2490 struct btrfs_trans_handle *trans,
2491 struct btrfs_path *path)
2492{
2493 return __create_free_space_inode(root, trans, path,
2494 BTRFS_FREE_INO_OBJECTID, 0);
2495}
2496
2497int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2498{
2499 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2500 struct btrfs_path *path;
2501 struct inode *inode;
2502 int ret = 0;
2503 u64 root_gen = btrfs_root_generation(&root->root_item);
2504
2505 /*
2506 * If we're unmounting then just return, since this does a search on the
2507 * normal root and not the commit root and we could deadlock.
2508 */
2509 smp_mb();
2510 if (fs_info->closing)
2511 return 0;
2512
2513 path = btrfs_alloc_path();
2514 if (!path)
2515 return 0;
2516
2517 inode = lookup_free_ino_inode(root, path);
2518 if (IS_ERR(inode))
2519 goto out;
2520
2521 if (root_gen != BTRFS_I(inode)->generation)
2522 goto out_put;
2523
2524 ret = __load_free_space_cache(root, inode, ctl, path, 0);
2525
2526 if (ret < 0)
2527 printk(KERN_ERR "btrfs: failed to load free ino cache for "
2528 "root %llu\n", root->root_key.objectid);
2529out_put:
2530 iput(inode);
2531out:
2532 btrfs_free_path(path);
2533 return ret;
2534}
2535
2536int btrfs_write_out_ino_cache(struct btrfs_root *root,
2537 struct btrfs_trans_handle *trans,
2538 struct btrfs_path *path)
2539{
2540 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2541 struct inode *inode;
2542 int ret;
2543
2544 inode = lookup_free_ino_inode(root, path);
2545 if (IS_ERR(inode))
2546 return 0;
2547
2548 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
2549 if (ret < 0)
2550 printk(KERN_ERR "btrfs: failed to write free ino cache "
2551 "for root %llu\n", root->root_key.objectid);
2552
2553 iput(inode);
2554 return ret;
2555}