blob: 0e23bbabbba262f6ed3f95ccf4db50dcb1351e1a [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"
Chris Masonfa9c0d792009-04-03 09:47:43 -040028
Josef Bacik96303082009-07-13 21:29:25 -040029#define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8)
30#define MAX_CACHE_BYTES_PER_GIG (32 * 1024)
31
Josef Bacik0cb59c92010-07-02 12:14:14 -040032static void recalculate_thresholds(struct btrfs_block_group_cache
33 *block_group);
34static int link_free_space(struct btrfs_block_group_cache *block_group,
35 struct btrfs_free_space *info);
36
Josef Bacik0af3d002010-06-21 14:48:16 -040037struct inode *lookup_free_space_inode(struct btrfs_root *root,
38 struct btrfs_block_group_cache
39 *block_group, struct btrfs_path *path)
40{
41 struct btrfs_key key;
42 struct btrfs_key location;
43 struct btrfs_disk_key disk_key;
44 struct btrfs_free_space_header *header;
45 struct extent_buffer *leaf;
46 struct inode *inode = NULL;
47 int ret;
48
49 spin_lock(&block_group->lock);
50 if (block_group->inode)
51 inode = igrab(block_group->inode);
52 spin_unlock(&block_group->lock);
53 if (inode)
54 return inode;
55
56 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
57 key.offset = block_group->key.objectid;
58 key.type = 0;
59
60 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
61 if (ret < 0)
62 return ERR_PTR(ret);
63 if (ret > 0) {
64 btrfs_release_path(root, path);
65 return ERR_PTR(-ENOENT);
66 }
67
68 leaf = path->nodes[0];
69 header = btrfs_item_ptr(leaf, path->slots[0],
70 struct btrfs_free_space_header);
71 btrfs_free_space_key(leaf, header, &disk_key);
72 btrfs_disk_key_to_cpu(&location, &disk_key);
73 btrfs_release_path(root, path);
74
75 inode = btrfs_iget(root->fs_info->sb, &location, root, NULL);
76 if (!inode)
77 return ERR_PTR(-ENOENT);
78 if (IS_ERR(inode))
79 return inode;
80 if (is_bad_inode(inode)) {
81 iput(inode);
82 return ERR_PTR(-ENOENT);
83 }
84
Miao Xieadae52b2011-03-31 09:43:23 +000085 inode->i_mapping->flags &= ~__GFP_FS;
86
Josef Bacik0af3d002010-06-21 14:48:16 -040087 spin_lock(&block_group->lock);
88 if (!root->fs_info->closing) {
89 block_group->inode = igrab(inode);
90 block_group->iref = 1;
91 }
92 spin_unlock(&block_group->lock);
93
94 return inode;
95}
96
97int create_free_space_inode(struct btrfs_root *root,
98 struct btrfs_trans_handle *trans,
99 struct btrfs_block_group_cache *block_group,
100 struct btrfs_path *path)
101{
102 struct btrfs_key key;
103 struct btrfs_disk_key disk_key;
104 struct btrfs_free_space_header *header;
105 struct btrfs_inode_item *inode_item;
106 struct extent_buffer *leaf;
107 u64 objectid;
108 int ret;
109
110 ret = btrfs_find_free_objectid(trans, root, 0, &objectid);
111 if (ret < 0)
112 return ret;
113
114 ret = btrfs_insert_empty_inode(trans, root, path, objectid);
115 if (ret)
116 return ret;
117
118 leaf = path->nodes[0];
119 inode_item = btrfs_item_ptr(leaf, path->slots[0],
120 struct btrfs_inode_item);
121 btrfs_item_key(leaf, &disk_key, path->slots[0]);
122 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
123 sizeof(*inode_item));
124 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
125 btrfs_set_inode_size(leaf, inode_item, 0);
126 btrfs_set_inode_nbytes(leaf, inode_item, 0);
127 btrfs_set_inode_uid(leaf, inode_item, 0);
128 btrfs_set_inode_gid(leaf, inode_item, 0);
129 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
130 btrfs_set_inode_flags(leaf, inode_item, BTRFS_INODE_NOCOMPRESS |
131 BTRFS_INODE_PREALLOC | BTRFS_INODE_NODATASUM);
132 btrfs_set_inode_nlink(leaf, inode_item, 1);
133 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
134 btrfs_set_inode_block_group(leaf, inode_item,
135 block_group->key.objectid);
136 btrfs_mark_buffer_dirty(leaf);
137 btrfs_release_path(root, path);
138
139 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
140 key.offset = block_group->key.objectid;
141 key.type = 0;
142
143 ret = btrfs_insert_empty_item(trans, root, path, &key,
144 sizeof(struct btrfs_free_space_header));
145 if (ret < 0) {
146 btrfs_release_path(root, path);
147 return ret;
148 }
149 leaf = path->nodes[0];
150 header = btrfs_item_ptr(leaf, path->slots[0],
151 struct btrfs_free_space_header);
152 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
153 btrfs_set_free_space_key(leaf, header, &disk_key);
154 btrfs_mark_buffer_dirty(leaf);
155 btrfs_release_path(root, path);
156
157 return 0;
158}
159
160int btrfs_truncate_free_space_cache(struct btrfs_root *root,
161 struct btrfs_trans_handle *trans,
162 struct btrfs_path *path,
163 struct inode *inode)
164{
165 loff_t oldsize;
166 int ret = 0;
167
168 trans->block_rsv = root->orphan_block_rsv;
169 ret = btrfs_block_rsv_check(trans, root,
170 root->orphan_block_rsv,
171 0, 5);
172 if (ret)
173 return ret;
174
175 oldsize = i_size_read(inode);
176 btrfs_i_size_write(inode, 0);
177 truncate_pagecache(inode, oldsize, 0);
178
179 /*
180 * We don't need an orphan item because truncating the free space cache
181 * will never be split across transactions.
182 */
183 ret = btrfs_truncate_inode_items(trans, root, inode,
184 0, BTRFS_EXTENT_DATA_KEY);
185 if (ret) {
186 WARN_ON(1);
187 return ret;
188 }
189
190 return btrfs_update_inode(trans, root, inode);
191}
192
Josef Bacik9d66e232010-08-25 16:54:15 -0400193static int readahead_cache(struct inode *inode)
194{
195 struct file_ra_state *ra;
196 unsigned long last_index;
197
198 ra = kzalloc(sizeof(*ra), GFP_NOFS);
199 if (!ra)
200 return -ENOMEM;
201
202 file_ra_state_init(ra, inode->i_mapping);
203 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
204
205 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
206
207 kfree(ra);
208
209 return 0;
210}
211
212int load_free_space_cache(struct btrfs_fs_info *fs_info,
213 struct btrfs_block_group_cache *block_group)
214{
215 struct btrfs_root *root = fs_info->tree_root;
216 struct inode *inode;
217 struct btrfs_free_space_header *header;
218 struct extent_buffer *leaf;
219 struct page *page;
220 struct btrfs_path *path;
221 u32 *checksums = NULL, *crc;
222 char *disk_crcs = NULL;
223 struct btrfs_key key;
224 struct list_head bitmaps;
225 u64 num_entries;
226 u64 num_bitmaps;
227 u64 generation;
Josef Bacik43be2142011-04-01 14:55:00 +0000228 u64 used = btrfs_block_group_used(&block_group->item);
Josef Bacik9d66e232010-08-25 16:54:15 -0400229 u32 cur_crc = ~(u32)0;
230 pgoff_t index = 0;
231 unsigned long first_page_offset;
232 int num_checksums;
233 int ret = 0;
234
235 /*
236 * If we're unmounting then just return, since this does a search on the
237 * normal root and not the commit root and we could deadlock.
238 */
239 smp_mb();
240 if (fs_info->closing)
241 return 0;
242
243 /*
244 * If this block group has been marked to be cleared for one reason or
245 * another then we can't trust the on disk cache, so just return.
246 */
247 spin_lock(&block_group->lock);
248 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400249 spin_unlock(&block_group->lock);
250 return 0;
251 }
252 spin_unlock(&block_group->lock);
253
254 INIT_LIST_HEAD(&bitmaps);
255
256 path = btrfs_alloc_path();
257 if (!path)
258 return 0;
259
260 inode = lookup_free_space_inode(root, block_group, path);
261 if (IS_ERR(inode)) {
262 btrfs_free_path(path);
263 return 0;
264 }
265
266 /* Nothing in the space cache, goodbye */
267 if (!i_size_read(inode)) {
268 btrfs_free_path(path);
269 goto out;
270 }
271
272 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
273 key.offset = block_group->key.objectid;
274 key.type = 0;
275
276 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
277 if (ret) {
278 btrfs_free_path(path);
279 goto out;
280 }
281
282 leaf = path->nodes[0];
283 header = btrfs_item_ptr(leaf, path->slots[0],
284 struct btrfs_free_space_header);
285 num_entries = btrfs_free_space_entries(leaf, header);
286 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
287 generation = btrfs_free_space_generation(leaf, header);
288 btrfs_free_path(path);
289
290 if (BTRFS_I(inode)->generation != generation) {
291 printk(KERN_ERR "btrfs: free space inode generation (%llu) did"
292 " not match free space cache generation (%llu) for "
293 "block group %llu\n",
294 (unsigned long long)BTRFS_I(inode)->generation,
295 (unsigned long long)generation,
296 (unsigned long long)block_group->key.objectid);
Josef Bacik2b209822010-12-03 13:17:53 -0500297 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400298 }
299
300 if (!num_entries)
301 goto out;
302
303 /* Setup everything for doing checksumming */
304 num_checksums = i_size_read(inode) / PAGE_CACHE_SIZE;
305 checksums = crc = kzalloc(sizeof(u32) * num_checksums, GFP_NOFS);
306 if (!checksums)
307 goto out;
308 first_page_offset = (sizeof(u32) * num_checksums) + sizeof(u64);
309 disk_crcs = kzalloc(first_page_offset, GFP_NOFS);
310 if (!disk_crcs)
311 goto out;
312
313 ret = readahead_cache(inode);
314 if (ret) {
315 ret = 0;
316 goto out;
317 }
318
319 while (1) {
320 struct btrfs_free_space_entry *entry;
321 struct btrfs_free_space *e;
322 void *addr;
323 unsigned long offset = 0;
324 unsigned long start_offset = 0;
325 int need_loop = 0;
326
327 if (!num_entries && !num_bitmaps)
328 break;
329
330 if (index == 0) {
331 start_offset = first_page_offset;
332 offset = start_offset;
333 }
334
335 page = grab_cache_page(inode->i_mapping, index);
336 if (!page) {
337 ret = 0;
338 goto free_cache;
339 }
340
341 if (!PageUptodate(page)) {
342 btrfs_readpage(NULL, page);
343 lock_page(page);
344 if (!PageUptodate(page)) {
345 unlock_page(page);
346 page_cache_release(page);
347 printk(KERN_ERR "btrfs: error reading free "
348 "space cache: %llu\n",
349 (unsigned long long)
350 block_group->key.objectid);
351 goto free_cache;
352 }
353 }
354 addr = kmap(page);
355
356 if (index == 0) {
357 u64 *gen;
358
359 memcpy(disk_crcs, addr, first_page_offset);
360 gen = addr + (sizeof(u32) * num_checksums);
361 if (*gen != BTRFS_I(inode)->generation) {
362 printk(KERN_ERR "btrfs: space cache generation"
363 " (%llu) does not match inode (%llu) "
364 "for block group %llu\n",
365 (unsigned long long)*gen,
366 (unsigned long long)
367 BTRFS_I(inode)->generation,
368 (unsigned long long)
369 block_group->key.objectid);
370 kunmap(page);
371 unlock_page(page);
372 page_cache_release(page);
373 goto free_cache;
374 }
375 crc = (u32 *)disk_crcs;
376 }
377 entry = addr + start_offset;
378
379 /* First lets check our crc before we do anything fun */
380 cur_crc = ~(u32)0;
381 cur_crc = btrfs_csum_data(root, addr + start_offset, cur_crc,
382 PAGE_CACHE_SIZE - start_offset);
383 btrfs_csum_final(cur_crc, (char *)&cur_crc);
384 if (cur_crc != *crc) {
385 printk(KERN_ERR "btrfs: crc mismatch for page %lu in "
386 "block group %llu\n", index,
387 (unsigned long long)block_group->key.objectid);
388 kunmap(page);
389 unlock_page(page);
390 page_cache_release(page);
391 goto free_cache;
392 }
393 crc++;
394
395 while (1) {
396 if (!num_entries)
397 break;
398
399 need_loop = 1;
Josef Bacikdc89e982011-01-28 17:05:48 -0500400 e = kmem_cache_zalloc(btrfs_free_space_cachep,
401 GFP_NOFS);
Josef Bacik9d66e232010-08-25 16:54:15 -0400402 if (!e) {
403 kunmap(page);
404 unlock_page(page);
405 page_cache_release(page);
406 goto free_cache;
407 }
408
409 e->offset = le64_to_cpu(entry->offset);
410 e->bytes = le64_to_cpu(entry->bytes);
411 if (!e->bytes) {
412 kunmap(page);
Josef Bacikdc89e982011-01-28 17:05:48 -0500413 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400414 unlock_page(page);
415 page_cache_release(page);
416 goto free_cache;
417 }
418
419 if (entry->type == BTRFS_FREE_SPACE_EXTENT) {
420 spin_lock(&block_group->tree_lock);
421 ret = link_free_space(block_group, e);
422 spin_unlock(&block_group->tree_lock);
423 BUG_ON(ret);
424 } else {
425 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
426 if (!e->bitmap) {
427 kunmap(page);
Josef Bacikdc89e982011-01-28 17:05:48 -0500428 kmem_cache_free(
429 btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400430 unlock_page(page);
431 page_cache_release(page);
432 goto free_cache;
433 }
434 spin_lock(&block_group->tree_lock);
435 ret = link_free_space(block_group, e);
436 block_group->total_bitmaps++;
437 recalculate_thresholds(block_group);
438 spin_unlock(&block_group->tree_lock);
439 list_add_tail(&e->list, &bitmaps);
440 }
441
442 num_entries--;
443 offset += sizeof(struct btrfs_free_space_entry);
444 if (offset + sizeof(struct btrfs_free_space_entry) >=
445 PAGE_CACHE_SIZE)
446 break;
447 entry++;
448 }
449
450 /*
451 * We read an entry out of this page, we need to move on to the
452 * next page.
453 */
454 if (need_loop) {
455 kunmap(page);
456 goto next;
457 }
458
459 /*
460 * We add the bitmaps at the end of the entries in order that
461 * the bitmap entries are added to the cache.
462 */
463 e = list_entry(bitmaps.next, struct btrfs_free_space, list);
464 list_del_init(&e->list);
465 memcpy(e->bitmap, addr, PAGE_CACHE_SIZE);
466 kunmap(page);
467 num_bitmaps--;
468next:
469 unlock_page(page);
470 page_cache_release(page);
471 index++;
472 }
473
Josef Bacik43be2142011-04-01 14:55:00 +0000474 spin_lock(&block_group->tree_lock);
475 if (block_group->free_space != (block_group->key.offset - used -
476 block_group->bytes_super)) {
477 spin_unlock(&block_group->tree_lock);
478 printk(KERN_ERR "block group %llu has an wrong amount of free "
479 "space\n", block_group->key.objectid);
480 ret = 0;
481 goto free_cache;
482 }
483 spin_unlock(&block_group->tree_lock);
484
Josef Bacik9d66e232010-08-25 16:54:15 -0400485 ret = 1;
486out:
487 kfree(checksums);
488 kfree(disk_crcs);
489 iput(inode);
490 return ret;
491
492free_cache:
493 /* This cache is bogus, make sure it gets cleared */
494 spin_lock(&block_group->lock);
495 block_group->disk_cache_state = BTRFS_DC_CLEAR;
496 spin_unlock(&block_group->lock);
497 btrfs_remove_free_space_cache(block_group);
498 goto out;
499}
500
Josef Bacik0cb59c92010-07-02 12:14:14 -0400501int btrfs_write_out_cache(struct btrfs_root *root,
502 struct btrfs_trans_handle *trans,
503 struct btrfs_block_group_cache *block_group,
504 struct btrfs_path *path)
505{
506 struct btrfs_free_space_header *header;
507 struct extent_buffer *leaf;
508 struct inode *inode;
509 struct rb_node *node;
510 struct list_head *pos, *n;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400511 struct page **pages;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400512 struct page *page;
513 struct extent_state *cached_state = NULL;
Josef Bacik43be2142011-04-01 14:55:00 +0000514 struct btrfs_free_cluster *cluster = NULL;
515 struct extent_io_tree *unpin = NULL;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400516 struct list_head bitmap_list;
517 struct btrfs_key key;
Josef Bacik43be2142011-04-01 14:55:00 +0000518 u64 start, end, len;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400519 u64 bytes = 0;
520 u32 *crc, *checksums;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400521 unsigned long first_page_offset;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400522 int index = 0, num_pages = 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400523 int entries = 0;
524 int bitmaps = 0;
525 int ret = 0;
Josef Bacik43be2142011-04-01 14:55:00 +0000526 bool next_page = false;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400527 bool out_of_space = false;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400528
529 root = root->fs_info->tree_root;
530
531 INIT_LIST_HEAD(&bitmap_list);
532
533 spin_lock(&block_group->lock);
534 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
535 spin_unlock(&block_group->lock);
536 return 0;
537 }
538 spin_unlock(&block_group->lock);
539
540 inode = lookup_free_space_inode(root, block_group, path);
541 if (IS_ERR(inode))
542 return 0;
543
544 if (!i_size_read(inode)) {
545 iput(inode);
546 return 0;
547 }
548
Josef Bacik2b209822010-12-03 13:17:53 -0500549 node = rb_first(&block_group->free_space_offset);
550 if (!node) {
551 iput(inode);
552 return 0;
553 }
554
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400555 num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
556 PAGE_CACHE_SHIFT;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400557 filemap_write_and_wait(inode->i_mapping);
558 btrfs_wait_ordered_range(inode, inode->i_size &
559 ~(root->sectorsize - 1), (u64)-1);
560
561 /* We need a checksum per page. */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400562 crc = checksums = kzalloc(sizeof(u32) * num_pages, GFP_NOFS);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400563 if (!crc) {
564 iput(inode);
565 return 0;
566 }
567
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400568 pages = kzalloc(sizeof(struct page *) * num_pages, GFP_NOFS);
569 if (!pages) {
570 kfree(crc);
571 iput(inode);
572 return 0;
573 }
574
Josef Bacik0cb59c92010-07-02 12:14:14 -0400575 /* Since the first page has all of our checksums and our generation we
576 * need to calculate the offset into the page that we can start writing
577 * our entries.
578 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400579 first_page_offset = (sizeof(u32) * num_pages) + sizeof(u64);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400580
Josef Bacik43be2142011-04-01 14:55:00 +0000581 /* Get the cluster for this block_group if it exists */
582 if (!list_empty(&block_group->cluster_list))
583 cluster = list_entry(block_group->cluster_list.next,
584 struct btrfs_free_cluster,
585 block_group_list);
586
587 /*
588 * We shouldn't have switched the pinned extents yet so this is the
589 * right one
590 */
591 unpin = root->fs_info->pinned_extents;
592
Josef Bacik0cb59c92010-07-02 12:14:14 -0400593 /*
594 * Lock all pages first so we can lock the extent safely.
595 *
596 * NOTE: Because we hold the ref the entire time we're going to write to
597 * the page find_get_page should never fail, so we don't do a check
598 * after find_get_page at this point. Just putting this here so people
599 * know and don't freak out.
600 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400601 while (index < num_pages) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400602 page = grab_cache_page(inode->i_mapping, index);
603 if (!page) {
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400604 int i;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400605
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400606 for (i = 0; i < num_pages; i++) {
607 unlock_page(pages[i]);
608 page_cache_release(pages[i]);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400609 }
610 goto out_free;
611 }
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400612 pages[index] = page;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400613 index++;
614 }
615
616 index = 0;
617 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
618 0, &cached_state, GFP_NOFS);
619
Josef Bacik43be2142011-04-01 14:55:00 +0000620 /*
621 * When searching for pinned extents, we need to start at our start
622 * offset.
623 */
624 start = block_group->key.objectid;
625
Josef Bacik0cb59c92010-07-02 12:14:14 -0400626 /* Write out the extent entries */
627 do {
628 struct btrfs_free_space_entry *entry;
629 void *addr;
630 unsigned long offset = 0;
631 unsigned long start_offset = 0;
632
Josef Bacik43be2142011-04-01 14:55:00 +0000633 next_page = false;
634
Josef Bacik0cb59c92010-07-02 12:14:14 -0400635 if (index == 0) {
636 start_offset = first_page_offset;
637 offset = start_offset;
638 }
639
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400640 if (index >= num_pages) {
641 out_of_space = true;
642 break;
643 }
644
645 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400646
647 addr = kmap(page);
648 entry = addr + start_offset;
649
650 memset(addr, 0, PAGE_CACHE_SIZE);
Josef Bacik43be2142011-04-01 14:55:00 +0000651 while (node && !next_page) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400652 struct btrfs_free_space *e;
653
654 e = rb_entry(node, struct btrfs_free_space, offset_index);
655 entries++;
656
657 entry->offset = cpu_to_le64(e->offset);
658 entry->bytes = cpu_to_le64(e->bytes);
659 if (e->bitmap) {
660 entry->type = BTRFS_FREE_SPACE_BITMAP;
661 list_add_tail(&e->list, &bitmap_list);
662 bitmaps++;
663 } else {
664 entry->type = BTRFS_FREE_SPACE_EXTENT;
665 }
666 node = rb_next(node);
Josef Bacik43be2142011-04-01 14:55:00 +0000667 if (!node && cluster) {
668 node = rb_first(&cluster->root);
669 cluster = NULL;
670 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400671 offset += sizeof(struct btrfs_free_space_entry);
672 if (offset + sizeof(struct btrfs_free_space_entry) >=
673 PAGE_CACHE_SIZE)
Josef Bacik43be2142011-04-01 14:55:00 +0000674 next_page = true;
675 entry++;
676 }
677
678 /*
679 * We want to add any pinned extents to our free space cache
680 * so we don't leak the space
681 */
682 while (!next_page && (start < block_group->key.objectid +
683 block_group->key.offset)) {
684 ret = find_first_extent_bit(unpin, start, &start, &end,
685 EXTENT_DIRTY);
686 if (ret) {
687 ret = 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400688 break;
Josef Bacik43be2142011-04-01 14:55:00 +0000689 }
690
691 /* This pinned extent is out of our range */
692 if (start >= block_group->key.objectid +
693 block_group->key.offset)
694 break;
695
696 len = block_group->key.objectid +
697 block_group->key.offset - start;
698 len = min(len, end + 1 - start);
699
700 entries++;
701 entry->offset = cpu_to_le64(start);
702 entry->bytes = cpu_to_le64(len);
703 entry->type = BTRFS_FREE_SPACE_EXTENT;
704
705 start = end + 1;
706 offset += sizeof(struct btrfs_free_space_entry);
707 if (offset + sizeof(struct btrfs_free_space_entry) >=
708 PAGE_CACHE_SIZE)
709 next_page = true;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400710 entry++;
711 }
712 *crc = ~(u32)0;
713 *crc = btrfs_csum_data(root, addr + start_offset, *crc,
714 PAGE_CACHE_SIZE - start_offset);
715 kunmap(page);
716
717 btrfs_csum_final(*crc, (char *)crc);
718 crc++;
719
720 bytes += PAGE_CACHE_SIZE;
721
Josef Bacik0cb59c92010-07-02 12:14:14 -0400722 index++;
Josef Bacik43be2142011-04-01 14:55:00 +0000723 } while (node || next_page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400724
725 /* Write out the bitmaps */
726 list_for_each_safe(pos, n, &bitmap_list) {
727 void *addr;
728 struct btrfs_free_space *entry =
729 list_entry(pos, struct btrfs_free_space, list);
730
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400731 if (index >= num_pages) {
732 out_of_space = true;
733 break;
734 }
Chris Masonf65647c2011-04-18 08:55:34 -0400735 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400736
737 addr = kmap(page);
738 memcpy(addr, entry->bitmap, PAGE_CACHE_SIZE);
739 *crc = ~(u32)0;
740 *crc = btrfs_csum_data(root, addr, *crc, PAGE_CACHE_SIZE);
741 kunmap(page);
742 btrfs_csum_final(*crc, (char *)crc);
743 crc++;
744 bytes += PAGE_CACHE_SIZE;
745
Josef Bacik0cb59c92010-07-02 12:14:14 -0400746 list_del_init(&entry->list);
747 index++;
748 }
749
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400750 if (out_of_space) {
751 btrfs_drop_pages(pages, num_pages);
752 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
753 i_size_read(inode) - 1, &cached_state,
754 GFP_NOFS);
755 ret = 0;
756 goto out_free;
757 }
758
Josef Bacik0cb59c92010-07-02 12:14:14 -0400759 /* Zero out the rest of the pages just to make sure */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400760 while (index < num_pages) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400761 void *addr;
762
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400763 page = pages[index];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400764 addr = kmap(page);
765 memset(addr, 0, PAGE_CACHE_SIZE);
766 kunmap(page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400767 bytes += PAGE_CACHE_SIZE;
768 index++;
769 }
770
Josef Bacik0cb59c92010-07-02 12:14:14 -0400771 /* Write the checksums and trans id to the first page */
772 {
773 void *addr;
774 u64 *gen;
775
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400776 page = pages[0];
Josef Bacik0cb59c92010-07-02 12:14:14 -0400777
778 addr = kmap(page);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400779 memcpy(addr, checksums, sizeof(u32) * num_pages);
780 gen = addr + (sizeof(u32) * num_pages);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400781 *gen = trans->transid;
782 kunmap(page);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400783 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400784
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400785 ret = btrfs_dirty_pages(root, inode, pages, num_pages, 0,
786 bytes, &cached_state);
787 btrfs_drop_pages(pages, num_pages);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400788 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
789 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
790
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400791 if (ret) {
792 ret = 0;
793 goto out_free;
794 }
795
796 BTRFS_I(inode)->generation = trans->transid;
797
Josef Bacik0cb59c92010-07-02 12:14:14 -0400798 filemap_write_and_wait(inode->i_mapping);
799
800 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
801 key.offset = block_group->key.objectid;
802 key.type = 0;
803
804 ret = btrfs_search_slot(trans, root, &key, path, 1, 1);
805 if (ret < 0) {
806 ret = 0;
807 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1,
808 EXTENT_DIRTY | EXTENT_DELALLOC |
809 EXTENT_DO_ACCOUNTING, 0, 0, NULL, GFP_NOFS);
810 goto out_free;
811 }
812 leaf = path->nodes[0];
813 if (ret > 0) {
814 struct btrfs_key found_key;
815 BUG_ON(!path->slots[0]);
816 path->slots[0]--;
817 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
818 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
819 found_key.offset != block_group->key.objectid) {
820 ret = 0;
821 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, bytes - 1,
822 EXTENT_DIRTY | EXTENT_DELALLOC |
823 EXTENT_DO_ACCOUNTING, 0, 0, NULL,
824 GFP_NOFS);
825 btrfs_release_path(root, path);
826 goto out_free;
827 }
828 }
829 header = btrfs_item_ptr(leaf, path->slots[0],
830 struct btrfs_free_space_header);
831 btrfs_set_free_space_entries(leaf, header, entries);
832 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
833 btrfs_set_free_space_generation(leaf, header, trans->transid);
834 btrfs_mark_buffer_dirty(leaf);
835 btrfs_release_path(root, path);
836
837 ret = 1;
838
839out_free:
840 if (ret == 0) {
841 invalidate_inode_pages2_range(inode->i_mapping, 0, index);
842 spin_lock(&block_group->lock);
843 block_group->disk_cache_state = BTRFS_DC_ERROR;
844 spin_unlock(&block_group->lock);
845 BTRFS_I(inode)->generation = 0;
846 }
847 kfree(checksums);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400848 kfree(pages);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400849 btrfs_update_inode(trans, root, inode);
850 iput(inode);
851 return ret;
852}
853
Josef Bacik96303082009-07-13 21:29:25 -0400854static inline unsigned long offset_to_bit(u64 bitmap_start, u64 sectorsize,
855 u64 offset)
856{
857 BUG_ON(offset < bitmap_start);
858 offset -= bitmap_start;
859 return (unsigned long)(div64_u64(offset, sectorsize));
860}
861
862static inline unsigned long bytes_to_bits(u64 bytes, u64 sectorsize)
863{
864 return (unsigned long)(div64_u64(bytes, sectorsize));
865}
866
867static inline u64 offset_to_bitmap(struct btrfs_block_group_cache *block_group,
868 u64 offset)
869{
870 u64 bitmap_start;
871 u64 bytes_per_bitmap;
872
873 bytes_per_bitmap = BITS_PER_BITMAP * block_group->sectorsize;
874 bitmap_start = offset - block_group->key.objectid;
875 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
876 bitmap_start *= bytes_per_bitmap;
877 bitmap_start += block_group->key.objectid;
878
879 return bitmap_start;
880}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400881
882static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -0400883 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400884{
885 struct rb_node **p = &root->rb_node;
886 struct rb_node *parent = NULL;
887 struct btrfs_free_space *info;
888
889 while (*p) {
890 parent = *p;
891 info = rb_entry(parent, struct btrfs_free_space, offset_index);
892
Josef Bacik96303082009-07-13 21:29:25 -0400893 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400894 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -0400895 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400896 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -0400897 } else {
898 /*
899 * we could have a bitmap entry and an extent entry
900 * share the same offset. If this is the case, we want
901 * the extent entry to always be found first if we do a
902 * linear search through the tree, since we want to have
903 * the quickest allocation time, and allocating from an
904 * extent is faster than allocating from a bitmap. So
905 * if we're inserting a bitmap and we find an entry at
906 * this offset, we want to go right, or after this entry
907 * logically. If we are inserting an extent and we've
908 * found a bitmap, we want to go left, or before
909 * logically.
910 */
911 if (bitmap) {
912 WARN_ON(info->bitmap);
913 p = &(*p)->rb_right;
914 } else {
915 WARN_ON(!info->bitmap);
916 p = &(*p)->rb_left;
917 }
918 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400919 }
920
921 rb_link_node(node, parent, p);
922 rb_insert_color(node, root);
923
924 return 0;
925}
926
927/*
Josef Bacik70cb0742009-04-03 10:14:19 -0400928 * searches the tree for the given offset.
929 *
Josef Bacik96303082009-07-13 21:29:25 -0400930 * fuzzy - If this is set, then we are trying to make an allocation, and we just
931 * want a section that has at least bytes size and comes at or after the given
932 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -0400933 */
Josef Bacik96303082009-07-13 21:29:25 -0400934static struct btrfs_free_space *
935tree_search_offset(struct btrfs_block_group_cache *block_group,
936 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400937{
Josef Bacik96303082009-07-13 21:29:25 -0400938 struct rb_node *n = block_group->free_space_offset.rb_node;
939 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400940
Josef Bacik96303082009-07-13 21:29:25 -0400941 /* find entry that is closest to the 'offset' */
942 while (1) {
943 if (!n) {
944 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400945 break;
946 }
Josef Bacik96303082009-07-13 21:29:25 -0400947
948 entry = rb_entry(n, struct btrfs_free_space, offset_index);
949 prev = entry;
950
951 if (offset < entry->offset)
952 n = n->rb_left;
953 else if (offset > entry->offset)
954 n = n->rb_right;
955 else
956 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400957 }
958
Josef Bacik96303082009-07-13 21:29:25 -0400959 if (bitmap_only) {
960 if (!entry)
961 return NULL;
962 if (entry->bitmap)
963 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400964
Josef Bacik96303082009-07-13 21:29:25 -0400965 /*
966 * bitmap entry and extent entry may share same offset,
967 * in that case, bitmap entry comes after extent entry.
968 */
969 n = rb_next(n);
970 if (!n)
971 return NULL;
972 entry = rb_entry(n, struct btrfs_free_space, offset_index);
973 if (entry->offset != offset)
974 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400975
Josef Bacik96303082009-07-13 21:29:25 -0400976 WARN_ON(!entry->bitmap);
977 return entry;
978 } else if (entry) {
979 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400980 /*
Josef Bacik96303082009-07-13 21:29:25 -0400981 * if previous extent entry covers the offset,
982 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -0400983 */
Josef Bacik96303082009-07-13 21:29:25 -0400984 n = &entry->offset_index;
985 while (1) {
986 n = rb_prev(n);
987 if (!n)
988 break;
989 prev = rb_entry(n, struct btrfs_free_space,
990 offset_index);
991 if (!prev->bitmap) {
992 if (prev->offset + prev->bytes > offset)
993 entry = prev;
994 break;
995 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400996 }
Josef Bacik96303082009-07-13 21:29:25 -0400997 }
998 return entry;
999 }
1000
1001 if (!prev)
1002 return NULL;
1003
1004 /* find last entry before the 'offset' */
1005 entry = prev;
1006 if (entry->offset > offset) {
1007 n = rb_prev(&entry->offset_index);
1008 if (n) {
1009 entry = rb_entry(n, struct btrfs_free_space,
1010 offset_index);
1011 BUG_ON(entry->offset > offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001012 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001013 if (fuzzy)
1014 return entry;
1015 else
1016 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001017 }
1018 }
1019
Josef Bacik96303082009-07-13 21:29:25 -04001020 if (entry->bitmap) {
1021 n = &entry->offset_index;
1022 while (1) {
1023 n = rb_prev(n);
1024 if (!n)
1025 break;
1026 prev = rb_entry(n, struct btrfs_free_space,
1027 offset_index);
1028 if (!prev->bitmap) {
1029 if (prev->offset + prev->bytes > offset)
1030 return prev;
1031 break;
1032 }
1033 }
1034 if (entry->offset + BITS_PER_BITMAP *
1035 block_group->sectorsize > offset)
1036 return entry;
1037 } else if (entry->offset + entry->bytes > offset)
1038 return entry;
1039
1040 if (!fuzzy)
1041 return NULL;
1042
1043 while (1) {
1044 if (entry->bitmap) {
1045 if (entry->offset + BITS_PER_BITMAP *
1046 block_group->sectorsize > offset)
1047 break;
1048 } else {
1049 if (entry->offset + entry->bytes > offset)
1050 break;
1051 }
1052
1053 n = rb_next(&entry->offset_index);
1054 if (!n)
1055 return NULL;
1056 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1057 }
1058 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001059}
1060
Li Zefanf333adb2010-11-09 14:57:39 +08001061static inline void
1062__unlink_free_space(struct btrfs_block_group_cache *block_group,
1063 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001064{
1065 rb_erase(&info->offset_index, &block_group->free_space_offset);
Josef Bacik96303082009-07-13 21:29:25 -04001066 block_group->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001067}
1068
1069static void unlink_free_space(struct btrfs_block_group_cache *block_group,
1070 struct btrfs_free_space *info)
1071{
1072 __unlink_free_space(block_group, info);
Josef Bacik817d52f2009-07-13 21:29:25 -04001073 block_group->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001074}
1075
1076static int link_free_space(struct btrfs_block_group_cache *block_group,
1077 struct btrfs_free_space *info)
1078{
1079 int ret = 0;
1080
Josef Bacik96303082009-07-13 21:29:25 -04001081 BUG_ON(!info->bitmap && !info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001082 ret = tree_insert_offset(&block_group->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001083 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001084 if (ret)
1085 return ret;
1086
Josef Bacik817d52f2009-07-13 21:29:25 -04001087 block_group->free_space += info->bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001088 block_group->free_extents++;
1089 return ret;
1090}
1091
1092static void recalculate_thresholds(struct btrfs_block_group_cache *block_group)
1093{
Josef Bacik25891f72009-09-11 16:11:20 -04001094 u64 max_bytes;
1095 u64 bitmap_bytes;
1096 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001097 u64 size = block_group->key.offset;
Josef Bacik96303082009-07-13 21:29:25 -04001098
1099 /*
1100 * The goal is to keep the total amount of memory used per 1gb of space
1101 * at or below 32k, so we need to adjust how much memory we allow to be
1102 * used by extent based free space tracking
1103 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001104 if (size < 1024 * 1024 * 1024)
1105 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1106 else
1107 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1108 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001109
Josef Bacik25891f72009-09-11 16:11:20 -04001110 /*
1111 * we want to account for 1 more bitmap than what we have so we can make
1112 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1113 * we add more bitmaps.
1114 */
1115 bitmap_bytes = (block_group->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001116
Josef Bacik25891f72009-09-11 16:11:20 -04001117 if (bitmap_bytes >= max_bytes) {
1118 block_group->extents_thresh = 0;
1119 return;
Josef Bacik96303082009-07-13 21:29:25 -04001120 }
Josef Bacik25891f72009-09-11 16:11:20 -04001121
1122 /*
1123 * we want the extent entry threshold to always be at most 1/2 the maxw
1124 * bytes we can have, or whatever is less than that.
1125 */
1126 extent_bytes = max_bytes - bitmap_bytes;
1127 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1128
1129 block_group->extents_thresh =
1130 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001131}
1132
Josef Bacik817d52f2009-07-13 21:29:25 -04001133static void bitmap_clear_bits(struct btrfs_block_group_cache *block_group,
1134 struct btrfs_free_space *info, u64 offset,
1135 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001136{
Li Zefanf38b6e72011-03-14 13:40:51 +08001137 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001138
Josef Bacik817d52f2009-07-13 21:29:25 -04001139 start = offset_to_bit(info->offset, block_group->sectorsize, offset);
Li Zefanf38b6e72011-03-14 13:40:51 +08001140 count = bytes_to_bits(bytes, block_group->sectorsize);
1141 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001142
Li Zefanf38b6e72011-03-14 13:40:51 +08001143 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001144
1145 info->bytes -= bytes;
Josef Bacik817d52f2009-07-13 21:29:25 -04001146 block_group->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001147}
1148
Josef Bacik817d52f2009-07-13 21:29:25 -04001149static void bitmap_set_bits(struct btrfs_block_group_cache *block_group,
1150 struct btrfs_free_space *info, u64 offset,
1151 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001152{
Li Zefanf38b6e72011-03-14 13:40:51 +08001153 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001154
Josef Bacik817d52f2009-07-13 21:29:25 -04001155 start = offset_to_bit(info->offset, block_group->sectorsize, offset);
Li Zefanf38b6e72011-03-14 13:40:51 +08001156 count = bytes_to_bits(bytes, block_group->sectorsize);
1157 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001158
Li Zefanf38b6e72011-03-14 13:40:51 +08001159 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001160
1161 info->bytes += bytes;
Josef Bacik817d52f2009-07-13 21:29:25 -04001162 block_group->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001163}
1164
1165static int search_bitmap(struct btrfs_block_group_cache *block_group,
1166 struct btrfs_free_space *bitmap_info, u64 *offset,
1167 u64 *bytes)
1168{
1169 unsigned long found_bits = 0;
1170 unsigned long bits, i;
1171 unsigned long next_zero;
1172
1173 i = offset_to_bit(bitmap_info->offset, block_group->sectorsize,
1174 max_t(u64, *offset, bitmap_info->offset));
1175 bits = bytes_to_bits(*bytes, block_group->sectorsize);
1176
1177 for (i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i);
1178 i < BITS_PER_BITMAP;
1179 i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i + 1)) {
1180 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1181 BITS_PER_BITMAP, i);
1182 if ((next_zero - i) >= bits) {
1183 found_bits = next_zero - i;
1184 break;
1185 }
1186 i = next_zero;
1187 }
1188
1189 if (found_bits) {
1190 *offset = (u64)(i * block_group->sectorsize) +
1191 bitmap_info->offset;
1192 *bytes = (u64)(found_bits) * block_group->sectorsize;
1193 return 0;
1194 }
1195
1196 return -1;
1197}
1198
1199static struct btrfs_free_space *find_free_space(struct btrfs_block_group_cache
1200 *block_group, u64 *offset,
1201 u64 *bytes, int debug)
1202{
1203 struct btrfs_free_space *entry;
1204 struct rb_node *node;
1205 int ret;
1206
1207 if (!block_group->free_space_offset.rb_node)
1208 return NULL;
1209
1210 entry = tree_search_offset(block_group,
1211 offset_to_bitmap(block_group, *offset),
1212 0, 1);
1213 if (!entry)
1214 return NULL;
1215
1216 for (node = &entry->offset_index; node; node = rb_next(node)) {
1217 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1218 if (entry->bytes < *bytes)
1219 continue;
1220
1221 if (entry->bitmap) {
1222 ret = search_bitmap(block_group, entry, offset, bytes);
1223 if (!ret)
1224 return entry;
1225 continue;
1226 }
1227
1228 *offset = entry->offset;
1229 *bytes = entry->bytes;
1230 return entry;
1231 }
1232
1233 return NULL;
1234}
1235
1236static void add_new_bitmap(struct btrfs_block_group_cache *block_group,
1237 struct btrfs_free_space *info, u64 offset)
1238{
1239 u64 bytes_per_bg = BITS_PER_BITMAP * block_group->sectorsize;
1240 int max_bitmaps = (int)div64_u64(block_group->key.offset +
1241 bytes_per_bg - 1, bytes_per_bg);
1242 BUG_ON(block_group->total_bitmaps >= max_bitmaps);
1243
1244 info->offset = offset_to_bitmap(block_group, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001245 info->bytes = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001246 link_free_space(block_group, info);
1247 block_group->total_bitmaps++;
1248
1249 recalculate_thresholds(block_group);
1250}
1251
Li Zefanedf6e2d2010-11-09 14:50:07 +08001252static void free_bitmap(struct btrfs_block_group_cache *block_group,
1253 struct btrfs_free_space *bitmap_info)
1254{
1255 unlink_free_space(block_group, bitmap_info);
1256 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001257 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001258 block_group->total_bitmaps--;
1259 recalculate_thresholds(block_group);
1260}
1261
Josef Bacik96303082009-07-13 21:29:25 -04001262static noinline int remove_from_bitmap(struct btrfs_block_group_cache *block_group,
1263 struct btrfs_free_space *bitmap_info,
1264 u64 *offset, u64 *bytes)
1265{
1266 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001267 u64 search_start, search_bytes;
1268 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001269
1270again:
1271 end = bitmap_info->offset +
1272 (u64)(BITS_PER_BITMAP * block_group->sectorsize) - 1;
1273
Josef Bacik6606bb92009-07-31 11:03:58 -04001274 /*
1275 * XXX - this can go away after a few releases.
1276 *
1277 * since the only user of btrfs_remove_free_space is the tree logging
1278 * stuff, and the only way to test that is under crash conditions, we
1279 * want to have this debug stuff here just in case somethings not
1280 * working. Search the bitmap for the space we are trying to use to
1281 * make sure its actually there. If its not there then we need to stop
1282 * because something has gone wrong.
1283 */
1284 search_start = *offset;
1285 search_bytes = *bytes;
Josef Bacik13dbc082011-02-03 02:39:52 +00001286 search_bytes = min(search_bytes, end - search_start + 1);
Josef Bacik6606bb92009-07-31 11:03:58 -04001287 ret = search_bitmap(block_group, bitmap_info, &search_start,
1288 &search_bytes);
1289 BUG_ON(ret < 0 || search_start != *offset);
1290
Josef Bacik96303082009-07-13 21:29:25 -04001291 if (*offset > bitmap_info->offset && *offset + *bytes > end) {
Josef Bacik817d52f2009-07-13 21:29:25 -04001292 bitmap_clear_bits(block_group, bitmap_info, *offset,
1293 end - *offset + 1);
Josef Bacik96303082009-07-13 21:29:25 -04001294 *bytes -= end - *offset + 1;
1295 *offset = end + 1;
1296 } else if (*offset >= bitmap_info->offset && *offset + *bytes <= end) {
Josef Bacik817d52f2009-07-13 21:29:25 -04001297 bitmap_clear_bits(block_group, bitmap_info, *offset, *bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001298 *bytes = 0;
1299 }
1300
1301 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001302 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001303 if (!bitmap_info->bytes)
1304 free_bitmap(block_group, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001305
Josef Bacik6606bb92009-07-31 11:03:58 -04001306 /*
1307 * no entry after this bitmap, but we still have bytes to
1308 * remove, so something has gone wrong.
1309 */
1310 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001311 return -EINVAL;
1312
Josef Bacik6606bb92009-07-31 11:03:58 -04001313 bitmap_info = rb_entry(next, struct btrfs_free_space,
1314 offset_index);
1315
1316 /*
1317 * if the next entry isn't a bitmap we need to return to let the
1318 * extent stuff do its work.
1319 */
Josef Bacik96303082009-07-13 21:29:25 -04001320 if (!bitmap_info->bitmap)
1321 return -EAGAIN;
1322
Josef Bacik6606bb92009-07-31 11:03:58 -04001323 /*
1324 * Ok the next item is a bitmap, but it may not actually hold
1325 * the information for the rest of this free space stuff, so
1326 * look for it, and if we don't find it return so we can try
1327 * everything over again.
1328 */
1329 search_start = *offset;
1330 search_bytes = *bytes;
1331 ret = search_bitmap(block_group, bitmap_info, &search_start,
1332 &search_bytes);
1333 if (ret < 0 || search_start != *offset)
1334 return -EAGAIN;
1335
Josef Bacik96303082009-07-13 21:29:25 -04001336 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001337 } else if (!bitmap_info->bytes)
1338 free_bitmap(block_group, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001339
1340 return 0;
1341}
1342
1343static int insert_into_bitmap(struct btrfs_block_group_cache *block_group,
1344 struct btrfs_free_space *info)
1345{
1346 struct btrfs_free_space *bitmap_info;
1347 int added = 0;
1348 u64 bytes, offset, end;
1349 int ret;
1350
1351 /*
1352 * If we are below the extents threshold then we can add this as an
1353 * extent, and don't have to deal with the bitmap
1354 */
Josef Bacik32cb0842011-03-18 16:16:21 -04001355 if (block_group->free_extents < block_group->extents_thresh) {
1356 /*
1357 * If this block group has some small extents we don't want to
1358 * use up all of our free slots in the cache with them, we want
1359 * to reserve them to larger extents, however if we have plent
1360 * of cache left then go ahead an dadd them, no sense in adding
1361 * the overhead of a bitmap if we don't have to.
1362 */
1363 if (info->bytes <= block_group->sectorsize * 4) {
1364 if (block_group->free_extents * 2 <=
1365 block_group->extents_thresh)
1366 return 0;
1367 } else {
1368 return 0;
1369 }
1370 }
Josef Bacik96303082009-07-13 21:29:25 -04001371
1372 /*
1373 * some block groups are so tiny they can't be enveloped by a bitmap, so
1374 * don't even bother to create a bitmap for this
1375 */
1376 if (BITS_PER_BITMAP * block_group->sectorsize >
1377 block_group->key.offset)
1378 return 0;
1379
1380 bytes = info->bytes;
1381 offset = info->offset;
1382
1383again:
1384 bitmap_info = tree_search_offset(block_group,
1385 offset_to_bitmap(block_group, offset),
1386 1, 0);
1387 if (!bitmap_info) {
1388 BUG_ON(added);
1389 goto new_bitmap;
1390 }
1391
1392 end = bitmap_info->offset +
1393 (u64)(BITS_PER_BITMAP * block_group->sectorsize);
1394
1395 if (offset >= bitmap_info->offset && offset + bytes > end) {
Josef Bacik817d52f2009-07-13 21:29:25 -04001396 bitmap_set_bits(block_group, bitmap_info, offset,
1397 end - offset);
Josef Bacik96303082009-07-13 21:29:25 -04001398 bytes -= end - offset;
1399 offset = end;
1400 added = 0;
1401 } else if (offset >= bitmap_info->offset && offset + bytes <= end) {
Josef Bacik817d52f2009-07-13 21:29:25 -04001402 bitmap_set_bits(block_group, bitmap_info, offset, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001403 bytes = 0;
1404 } else {
1405 BUG();
1406 }
1407
1408 if (!bytes) {
1409 ret = 1;
1410 goto out;
1411 } else
1412 goto again;
1413
1414new_bitmap:
1415 if (info && info->bitmap) {
1416 add_new_bitmap(block_group, info, offset);
1417 added = 1;
1418 info = NULL;
1419 goto again;
1420 } else {
1421 spin_unlock(&block_group->tree_lock);
1422
1423 /* no pre-allocated info, allocate a new one */
1424 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001425 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1426 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001427 if (!info) {
1428 spin_lock(&block_group->tree_lock);
1429 ret = -ENOMEM;
1430 goto out;
1431 }
1432 }
1433
1434 /* allocate the bitmap */
1435 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
1436 spin_lock(&block_group->tree_lock);
1437 if (!info->bitmap) {
1438 ret = -ENOMEM;
1439 goto out;
1440 }
1441 goto again;
1442 }
1443
1444out:
1445 if (info) {
1446 if (info->bitmap)
1447 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001448 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001449 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001450
1451 return ret;
1452}
1453
Li Zefan120d66e2010-11-09 14:56:50 +08001454bool try_merge_free_space(struct btrfs_block_group_cache *block_group,
Li Zefanf333adb2010-11-09 14:57:39 +08001455 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001456{
Li Zefan120d66e2010-11-09 14:56:50 +08001457 struct btrfs_free_space *left_info;
1458 struct btrfs_free_space *right_info;
1459 bool merged = false;
1460 u64 offset = info->offset;
1461 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001462
Josef Bacik0f9dd462008-09-23 13:14:11 -04001463 /*
1464 * first we want to see if there is free space adjacent to the range we
1465 * are adding, if there is remove that struct and add a new one to
1466 * cover the entire range
1467 */
Josef Bacik96303082009-07-13 21:29:25 -04001468 right_info = tree_search_offset(block_group, offset + bytes, 0, 0);
1469 if (right_info && rb_prev(&right_info->offset_index))
1470 left_info = rb_entry(rb_prev(&right_info->offset_index),
1471 struct btrfs_free_space, offset_index);
1472 else
1473 left_info = tree_search_offset(block_group, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001474
Josef Bacik96303082009-07-13 21:29:25 -04001475 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001476 if (update_stat)
1477 unlink_free_space(block_group, right_info);
1478 else
1479 __unlink_free_space(block_group, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001480 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001481 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001482 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001483 }
1484
Josef Bacik96303082009-07-13 21:29:25 -04001485 if (left_info && !left_info->bitmap &&
1486 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001487 if (update_stat)
1488 unlink_free_space(block_group, left_info);
1489 else
1490 __unlink_free_space(block_group, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001491 info->offset = left_info->offset;
1492 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001493 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001494 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001495 }
1496
Li Zefan120d66e2010-11-09 14:56:50 +08001497 return merged;
1498}
1499
1500int btrfs_add_free_space(struct btrfs_block_group_cache *block_group,
1501 u64 offset, u64 bytes)
1502{
1503 struct btrfs_free_space *info;
1504 int ret = 0;
1505
Josef Bacikdc89e982011-01-28 17:05:48 -05001506 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001507 if (!info)
1508 return -ENOMEM;
1509
1510 info->offset = offset;
1511 info->bytes = bytes;
1512
1513 spin_lock(&block_group->tree_lock);
1514
Li Zefanf333adb2010-11-09 14:57:39 +08001515 if (try_merge_free_space(block_group, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001516 goto link;
1517
1518 /*
1519 * There was no extent directly to the left or right of this new
1520 * extent then we know we're going to have to allocate a new extent, so
1521 * before we do that see if we need to drop this into a bitmap
1522 */
1523 ret = insert_into_bitmap(block_group, info);
1524 if (ret < 0) {
1525 goto out;
1526 } else if (ret) {
1527 ret = 0;
1528 goto out;
1529 }
1530link:
Josef Bacik0f9dd462008-09-23 13:14:11 -04001531 ret = link_free_space(block_group, info);
1532 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001533 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001534out:
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001535 spin_unlock(&block_group->tree_lock);
1536
Josef Bacik0f9dd462008-09-23 13:14:11 -04001537 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001538 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001539 BUG_ON(ret == -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001540 }
1541
Josef Bacik0f9dd462008-09-23 13:14:11 -04001542 return ret;
1543}
1544
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001545int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1546 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001547{
1548 struct btrfs_free_space *info;
Josef Bacik96303082009-07-13 21:29:25 -04001549 struct btrfs_free_space *next_info = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001550 int ret = 0;
1551
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001552 spin_lock(&block_group->tree_lock);
1553
Josef Bacik96303082009-07-13 21:29:25 -04001554again:
1555 info = tree_search_offset(block_group, offset, 0, 0);
1556 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001557 /*
1558 * oops didn't find an extent that matched the space we wanted
1559 * to remove, look for a bitmap instead
1560 */
1561 info = tree_search_offset(block_group,
1562 offset_to_bitmap(block_group, offset),
1563 1, 0);
1564 if (!info) {
1565 WARN_ON(1);
1566 goto out_lock;
1567 }
Josef Bacik96303082009-07-13 21:29:25 -04001568 }
1569
1570 if (info->bytes < bytes && rb_next(&info->offset_index)) {
1571 u64 end;
1572 next_info = rb_entry(rb_next(&info->offset_index),
1573 struct btrfs_free_space,
1574 offset_index);
1575
1576 if (next_info->bitmap)
1577 end = next_info->offset + BITS_PER_BITMAP *
1578 block_group->sectorsize - 1;
1579 else
1580 end = next_info->offset + next_info->bytes;
1581
1582 if (next_info->bytes < bytes ||
1583 next_info->offset > offset || offset > end) {
1584 printk(KERN_CRIT "Found free space at %llu, size %llu,"
1585 " trying to use %llu\n",
1586 (unsigned long long)info->offset,
1587 (unsigned long long)info->bytes,
1588 (unsigned long long)bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001589 WARN_ON(1);
1590 ret = -EINVAL;
Josef Bacik96303082009-07-13 21:29:25 -04001591 goto out_lock;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001592 }
Josef Bacik96303082009-07-13 21:29:25 -04001593
1594 info = next_info;
1595 }
1596
1597 if (info->bytes == bytes) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001598 unlink_free_space(block_group, info);
Josef Bacik96303082009-07-13 21:29:25 -04001599 if (info->bitmap) {
1600 kfree(info->bitmap);
1601 block_group->total_bitmaps--;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001602 }
Josef Bacikdc89e982011-01-28 17:05:48 -05001603 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001604 goto out_lock;
1605 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001606
Josef Bacik96303082009-07-13 21:29:25 -04001607 if (!info->bitmap && info->offset == offset) {
1608 unlink_free_space(block_group, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001609 info->offset += bytes;
1610 info->bytes -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001611 link_free_space(block_group, info);
1612 goto out_lock;
1613 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001614
Josef Bacik96303082009-07-13 21:29:25 -04001615 if (!info->bitmap && info->offset <= offset &&
1616 info->offset + info->bytes >= offset + bytes) {
Chris Mason9b49c9b2008-09-24 11:23:25 -04001617 u64 old_start = info->offset;
1618 /*
1619 * we're freeing space in the middle of the info,
1620 * this can happen during tree log replay
1621 *
1622 * first unlink the old info and then
1623 * insert it again after the hole we're creating
1624 */
1625 unlink_free_space(block_group, info);
1626 if (offset + bytes < info->offset + info->bytes) {
1627 u64 old_end = info->offset + info->bytes;
1628
1629 info->offset = offset + bytes;
1630 info->bytes = old_end - info->offset;
1631 ret = link_free_space(block_group, info);
Josef Bacik96303082009-07-13 21:29:25 -04001632 WARN_ON(ret);
1633 if (ret)
1634 goto out_lock;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001635 } else {
1636 /* the hole we're creating ends at the end
1637 * of the info struct, just free the info
1638 */
Josef Bacikdc89e982011-01-28 17:05:48 -05001639 kmem_cache_free(btrfs_free_space_cachep, info);
Chris Mason9b49c9b2008-09-24 11:23:25 -04001640 }
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001641 spin_unlock(&block_group->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001642
1643 /* step two, insert a new info struct to cover
1644 * anything before the hole
Chris Mason9b49c9b2008-09-24 11:23:25 -04001645 */
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001646 ret = btrfs_add_free_space(block_group, old_start,
1647 offset - old_start);
Josef Bacik96303082009-07-13 21:29:25 -04001648 WARN_ON(ret);
1649 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001650 }
Josef Bacik96303082009-07-13 21:29:25 -04001651
1652 ret = remove_from_bitmap(block_group, info, &offset, &bytes);
1653 if (ret == -EAGAIN)
1654 goto again;
1655 BUG_ON(ret);
1656out_lock:
1657 spin_unlock(&block_group->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001658out:
Josef Bacik25179202008-10-29 14:49:05 -04001659 return ret;
1660}
1661
Josef Bacik0f9dd462008-09-23 13:14:11 -04001662void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1663 u64 bytes)
1664{
1665 struct btrfs_free_space *info;
1666 struct rb_node *n;
1667 int count = 0;
1668
1669 for (n = rb_first(&block_group->free_space_offset); n; n = rb_next(n)) {
1670 info = rb_entry(n, struct btrfs_free_space, offset_index);
1671 if (info->bytes >= bytes)
1672 count++;
Josef Bacik96303082009-07-13 21:29:25 -04001673 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Joel Becker21380932009-04-21 12:38:29 -07001674 (unsigned long long)info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001675 (unsigned long long)info->bytes,
1676 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001677 }
Josef Bacik96303082009-07-13 21:29:25 -04001678 printk(KERN_INFO "block group has cluster?: %s\n",
1679 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001680 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
1681 "\n", count);
1682}
1683
Chris Masonfa9c0d792009-04-03 09:47:43 -04001684/*
1685 * for a given cluster, put all of its extents back into the free
1686 * space cache. If the block group passed doesn't match the block group
1687 * pointed to by the cluster, someone else raced in and freed the
1688 * cluster already. In that case, we just return without changing anything
1689 */
1690static int
1691__btrfs_return_cluster_to_free_space(
1692 struct btrfs_block_group_cache *block_group,
1693 struct btrfs_free_cluster *cluster)
1694{
1695 struct btrfs_free_space *entry;
1696 struct rb_node *node;
1697
1698 spin_lock(&cluster->lock);
1699 if (cluster->block_group != block_group)
1700 goto out;
1701
Josef Bacik96303082009-07-13 21:29:25 -04001702 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001703 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001704 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04001705
Chris Masonfa9c0d792009-04-03 09:47:43 -04001706 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04001707 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04001708 bool bitmap;
1709
Chris Masonfa9c0d792009-04-03 09:47:43 -04001710 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1711 node = rb_next(&entry->offset_index);
1712 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04001713
1714 bitmap = (entry->bitmap != NULL);
1715 if (!bitmap)
1716 try_merge_free_space(block_group, entry, false);
Josef Bacik96303082009-07-13 21:29:25 -04001717 tree_insert_offset(&block_group->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04001718 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001719 }
Eric Paris6bef4d32010-02-23 19:43:04 +00001720 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04001721
Chris Masonfa9c0d792009-04-03 09:47:43 -04001722out:
1723 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04001724 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001725 return 0;
1726}
1727
Josef Bacik0f9dd462008-09-23 13:14:11 -04001728void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
1729{
1730 struct btrfs_free_space *info;
1731 struct rb_node *node;
Chris Masonfa9c0d792009-04-03 09:47:43 -04001732 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04001733 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001734
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001735 spin_lock(&block_group->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001736 while ((head = block_group->cluster_list.next) !=
1737 &block_group->cluster_list) {
1738 cluster = list_entry(head, struct btrfs_free_cluster,
1739 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001740
1741 WARN_ON(cluster->block_group != block_group);
1742 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04001743 if (need_resched()) {
1744 spin_unlock(&block_group->tree_lock);
1745 cond_resched();
1746 spin_lock(&block_group->tree_lock);
1747 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04001748 }
1749
Josef Bacik96303082009-07-13 21:29:25 -04001750 while ((node = rb_last(&block_group->free_space_offset)) != NULL) {
1751 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001752 unlink_free_space(block_group, info);
Josef Bacik96303082009-07-13 21:29:25 -04001753 if (info->bitmap)
1754 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001755 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001756 if (need_resched()) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001757 spin_unlock(&block_group->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001758 cond_resched();
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001759 spin_lock(&block_group->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001760 }
1761 }
Josef Bacik96303082009-07-13 21:29:25 -04001762
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001763 spin_unlock(&block_group->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001764}
1765
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001766u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
1767 u64 offset, u64 bytes, u64 empty_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001768{
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001769 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04001770 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001771 u64 ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001772
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001773 spin_lock(&block_group->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001774 entry = find_free_space(block_group, &offset, &bytes_search, 0);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001775 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04001776 goto out;
1777
1778 ret = offset;
1779 if (entry->bitmap) {
Josef Bacik817d52f2009-07-13 21:29:25 -04001780 bitmap_clear_bits(block_group, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001781 if (!entry->bytes)
1782 free_bitmap(block_group, entry);
Josef Bacik96303082009-07-13 21:29:25 -04001783 } else {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001784 unlink_free_space(block_group, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001785 entry->offset += bytes;
1786 entry->bytes -= bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001787 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05001788 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001789 else
1790 link_free_space(block_group, entry);
1791 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001792
Josef Bacik96303082009-07-13 21:29:25 -04001793out:
1794 spin_unlock(&block_group->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04001795
Josef Bacik0f9dd462008-09-23 13:14:11 -04001796 return ret;
1797}
Chris Masonfa9c0d792009-04-03 09:47:43 -04001798
1799/*
1800 * given a cluster, put all of its extents back into the free space
1801 * cache. If a block group is passed, this function will only free
1802 * a cluster that belongs to the passed block group.
1803 *
1804 * Otherwise, it'll get a reference on the block group pointed to by the
1805 * cluster and remove the cluster from it.
1806 */
1807int btrfs_return_cluster_to_free_space(
1808 struct btrfs_block_group_cache *block_group,
1809 struct btrfs_free_cluster *cluster)
1810{
1811 int ret;
1812
1813 /* first, get a safe pointer to the block group */
1814 spin_lock(&cluster->lock);
1815 if (!block_group) {
1816 block_group = cluster->block_group;
1817 if (!block_group) {
1818 spin_unlock(&cluster->lock);
1819 return 0;
1820 }
1821 } else if (cluster->block_group != block_group) {
1822 /* someone else has already freed it don't redo their work */
1823 spin_unlock(&cluster->lock);
1824 return 0;
1825 }
1826 atomic_inc(&block_group->count);
1827 spin_unlock(&cluster->lock);
1828
1829 /* now return any extents the cluster had on it */
1830 spin_lock(&block_group->tree_lock);
1831 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
1832 spin_unlock(&block_group->tree_lock);
1833
1834 /* finally drop our ref */
1835 btrfs_put_block_group(block_group);
1836 return ret;
1837}
1838
Josef Bacik96303082009-07-13 21:29:25 -04001839static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
1840 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04001841 struct btrfs_free_space *entry,
Josef Bacik96303082009-07-13 21:29:25 -04001842 u64 bytes, u64 min_start)
1843{
Josef Bacik96303082009-07-13 21:29:25 -04001844 int err;
1845 u64 search_start = cluster->window_start;
1846 u64 search_bytes = bytes;
1847 u64 ret = 0;
1848
Josef Bacik96303082009-07-13 21:29:25 -04001849 search_start = min_start;
1850 search_bytes = bytes;
1851
1852 err = search_bitmap(block_group, entry, &search_start,
1853 &search_bytes);
1854 if (err)
Josef Bacik4e69b592011-03-21 10:11:24 -04001855 return 0;
Josef Bacik96303082009-07-13 21:29:25 -04001856
1857 ret = search_start;
Josef Bacik817d52f2009-07-13 21:29:25 -04001858 bitmap_clear_bits(block_group, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001859
1860 return ret;
1861}
1862
Chris Masonfa9c0d792009-04-03 09:47:43 -04001863/*
1864 * given a cluster, try to allocate 'bytes' from it, returns 0
1865 * if it couldn't find anything suitably large, or a logical disk offset
1866 * if things worked out
1867 */
1868u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
1869 struct btrfs_free_cluster *cluster, u64 bytes,
1870 u64 min_start)
1871{
1872 struct btrfs_free_space *entry = NULL;
1873 struct rb_node *node;
1874 u64 ret = 0;
1875
1876 spin_lock(&cluster->lock);
1877 if (bytes > cluster->max_size)
1878 goto out;
1879
1880 if (cluster->block_group != block_group)
1881 goto out;
1882
1883 node = rb_first(&cluster->root);
1884 if (!node)
1885 goto out;
1886
1887 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001888 while(1) {
Josef Bacik4e69b592011-03-21 10:11:24 -04001889 if (entry->bytes < bytes ||
1890 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04001891 struct rb_node *node;
1892
1893 node = rb_next(&entry->offset_index);
1894 if (!node)
1895 break;
1896 entry = rb_entry(node, struct btrfs_free_space,
1897 offset_index);
1898 continue;
1899 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04001900
Josef Bacik4e69b592011-03-21 10:11:24 -04001901 if (entry->bitmap) {
1902 ret = btrfs_alloc_from_bitmap(block_group,
1903 cluster, entry, bytes,
1904 min_start);
1905 if (ret == 0) {
1906 struct rb_node *node;
1907 node = rb_next(&entry->offset_index);
1908 if (!node)
1909 break;
1910 entry = rb_entry(node, struct btrfs_free_space,
1911 offset_index);
1912 continue;
1913 }
1914 } else {
1915
1916 ret = entry->offset;
1917
1918 entry->offset += bytes;
1919 entry->bytes -= bytes;
1920 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04001921
Li Zefan5e71b5d2010-11-09 14:55:34 +08001922 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04001923 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04001924 break;
1925 }
1926out:
1927 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04001928
Li Zefan5e71b5d2010-11-09 14:55:34 +08001929 if (!ret)
1930 return 0;
1931
1932 spin_lock(&block_group->tree_lock);
1933
1934 block_group->free_space -= bytes;
1935 if (entry->bytes == 0) {
1936 block_group->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04001937 if (entry->bitmap) {
1938 kfree(entry->bitmap);
1939 block_group->total_bitmaps--;
1940 recalculate_thresholds(block_group);
1941 }
Josef Bacikdc89e982011-01-28 17:05:48 -05001942 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08001943 }
1944
1945 spin_unlock(&block_group->tree_lock);
1946
Chris Masonfa9c0d792009-04-03 09:47:43 -04001947 return ret;
1948}
1949
Josef Bacik96303082009-07-13 21:29:25 -04001950static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
1951 struct btrfs_free_space *entry,
1952 struct btrfs_free_cluster *cluster,
1953 u64 offset, u64 bytes, u64 min_bytes)
1954{
1955 unsigned long next_zero;
1956 unsigned long i;
1957 unsigned long search_bits;
1958 unsigned long total_bits;
1959 unsigned long found_bits;
1960 unsigned long start = 0;
1961 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04001962 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001963 bool found = false;
1964
1965 i = offset_to_bit(entry->offset, block_group->sectorsize,
1966 max_t(u64, offset, entry->offset));
Josef Bacikd0a365e2011-03-18 15:27:43 -04001967 search_bits = bytes_to_bits(bytes, block_group->sectorsize);
1968 total_bits = bytes_to_bits(min_bytes, block_group->sectorsize);
Josef Bacik96303082009-07-13 21:29:25 -04001969
1970again:
1971 found_bits = 0;
1972 for (i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, i);
1973 i < BITS_PER_BITMAP;
1974 i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, i + 1)) {
1975 next_zero = find_next_zero_bit(entry->bitmap,
1976 BITS_PER_BITMAP, i);
1977 if (next_zero - i >= search_bits) {
1978 found_bits = next_zero - i;
1979 break;
1980 }
1981 i = next_zero;
1982 }
1983
1984 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04001985 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04001986
1987 if (!found) {
1988 start = i;
1989 found = true;
1990 }
1991
1992 total_found += found_bits;
1993
1994 if (cluster->max_size < found_bits * block_group->sectorsize)
1995 cluster->max_size = found_bits * block_group->sectorsize;
1996
1997 if (total_found < total_bits) {
1998 i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, next_zero);
1999 if (i - start > total_bits * 2) {
2000 total_found = 0;
2001 cluster->max_size = 0;
2002 found = false;
2003 }
2004 goto again;
2005 }
2006
2007 cluster->window_start = start * block_group->sectorsize +
2008 entry->offset;
Josef Bacik4e69b592011-03-21 10:11:24 -04002009 rb_erase(&entry->offset_index, &block_group->free_space_offset);
2010 ret = tree_insert_offset(&cluster->root, entry->offset,
2011 &entry->offset_index, 1);
2012 BUG_ON(ret);
Josef Bacik96303082009-07-13 21:29:25 -04002013
2014 return 0;
2015}
2016
Chris Masonfa9c0d792009-04-03 09:47:43 -04002017/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002018 * This searches the block group for just extents to fill the cluster with.
2019 */
2020static int setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2021 struct btrfs_free_cluster *cluster,
2022 u64 offset, u64 bytes, u64 min_bytes)
2023{
2024 struct btrfs_free_space *first = NULL;
2025 struct btrfs_free_space *entry = NULL;
2026 struct btrfs_free_space *prev = NULL;
2027 struct btrfs_free_space *last;
2028 struct rb_node *node;
2029 u64 window_start;
2030 u64 window_free;
2031 u64 max_extent;
2032 u64 max_gap = 128 * 1024;
2033
2034 entry = tree_search_offset(block_group, offset, 0, 1);
2035 if (!entry)
2036 return -ENOSPC;
2037
2038 /*
2039 * We don't want bitmaps, so just move along until we find a normal
2040 * extent entry.
2041 */
2042 while (entry->bitmap) {
2043 node = rb_next(&entry->offset_index);
2044 if (!node)
2045 return -ENOSPC;
2046 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2047 }
2048
2049 window_start = entry->offset;
2050 window_free = entry->bytes;
2051 max_extent = entry->bytes;
2052 first = entry;
2053 last = entry;
2054 prev = entry;
2055
2056 while (window_free <= min_bytes) {
2057 node = rb_next(&entry->offset_index);
2058 if (!node)
2059 return -ENOSPC;
2060 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2061
2062 if (entry->bitmap)
2063 continue;
2064 /*
2065 * we haven't filled the empty size and the window is
2066 * very large. reset and try again
2067 */
2068 if (entry->offset - (prev->offset + prev->bytes) > max_gap ||
2069 entry->offset - window_start > (min_bytes * 2)) {
2070 first = entry;
2071 window_start = entry->offset;
2072 window_free = entry->bytes;
2073 last = entry;
2074 max_extent = entry->bytes;
2075 } else {
2076 last = entry;
2077 window_free += entry->bytes;
2078 if (entry->bytes > max_extent)
2079 max_extent = entry->bytes;
2080 }
2081 prev = entry;
2082 }
2083
2084 cluster->window_start = first->offset;
2085
2086 node = &first->offset_index;
2087
2088 /*
2089 * now we've found our entries, pull them out of the free space
2090 * cache and put them into the cluster rbtree
2091 */
2092 do {
2093 int ret;
2094
2095 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2096 node = rb_next(&entry->offset_index);
2097 if (entry->bitmap)
2098 continue;
2099
2100 rb_erase(&entry->offset_index, &block_group->free_space_offset);
2101 ret = tree_insert_offset(&cluster->root, entry->offset,
2102 &entry->offset_index, 0);
2103 BUG_ON(ret);
2104 } while (node && entry != last);
2105
2106 cluster->max_size = max_extent;
2107
2108 return 0;
2109}
2110
2111/*
2112 * This specifically looks for bitmaps that may work in the cluster, we assume
2113 * that we have already failed to find extents that will work.
2114 */
2115static int setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2116 struct btrfs_free_cluster *cluster,
2117 u64 offset, u64 bytes, u64 min_bytes)
2118{
2119 struct btrfs_free_space *entry;
2120 struct rb_node *node;
2121 int ret = -ENOSPC;
2122
2123 if (block_group->total_bitmaps == 0)
2124 return -ENOSPC;
2125
2126 entry = tree_search_offset(block_group,
2127 offset_to_bitmap(block_group, offset),
2128 0, 1);
2129 if (!entry)
2130 return -ENOSPC;
2131
2132 node = &entry->offset_index;
2133 do {
2134 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2135 node = rb_next(&entry->offset_index);
2136 if (!entry->bitmap)
2137 continue;
2138 if (entry->bytes < min_bytes)
2139 continue;
2140 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
2141 bytes, min_bytes);
2142 } while (ret && node);
2143
2144 return ret;
2145}
2146
2147/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002148 * here we try to find a cluster of blocks in a block group. The goal
2149 * is to find at least bytes free and up to empty_size + bytes free.
2150 * We might not find them all in one contiguous area.
2151 *
2152 * returns zero and sets up cluster if things worked out, otherwise
2153 * it returns -enospc
2154 */
2155int btrfs_find_space_cluster(struct btrfs_trans_handle *trans,
Chris Mason451d7582009-06-09 20:28:34 -04002156 struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002157 struct btrfs_block_group_cache *block_group,
2158 struct btrfs_free_cluster *cluster,
2159 u64 offset, u64 bytes, u64 empty_size)
2160{
Chris Masonfa9c0d792009-04-03 09:47:43 -04002161 u64 min_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002162 int ret;
2163
2164 /* for metadata, allow allocates with more holes */
Chris Mason451d7582009-06-09 20:28:34 -04002165 if (btrfs_test_opt(root, SSD_SPREAD)) {
2166 min_bytes = bytes + empty_size;
2167 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002168 /*
2169 * we want to do larger allocations when we are
2170 * flushing out the delayed refs, it helps prevent
2171 * making more work as we go along.
2172 */
2173 if (trans->transaction->delayed_refs.flushing)
2174 min_bytes = max(bytes, (bytes + empty_size) >> 1);
2175 else
2176 min_bytes = max(bytes, (bytes + empty_size) >> 4);
2177 } else
2178 min_bytes = max(bytes, (bytes + empty_size) >> 2);
2179
2180 spin_lock(&block_group->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002181
2182 /*
2183 * If we know we don't have enough space to make a cluster don't even
2184 * bother doing all the work to try and find one.
2185 */
2186 if (block_group->free_space < min_bytes) {
2187 spin_unlock(&block_group->tree_lock);
2188 return -ENOSPC;
2189 }
2190
Chris Masonfa9c0d792009-04-03 09:47:43 -04002191 spin_lock(&cluster->lock);
2192
2193 /* someone already found a cluster, hooray */
2194 if (cluster->block_group) {
2195 ret = 0;
2196 goto out;
2197 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002198
2199 ret = setup_cluster_no_bitmap(block_group, cluster, offset, bytes,
2200 min_bytes);
2201 if (ret)
2202 ret = setup_cluster_bitmap(block_group, cluster, offset,
2203 bytes, min_bytes);
2204
2205 if (!ret) {
2206 atomic_inc(&block_group->count);
2207 list_add_tail(&cluster->block_group_list,
2208 &block_group->cluster_list);
2209 cluster->block_group = block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002210 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002211out:
2212 spin_unlock(&cluster->lock);
2213 spin_unlock(&block_group->tree_lock);
2214
2215 return ret;
2216}
2217
2218/*
2219 * simple code to zero out a cluster
2220 */
2221void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2222{
2223 spin_lock_init(&cluster->lock);
2224 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002225 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002226 cluster->max_size = 0;
2227 INIT_LIST_HEAD(&cluster->block_group_list);
2228 cluster->block_group = NULL;
2229}
2230
Li Dongyangf7039b12011-03-24 10:24:28 +00002231int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2232 u64 *trimmed, u64 start, u64 end, u64 minlen)
2233{
2234 struct btrfs_free_space *entry = NULL;
2235 struct btrfs_fs_info *fs_info = block_group->fs_info;
2236 u64 bytes = 0;
2237 u64 actually_trimmed;
2238 int ret = 0;
2239
2240 *trimmed = 0;
2241
2242 while (start < end) {
2243 spin_lock(&block_group->tree_lock);
2244
2245 if (block_group->free_space < minlen) {
2246 spin_unlock(&block_group->tree_lock);
2247 break;
2248 }
2249
2250 entry = tree_search_offset(block_group, start, 0, 1);
2251 if (!entry)
2252 entry = tree_search_offset(block_group,
2253 offset_to_bitmap(block_group,
2254 start),
2255 1, 1);
2256
2257 if (!entry || entry->offset >= end) {
2258 spin_unlock(&block_group->tree_lock);
2259 break;
2260 }
2261
2262 if (entry->bitmap) {
2263 ret = search_bitmap(block_group, entry, &start, &bytes);
2264 if (!ret) {
2265 if (start >= end) {
2266 spin_unlock(&block_group->tree_lock);
2267 break;
2268 }
2269 bytes = min(bytes, end - start);
2270 bitmap_clear_bits(block_group, entry,
2271 start, bytes);
2272 if (entry->bytes == 0)
2273 free_bitmap(block_group, entry);
2274 } else {
2275 start = entry->offset + BITS_PER_BITMAP *
2276 block_group->sectorsize;
2277 spin_unlock(&block_group->tree_lock);
2278 ret = 0;
2279 continue;
2280 }
2281 } else {
2282 start = entry->offset;
2283 bytes = min(entry->bytes, end - start);
2284 unlink_free_space(block_group, entry);
2285 kfree(entry);
2286 }
2287
2288 spin_unlock(&block_group->tree_lock);
2289
2290 if (bytes >= minlen) {
2291 int update_ret;
2292 update_ret = btrfs_update_reserved_bytes(block_group,
2293 bytes, 1, 1);
2294
2295 ret = btrfs_error_discard_extent(fs_info->extent_root,
2296 start,
2297 bytes,
2298 &actually_trimmed);
2299
2300 btrfs_add_free_space(block_group,
2301 start, bytes);
2302 if (!update_ret)
2303 btrfs_update_reserved_bytes(block_group,
2304 bytes, 0, 1);
2305
2306 if (ret)
2307 break;
2308 *trimmed += actually_trimmed;
2309 }
2310 start += bytes;
2311 bytes = 0;
2312
2313 if (fatal_signal_pending(current)) {
2314 ret = -ERESTARTSYS;
2315 break;
2316 }
2317
2318 cond_resched();
2319 }
2320
2321 return ret;
2322}