blob: f49475dfa954a625409322a4c84a157ee3a209ae [file] [log] [blame]
Josef Bacik0f9dd462008-09-23 13:14:11 -04001/*
2 * Copyright (C) 2008 Red Hat. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Josef Bacik96303082009-07-13 21:29:25 -040019#include <linux/pagemap.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040020#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Josef Bacik96303082009-07-13 21:29:25 -040022#include <linux/math64.h>
Josef Bacik6ab60602011-08-08 08:24:46 -040023#include <linux/ratelimit.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040024#include "ctree.h"
Chris Masonfa9c0d72009-04-03 09:47:43 -040025#include "free-space-cache.h"
26#include "transaction.h"
Josef Bacik0af3d002010-06-21 14:48:16 -040027#include "disk-io.h"
Josef Bacik43be2142011-04-01 14:55:00 +000028#include "extent_io.h"
Li Zefan581bb052011-04-20 10:06:11 +080029#include "inode-map.h"
Chris Masonfa9c0d72009-04-03 09:47:43 -040030
Josef Bacik96303082009-07-13 21:29:25 -040031#define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8)
32#define MAX_CACHE_BYTES_PER_GIG (32 * 1024)
33
Li Zefan34d52cb6c2011-03-29 13:46:06 +080034static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040035 struct btrfs_free_space *info);
36
Li Zefan0414efa2011-04-20 10:20:14 +080037static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
38 struct btrfs_path *path,
39 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040040{
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
Josef Bacik0af3d002010-06-21 14:48:16 -040049 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080050 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040051 key.type = 0;
52
53 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
54 if (ret < 0)
55 return ERR_PTR(ret);
56 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020057 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040058 return ERR_PTR(-ENOENT);
59 }
60
61 leaf = path->nodes[0];
62 header = btrfs_item_ptr(leaf, path->slots[0],
63 struct btrfs_free_space_header);
64 btrfs_free_space_key(leaf, header, &disk_key);
65 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020066 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040067
68 inode = btrfs_iget(root->fs_info->sb, &location, root, NULL);
69 if (!inode)
70 return ERR_PTR(-ENOENT);
71 if (IS_ERR(inode))
72 return inode;
73 if (is_bad_inode(inode)) {
74 iput(inode);
75 return ERR_PTR(-ENOENT);
76 }
77
Miao Xieadae52b2011-03-31 09:43:23 +000078 inode->i_mapping->flags &= ~__GFP_FS;
79
Li Zefan0414efa2011-04-20 10:20:14 +080080 return inode;
81}
82
83struct inode *lookup_free_space_inode(struct btrfs_root *root,
84 struct btrfs_block_group_cache
85 *block_group, struct btrfs_path *path)
86{
87 struct inode *inode = NULL;
Josef Bacik5b0e95b2011-10-06 08:58:24 -040088 u32 flags = BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
Li Zefan0414efa2011-04-20 10:20:14 +080089
90 spin_lock(&block_group->lock);
91 if (block_group->inode)
92 inode = igrab(block_group->inode);
93 spin_unlock(&block_group->lock);
94 if (inode)
95 return inode;
96
97 inode = __lookup_free_space_inode(root, path,
98 block_group->key.objectid);
99 if (IS_ERR(inode))
100 return inode;
101
Josef Bacik0af3d002010-06-21 14:48:16 -0400102 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400103 if (!((BTRFS_I(inode)->flags & flags) == flags)) {
Josef Bacik2f356122011-06-10 15:31:13 -0400104 printk(KERN_INFO "Old style space inode found, converting.\n");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400105 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
106 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400107 block_group->disk_cache_state = BTRFS_DC_CLEAR;
108 }
109
Josef Bacik300e4f82011-08-29 14:06:00 -0400110 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400111 block_group->inode = igrab(inode);
112 block_group->iref = 1;
113 }
114 spin_unlock(&block_group->lock);
115
116 return inode;
117}
118
Li Zefan0414efa2011-04-20 10:20:14 +0800119int __create_free_space_inode(struct btrfs_root *root,
120 struct btrfs_trans_handle *trans,
121 struct btrfs_path *path, u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400122{
123 struct btrfs_key key;
124 struct btrfs_disk_key disk_key;
125 struct btrfs_free_space_header *header;
126 struct btrfs_inode_item *inode_item;
127 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400128 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400129 int ret;
130
Li Zefan0414efa2011-04-20 10:20:14 +0800131 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400132 if (ret)
133 return ret;
134
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400135 /* We inline crc's for the free disk space cache */
136 if (ino != BTRFS_FREE_INO_OBJECTID)
137 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
138
Josef Bacik0af3d002010-06-21 14:48:16 -0400139 leaf = path->nodes[0];
140 inode_item = btrfs_item_ptr(leaf, path->slots[0],
141 struct btrfs_inode_item);
142 btrfs_item_key(leaf, &disk_key, path->slots[0]);
143 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
144 sizeof(*inode_item));
145 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
146 btrfs_set_inode_size(leaf, inode_item, 0);
147 btrfs_set_inode_nbytes(leaf, inode_item, 0);
148 btrfs_set_inode_uid(leaf, inode_item, 0);
149 btrfs_set_inode_gid(leaf, inode_item, 0);
150 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400151 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400152 btrfs_set_inode_nlink(leaf, inode_item, 1);
153 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800154 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400155 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200156 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400157
158 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800159 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400160 key.type = 0;
161
162 ret = btrfs_insert_empty_item(trans, root, path, &key,
163 sizeof(struct btrfs_free_space_header));
164 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200165 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400166 return ret;
167 }
168 leaf = path->nodes[0];
169 header = btrfs_item_ptr(leaf, path->slots[0],
170 struct btrfs_free_space_header);
171 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
172 btrfs_set_free_space_key(leaf, header, &disk_key);
173 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200174 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400175
176 return 0;
177}
178
Li Zefan0414efa2011-04-20 10:20:14 +0800179int create_free_space_inode(struct btrfs_root *root,
180 struct btrfs_trans_handle *trans,
181 struct btrfs_block_group_cache *block_group,
182 struct btrfs_path *path)
183{
184 int ret;
185 u64 ino;
186
187 ret = btrfs_find_free_objectid(root, &ino);
188 if (ret < 0)
189 return ret;
190
191 return __create_free_space_inode(root, trans, path, ino,
192 block_group->key.objectid);
193}
194
Josef Bacik0af3d002010-06-21 14:48:16 -0400195int btrfs_truncate_free_space_cache(struct btrfs_root *root,
196 struct btrfs_trans_handle *trans,
197 struct btrfs_path *path,
198 struct inode *inode)
199{
Liu Bo65450aa2011-09-11 10:52:24 -0400200 struct btrfs_block_rsv *rsv;
Josef Bacik0af3d002010-06-21 14:48:16 -0400201 loff_t oldsize;
202 int ret = 0;
203
Liu Bo65450aa2011-09-11 10:52:24 -0400204 rsv = trans->block_rsv;
Josef Bacik0af3d002010-06-21 14:48:16 -0400205 trans->block_rsv = root->orphan_block_rsv;
Josef Bacik36ba0222011-10-18 12:15:48 -0400206 ret = btrfs_block_rsv_check(root, root->orphan_block_rsv, 5);
Josef Bacik0af3d002010-06-21 14:48:16 -0400207 if (ret)
208 return ret;
209
210 oldsize = i_size_read(inode);
211 btrfs_i_size_write(inode, 0);
212 truncate_pagecache(inode, oldsize, 0);
213
214 /*
215 * We don't need an orphan item because truncating the free space cache
216 * will never be split across transactions.
217 */
218 ret = btrfs_truncate_inode_items(trans, root, inode,
219 0, BTRFS_EXTENT_DATA_KEY);
Liu Bo65450aa2011-09-11 10:52:24 -0400220
221 trans->block_rsv = rsv;
Josef Bacik0af3d002010-06-21 14:48:16 -0400222 if (ret) {
223 WARN_ON(1);
224 return ret;
225 }
226
Li Zefan82d59022011-04-20 10:33:24 +0800227 ret = btrfs_update_inode(trans, root, inode);
228 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400229}
230
Josef Bacik9d66e232010-08-25 16:54:15 -0400231static int readahead_cache(struct inode *inode)
232{
233 struct file_ra_state *ra;
234 unsigned long last_index;
235
236 ra = kzalloc(sizeof(*ra), GFP_NOFS);
237 if (!ra)
238 return -ENOMEM;
239
240 file_ra_state_init(ra, inode->i_mapping);
241 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
242
243 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
244
245 kfree(ra);
246
247 return 0;
248}
249
Josef Bacika67509c2011-10-05 15:18:58 -0400250struct io_ctl {
251 void *cur, *orig;
252 struct page *page;
253 struct page **pages;
254 struct btrfs_root *root;
255 unsigned long size;
256 int index;
257 int num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400258 unsigned check_crcs:1;
Josef Bacika67509c2011-10-05 15:18:58 -0400259};
260
261static int io_ctl_init(struct io_ctl *io_ctl, struct inode *inode,
262 struct btrfs_root *root)
263{
264 memset(io_ctl, 0, sizeof(struct io_ctl));
265 io_ctl->num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
266 PAGE_CACHE_SHIFT;
267 io_ctl->pages = kzalloc(sizeof(struct page *) * io_ctl->num_pages,
268 GFP_NOFS);
269 if (!io_ctl->pages)
270 return -ENOMEM;
271 io_ctl->root = root;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400272 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
273 io_ctl->check_crcs = 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400274 return 0;
275}
276
277static void io_ctl_free(struct io_ctl *io_ctl)
278{
279 kfree(io_ctl->pages);
280}
281
282static void io_ctl_unmap_page(struct io_ctl *io_ctl)
283{
284 if (io_ctl->cur) {
285 kunmap(io_ctl->page);
286 io_ctl->cur = NULL;
287 io_ctl->orig = NULL;
288 }
289}
290
291static void io_ctl_map_page(struct io_ctl *io_ctl, int clear)
292{
293 WARN_ON(io_ctl->cur);
294 BUG_ON(io_ctl->index >= io_ctl->num_pages);
295 io_ctl->page = io_ctl->pages[io_ctl->index++];
296 io_ctl->cur = kmap(io_ctl->page);
297 io_ctl->orig = io_ctl->cur;
298 io_ctl->size = PAGE_CACHE_SIZE;
299 if (clear)
300 memset(io_ctl->cur, 0, PAGE_CACHE_SIZE);
301}
302
303static void io_ctl_drop_pages(struct io_ctl *io_ctl)
304{
305 int i;
306
307 io_ctl_unmap_page(io_ctl);
308
309 for (i = 0; i < io_ctl->num_pages; i++) {
310 ClearPageChecked(io_ctl->pages[i]);
311 unlock_page(io_ctl->pages[i]);
312 page_cache_release(io_ctl->pages[i]);
313 }
314}
315
316static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct inode *inode,
317 int uptodate)
318{
319 struct page *page;
320 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
321 int i;
322
323 for (i = 0; i < io_ctl->num_pages; i++) {
324 page = find_or_create_page(inode->i_mapping, i, mask);
325 if (!page) {
326 io_ctl_drop_pages(io_ctl);
327 return -ENOMEM;
328 }
329 io_ctl->pages[i] = page;
330 if (uptodate && !PageUptodate(page)) {
331 btrfs_readpage(NULL, page);
332 lock_page(page);
333 if (!PageUptodate(page)) {
334 printk(KERN_ERR "btrfs: error reading free "
335 "space cache\n");
336 io_ctl_drop_pages(io_ctl);
337 return -EIO;
338 }
339 }
340 }
341
342 return 0;
343}
344
345static void io_ctl_set_generation(struct io_ctl *io_ctl, u64 generation)
346{
347 u64 *val;
348
349 io_ctl_map_page(io_ctl, 1);
350
351 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400352 * Skip the csum areas. If we don't check crcs then we just have a
353 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400354 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400355 if (io_ctl->check_crcs) {
356 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
357 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
358 } else {
359 io_ctl->cur += sizeof(u64);
360 io_ctl->size -= sizeof(u64) * 2;
361 }
Josef Bacika67509c2011-10-05 15:18:58 -0400362
363 val = io_ctl->cur;
364 *val = cpu_to_le64(generation);
365 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400366}
367
368static int io_ctl_check_generation(struct io_ctl *io_ctl, u64 generation)
369{
370 u64 *gen;
371
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400372 /*
373 * Skip the crc area. If we don't check crcs then we just have a 64bit
374 * chunk at the front of the first page.
375 */
376 if (io_ctl->check_crcs) {
377 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
378 io_ctl->size -= sizeof(u64) +
379 (sizeof(u32) * io_ctl->num_pages);
380 } else {
381 io_ctl->cur += sizeof(u64);
382 io_ctl->size -= sizeof(u64) * 2;
383 }
Josef Bacika67509c2011-10-05 15:18:58 -0400384
Josef Bacika67509c2011-10-05 15:18:58 -0400385 gen = io_ctl->cur;
386 if (le64_to_cpu(*gen) != generation) {
387 printk_ratelimited(KERN_ERR "btrfs: space cache generation "
388 "(%Lu) does not match inode (%Lu)\n", *gen,
389 generation);
390 io_ctl_unmap_page(io_ctl);
391 return -EIO;
392 }
393 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400394 return 0;
395}
396
397static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
398{
399 u32 *tmp;
400 u32 crc = ~(u32)0;
401 unsigned offset = 0;
402
403 if (!io_ctl->check_crcs) {
404 io_ctl_unmap_page(io_ctl);
405 return;
406 }
407
408 if (index == 0)
409 offset = sizeof(u32) * io_ctl->num_pages;;
410
411 crc = btrfs_csum_data(io_ctl->root, io_ctl->orig + offset, crc,
412 PAGE_CACHE_SIZE - offset);
413 btrfs_csum_final(crc, (char *)&crc);
414 io_ctl_unmap_page(io_ctl);
415 tmp = kmap(io_ctl->pages[0]);
416 tmp += index;
417 *tmp = crc;
418 kunmap(io_ctl->pages[0]);
419}
420
421static int io_ctl_check_crc(struct io_ctl *io_ctl, int index)
422{
423 u32 *tmp, val;
424 u32 crc = ~(u32)0;
425 unsigned offset = 0;
426
427 if (!io_ctl->check_crcs) {
428 io_ctl_map_page(io_ctl, 0);
429 return 0;
430 }
431
432 if (index == 0)
433 offset = sizeof(u32) * io_ctl->num_pages;
434
435 tmp = kmap(io_ctl->pages[0]);
436 tmp += index;
437 val = *tmp;
438 kunmap(io_ctl->pages[0]);
439
440 io_ctl_map_page(io_ctl, 0);
441 crc = btrfs_csum_data(io_ctl->root, io_ctl->orig + offset, crc,
442 PAGE_CACHE_SIZE - offset);
443 btrfs_csum_final(crc, (char *)&crc);
444 if (val != crc) {
445 printk_ratelimited(KERN_ERR "btrfs: csum mismatch on free "
446 "space cache\n");
447 io_ctl_unmap_page(io_ctl);
448 return -EIO;
449 }
450
Josef Bacika67509c2011-10-05 15:18:58 -0400451 return 0;
452}
453
454static int io_ctl_add_entry(struct io_ctl *io_ctl, u64 offset, u64 bytes,
455 void *bitmap)
456{
457 struct btrfs_free_space_entry *entry;
458
459 if (!io_ctl->cur)
460 return -ENOSPC;
461
462 entry = io_ctl->cur;
463 entry->offset = cpu_to_le64(offset);
464 entry->bytes = cpu_to_le64(bytes);
465 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
466 BTRFS_FREE_SPACE_EXTENT;
467 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
468 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
469
470 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
471 return 0;
472
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400473 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400474
475 /* No more pages to map */
476 if (io_ctl->index >= io_ctl->num_pages)
477 return 0;
478
479 /* map the next page */
480 io_ctl_map_page(io_ctl, 1);
481 return 0;
482}
483
484static int io_ctl_add_bitmap(struct io_ctl *io_ctl, void *bitmap)
485{
486 if (!io_ctl->cur)
487 return -ENOSPC;
488
489 /*
490 * If we aren't at the start of the current page, unmap this one and
491 * map the next one if there is any left.
492 */
493 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400494 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400495 if (io_ctl->index >= io_ctl->num_pages)
496 return -ENOSPC;
497 io_ctl_map_page(io_ctl, 0);
498 }
499
500 memcpy(io_ctl->cur, bitmap, PAGE_CACHE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400501 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400502 if (io_ctl->index < io_ctl->num_pages)
503 io_ctl_map_page(io_ctl, 0);
504 return 0;
505}
506
507static void io_ctl_zero_remaining_pages(struct io_ctl *io_ctl)
508{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400509 /*
510 * If we're not on the boundary we know we've modified the page and we
511 * need to crc the page.
512 */
513 if (io_ctl->cur != io_ctl->orig)
514 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
515 else
516 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400517
518 while (io_ctl->index < io_ctl->num_pages) {
519 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400520 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400521 }
522}
523
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400524static int io_ctl_read_entry(struct io_ctl *io_ctl,
525 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400526{
527 struct btrfs_free_space_entry *e;
Josef Bacika67509c2011-10-05 15:18:58 -0400528
529 e = io_ctl->cur;
530 entry->offset = le64_to_cpu(e->offset);
531 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400532 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400533 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
534 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
535
536 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400537 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400538
539 io_ctl_unmap_page(io_ctl);
540
541 if (io_ctl->index >= io_ctl->num_pages)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400542 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400543
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400544 return io_ctl_check_crc(io_ctl, io_ctl->index);
Josef Bacika67509c2011-10-05 15:18:58 -0400545}
546
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400547static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
548 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400549{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400550 int ret;
551
552 if (io_ctl->cur && io_ctl->cur != io_ctl->orig)
Josef Bacika67509c2011-10-05 15:18:58 -0400553 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400554
555 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
556 if (ret)
557 return ret;
558
Josef Bacika67509c2011-10-05 15:18:58 -0400559 memcpy(entry->bitmap, io_ctl->cur, PAGE_CACHE_SIZE);
560 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400561
562 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400563}
564
Li Zefan0414efa2011-04-20 10:20:14 +0800565int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
566 struct btrfs_free_space_ctl *ctl,
567 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400568{
Josef Bacik9d66e232010-08-25 16:54:15 -0400569 struct btrfs_free_space_header *header;
570 struct extent_buffer *leaf;
Josef Bacika67509c2011-10-05 15:18:58 -0400571 struct io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400572 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400573 struct btrfs_free_space *e, *n;
Josef Bacik9d66e232010-08-25 16:54:15 -0400574 struct list_head bitmaps;
575 u64 num_entries;
576 u64 num_bitmaps;
577 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400578 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400579 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400580
581 INIT_LIST_HEAD(&bitmaps);
582
Josef Bacik9d66e232010-08-25 16:54:15 -0400583 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800584 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400585 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400586
587 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800588 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400589 key.type = 0;
590
591 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800592 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400593 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800594 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400595 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400596 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400597 }
598
Li Zefan0414efa2011-04-20 10:20:14 +0800599 ret = -1;
600
Josef Bacik9d66e232010-08-25 16:54:15 -0400601 leaf = path->nodes[0];
602 header = btrfs_item_ptr(leaf, path->slots[0],
603 struct btrfs_free_space_header);
604 num_entries = btrfs_free_space_entries(leaf, header);
605 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
606 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400607 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400608
609 if (BTRFS_I(inode)->generation != generation) {
610 printk(KERN_ERR "btrfs: free space inode generation (%llu) did"
Li Zefan0414efa2011-04-20 10:20:14 +0800611 " not match free space cache generation (%llu)\n",
Josef Bacik9d66e232010-08-25 16:54:15 -0400612 (unsigned long long)BTRFS_I(inode)->generation,
Li Zefan0414efa2011-04-20 10:20:14 +0800613 (unsigned long long)generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400614 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400615 }
616
617 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400618 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400619
Josef Bacika67509c2011-10-05 15:18:58 -0400620 io_ctl_init(&io_ctl, inode, root);
Josef Bacik9d66e232010-08-25 16:54:15 -0400621 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800622 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400623 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400624
Josef Bacika67509c2011-10-05 15:18:58 -0400625 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
626 if (ret)
627 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400628
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400629 ret = io_ctl_check_crc(&io_ctl, 0);
630 if (ret)
631 goto free_cache;
632
Josef Bacika67509c2011-10-05 15:18:58 -0400633 ret = io_ctl_check_generation(&io_ctl, generation);
634 if (ret)
635 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400636
Josef Bacika67509c2011-10-05 15:18:58 -0400637 while (num_entries) {
638 e = kmem_cache_zalloc(btrfs_free_space_cachep,
639 GFP_NOFS);
640 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400641 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400642
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400643 ret = io_ctl_read_entry(&io_ctl, e, &type);
644 if (ret) {
645 kmem_cache_free(btrfs_free_space_cachep, e);
646 goto free_cache;
647 }
648
Josef Bacika67509c2011-10-05 15:18:58 -0400649 if (!e->bytes) {
650 kmem_cache_free(btrfs_free_space_cachep, e);
651 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400652 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400653
Josef Bacika67509c2011-10-05 15:18:58 -0400654 if (type == BTRFS_FREE_SPACE_EXTENT) {
655 spin_lock(&ctl->tree_lock);
656 ret = link_free_space(ctl, e);
657 spin_unlock(&ctl->tree_lock);
658 if (ret) {
659 printk(KERN_ERR "Duplicate entries in "
660 "free space cache, dumping\n");
Josef Bacikdc89e982011-01-28 17:05:48 -0500661 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400662 goto free_cache;
663 }
Josef Bacika67509c2011-10-05 15:18:58 -0400664 } else {
665 BUG_ON(!num_bitmaps);
666 num_bitmaps--;
667 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
668 if (!e->bitmap) {
669 kmem_cache_free(
670 btrfs_free_space_cachep, e);
671 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400672 }
Josef Bacika67509c2011-10-05 15:18:58 -0400673 spin_lock(&ctl->tree_lock);
674 ret = link_free_space(ctl, e);
675 ctl->total_bitmaps++;
676 ctl->op->recalc_thresholds(ctl);
677 spin_unlock(&ctl->tree_lock);
678 if (ret) {
679 printk(KERN_ERR "Duplicate entries in "
680 "free space cache, dumping\n");
681 kmem_cache_free(btrfs_free_space_cachep, e);
682 goto free_cache;
683 }
684 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400685 }
686
Josef Bacika67509c2011-10-05 15:18:58 -0400687 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400688 }
689
Josef Bacika67509c2011-10-05 15:18:58 -0400690 /*
691 * We add the bitmaps at the end of the entries in order that
692 * the bitmap entries are added to the cache.
693 */
694 list_for_each_entry_safe(e, n, &bitmaps, list) {
695 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400696 ret = io_ctl_read_bitmap(&io_ctl, e);
697 if (ret)
698 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400699 }
700
701 io_ctl_drop_pages(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400702 ret = 1;
703out:
Josef Bacika67509c2011-10-05 15:18:58 -0400704 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400705 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400706free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400707 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800708 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400709 goto out;
710}
711
Li Zefan0414efa2011-04-20 10:20:14 +0800712int load_free_space_cache(struct btrfs_fs_info *fs_info,
713 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400714{
Li Zefan34d52cb6c2011-03-29 13:46:06 +0800715 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800716 struct btrfs_root *root = fs_info->tree_root;
717 struct inode *inode;
718 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400719 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800720 bool matched;
721 u64 used = btrfs_block_group_used(&block_group->item);
722
723 /*
724 * If we're unmounting then just return, since this does a search on the
725 * normal root and not the commit root and we could deadlock.
726 */
David Sterba7841cb22011-05-31 18:07:27 +0200727 if (btrfs_fs_closing(fs_info))
Li Zefan0414efa2011-04-20 10:20:14 +0800728 return 0;
729
730 /*
731 * If this block group has been marked to be cleared for one reason or
732 * another then we can't trust the on disk cache, so just return.
733 */
734 spin_lock(&block_group->lock);
735 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
736 spin_unlock(&block_group->lock);
737 return 0;
738 }
739 spin_unlock(&block_group->lock);
740
741 path = btrfs_alloc_path();
742 if (!path)
743 return 0;
744
745 inode = lookup_free_space_inode(root, block_group, path);
746 if (IS_ERR(inode)) {
747 btrfs_free_path(path);
748 return 0;
749 }
750
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400751 /* We may have converted the inode and made the cache invalid. */
752 spin_lock(&block_group->lock);
753 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
754 spin_unlock(&block_group->lock);
755 goto out;
756 }
757 spin_unlock(&block_group->lock);
758
Li Zefan0414efa2011-04-20 10:20:14 +0800759 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
760 path, block_group->key.objectid);
761 btrfs_free_path(path);
762 if (ret <= 0)
763 goto out;
764
765 spin_lock(&ctl->tree_lock);
766 matched = (ctl->free_space == (block_group->key.offset - used -
767 block_group->bytes_super));
768 spin_unlock(&ctl->tree_lock);
769
770 if (!matched) {
771 __btrfs_remove_free_space_cache(ctl);
772 printk(KERN_ERR "block group %llu has an wrong amount of free "
773 "space\n", block_group->key.objectid);
774 ret = -1;
775 }
776out:
777 if (ret < 0) {
778 /* This cache is bogus, make sure it gets cleared */
779 spin_lock(&block_group->lock);
780 block_group->disk_cache_state = BTRFS_DC_CLEAR;
781 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800782 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800783
784 printk(KERN_ERR "btrfs: failed to load free space cache "
785 "for block group %llu\n", block_group->key.objectid);
786 }
787
788 iput(inode);
789 return ret;
790}
791
Josef Bacikc09544e2011-08-30 10:19:10 -0400792/**
793 * __btrfs_write_out_cache - write out cached info to an inode
794 * @root - the root the inode belongs to
795 * @ctl - the free space cache we are going to write out
796 * @block_group - the block_group for this cache if it belongs to a block_group
797 * @trans - the trans handle
798 * @path - the path to use
799 * @offset - the offset for the key we'll insert
800 *
801 * This function writes out a free space cache struct to disk for quick recovery
802 * on mount. This will return 0 if it was successfull in writing the cache out,
803 * and -1 if it was not.
804 */
Li Zefan0414efa2011-04-20 10:20:14 +0800805int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
806 struct btrfs_free_space_ctl *ctl,
807 struct btrfs_block_group_cache *block_group,
808 struct btrfs_trans_handle *trans,
809 struct btrfs_path *path, u64 offset)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400810{
811 struct btrfs_free_space_header *header;
812 struct extent_buffer *leaf;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400813 struct rb_node *node;
814 struct list_head *pos, *n;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400815 struct extent_state *cached_state = NULL;
Josef Bacik43be2142011-04-01 14:55:00 +0000816 struct btrfs_free_cluster *cluster = NULL;
817 struct extent_io_tree *unpin = NULL;
Josef Bacika67509c2011-10-05 15:18:58 -0400818 struct io_ctl io_ctl;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400819 struct list_head bitmap_list;
820 struct btrfs_key key;
Josef Bacik43be2142011-04-01 14:55:00 +0000821 u64 start, end, len;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400822 int entries = 0;
823 int bitmaps = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -0400824 int ret;
825 int err = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400826
Josef Bacik0cb59c92010-07-02 12:14:14 -0400827 INIT_LIST_HEAD(&bitmap_list);
828
Li Zefan0414efa2011-04-20 10:20:14 +0800829 if (!i_size_read(inode))
830 return -1;
Josef Bacik2b209822010-12-03 13:17:53 -0500831
Josef Bacika67509c2011-10-05 15:18:58 -0400832 io_ctl_init(&io_ctl, inode, root);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400833
Josef Bacik43be2142011-04-01 14:55:00 +0000834 /* Get the cluster for this block_group if it exists */
Li Zefan0414efa2011-04-20 10:20:14 +0800835 if (block_group && !list_empty(&block_group->cluster_list))
Josef Bacik43be2142011-04-01 14:55:00 +0000836 cluster = list_entry(block_group->cluster_list.next,
837 struct btrfs_free_cluster,
838 block_group_list);
839
840 /*
841 * We shouldn't have switched the pinned extents yet so this is the
842 * right one
843 */
844 unpin = root->fs_info->pinned_extents;
845
Josef Bacika67509c2011-10-05 15:18:58 -0400846 /* Lock all pages first so we can lock the extent safely. */
847 io_ctl_prepare_pages(&io_ctl, inode, 0);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400848
Josef Bacik0cb59c92010-07-02 12:14:14 -0400849 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
850 0, &cached_state, GFP_NOFS);
851
Josef Bacik43be2142011-04-01 14:55:00 +0000852 /*
853 * When searching for pinned extents, we need to start at our start
854 * offset.
855 */
Li Zefan0414efa2011-04-20 10:20:14 +0800856 if (block_group)
857 start = block_group->key.objectid;
Josef Bacik43be2142011-04-01 14:55:00 +0000858
Josef Bacikf75b1302011-10-05 10:00:18 -0400859 node = rb_first(&ctl->free_space_offset);
860 if (!node && cluster) {
861 node = rb_first(&cluster->root);
862 cluster = NULL;
863 }
864
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400865 /* Make sure we can fit our crcs into the first page */
866 if (io_ctl.check_crcs &&
867 (io_ctl.num_pages * sizeof(u32)) >= PAGE_CACHE_SIZE) {
868 WARN_ON(1);
869 goto out_nospc;
870 }
871
Josef Bacika67509c2011-10-05 15:18:58 -0400872 io_ctl_set_generation(&io_ctl, trans->transid);
873
Josef Bacik0cb59c92010-07-02 12:14:14 -0400874 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400875 while (node) {
876 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400877
Josef Bacika67509c2011-10-05 15:18:58 -0400878 e = rb_entry(node, struct btrfs_free_space, offset_index);
879 entries++;
Josef Bacik43be2142011-04-01 14:55:00 +0000880
Josef Bacika67509c2011-10-05 15:18:58 -0400881 ret = io_ctl_add_entry(&io_ctl, e->offset, e->bytes,
882 e->bitmap);
883 if (ret)
884 goto out_nospc;
885
886 if (e->bitmap) {
887 list_add_tail(&e->list, &bitmap_list);
888 bitmaps++;
889 }
890 node = rb_next(node);
891 if (!node && cluster) {
892 node = rb_first(&cluster->root);
893 cluster = NULL;
894 }
895 }
896
897 /*
898 * We want to add any pinned extents to our free space cache
899 * so we don't leak the space
900 */
901 while (block_group && (start < block_group->key.objectid +
902 block_group->key.offset)) {
903 ret = find_first_extent_bit(unpin, start, &start, &end,
904 EXTENT_DIRTY);
905 if (ret) {
906 ret = 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400907 break;
908 }
909
Josef Bacika67509c2011-10-05 15:18:58 -0400910 /* This pinned extent is out of our range */
911 if (start >= block_group->key.objectid +
912 block_group->key.offset)
913 break;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400914
Josef Bacika67509c2011-10-05 15:18:58 -0400915 len = block_group->key.objectid +
916 block_group->key.offset - start;
917 len = min(len, end + 1 - start);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400918
Josef Bacika67509c2011-10-05 15:18:58 -0400919 entries++;
920 ret = io_ctl_add_entry(&io_ctl, start, len, NULL);
921 if (ret)
922 goto out_nospc;
Josef Bacik2f356122011-06-10 15:31:13 -0400923
Josef Bacika67509c2011-10-05 15:18:58 -0400924 start = end + 1;
925 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400926
927 /* Write out the bitmaps */
928 list_for_each_safe(pos, n, &bitmap_list) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400929 struct btrfs_free_space *entry =
930 list_entry(pos, struct btrfs_free_space, list);
931
Josef Bacika67509c2011-10-05 15:18:58 -0400932 ret = io_ctl_add_bitmap(&io_ctl, entry->bitmap);
933 if (ret)
934 goto out_nospc;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400935 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400936 }
937
Josef Bacik0cb59c92010-07-02 12:14:14 -0400938 /* Zero out the rest of the pages just to make sure */
Josef Bacika67509c2011-10-05 15:18:58 -0400939 io_ctl_zero_remaining_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400940
Josef Bacika67509c2011-10-05 15:18:58 -0400941 ret = btrfs_dirty_pages(root, inode, io_ctl.pages, io_ctl.num_pages,
942 0, i_size_read(inode), &cached_state);
943 io_ctl_drop_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400944 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
945 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
946
Josef Bacikc09544e2011-08-30 10:19:10 -0400947 if (ret)
Josef Bacik2f356122011-06-10 15:31:13 -0400948 goto out;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400949
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400950
Josef Bacik549b4fd2011-10-05 16:33:53 -0400951 ret = filemap_write_and_wait(inode->i_mapping);
952 if (ret)
953 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400954
955 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800956 key.offset = offset;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400957 key.type = 0;
958
Josef Bacika9b5fcd2011-08-19 12:06:12 -0400959 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400960 if (ret < 0) {
Josef Bacika67509c2011-10-05 15:18:58 -0400961 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400962 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
963 GFP_NOFS);
Josef Bacik2f356122011-06-10 15:31:13 -0400964 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400965 }
966 leaf = path->nodes[0];
967 if (ret > 0) {
968 struct btrfs_key found_key;
969 BUG_ON(!path->slots[0]);
970 path->slots[0]--;
971 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
972 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
Li Zefan0414efa2011-04-20 10:20:14 +0800973 found_key.offset != offset) {
Josef Bacika67509c2011-10-05 15:18:58 -0400974 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
975 inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400976 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
977 NULL, GFP_NOFS);
David Sterbab3b4aa72011-04-21 01:20:15 +0200978 btrfs_release_path(path);
Josef Bacik2f356122011-06-10 15:31:13 -0400979 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400980 }
981 }
Josef Bacik549b4fd2011-10-05 16:33:53 -0400982
983 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400984 header = btrfs_item_ptr(leaf, path->slots[0],
985 struct btrfs_free_space_header);
986 btrfs_set_free_space_entries(leaf, header, entries);
987 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
988 btrfs_set_free_space_generation(leaf, header, trans->transid);
989 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200990 btrfs_release_path(path);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400991
Josef Bacikc09544e2011-08-30 10:19:10 -0400992 err = 0;
Josef Bacik2f356122011-06-10 15:31:13 -0400993out:
Josef Bacika67509c2011-10-05 15:18:58 -0400994 io_ctl_free(&io_ctl);
Josef Bacikc09544e2011-08-30 10:19:10 -0400995 if (err) {
Josef Bacika67509c2011-10-05 15:18:58 -0400996 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400997 BTRFS_I(inode)->generation = 0;
998 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400999 btrfs_update_inode(trans, root, inode);
Josef Bacikc09544e2011-08-30 10:19:10 -04001000 return err;
Josef Bacika67509c2011-10-05 15:18:58 -04001001
1002out_nospc:
1003 list_for_each_safe(pos, n, &bitmap_list) {
1004 struct btrfs_free_space *entry =
1005 list_entry(pos, struct btrfs_free_space, list);
1006 list_del_init(&entry->list);
1007 }
1008 io_ctl_drop_pages(&io_ctl);
1009 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1010 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1011 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001012}
1013
1014int btrfs_write_out_cache(struct btrfs_root *root,
1015 struct btrfs_trans_handle *trans,
1016 struct btrfs_block_group_cache *block_group,
1017 struct btrfs_path *path)
1018{
1019 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1020 struct inode *inode;
1021 int ret = 0;
1022
1023 root = root->fs_info->tree_root;
1024
1025 spin_lock(&block_group->lock);
1026 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1027 spin_unlock(&block_group->lock);
1028 return 0;
1029 }
1030 spin_unlock(&block_group->lock);
1031
1032 inode = lookup_free_space_inode(root, block_group, path);
1033 if (IS_ERR(inode))
1034 return 0;
1035
1036 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
1037 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001038 if (ret) {
Li Zefan0414efa2011-04-20 10:20:14 +08001039 spin_lock(&block_group->lock);
1040 block_group->disk_cache_state = BTRFS_DC_ERROR;
1041 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +08001042 ret = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04001043#ifdef DEBUG
Li Zefan0414efa2011-04-20 10:20:14 +08001044 printk(KERN_ERR "btrfs: failed to write free space cace "
1045 "for block group %llu\n", block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001046#endif
Li Zefan0414efa2011-04-20 10:20:14 +08001047 }
1048
Josef Bacik0cb59c92010-07-02 12:14:14 -04001049 iput(inode);
1050 return ret;
1051}
1052
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001053static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001054 u64 offset)
1055{
1056 BUG_ON(offset < bitmap_start);
1057 offset -= bitmap_start;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001058 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001059}
1060
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001061static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001062{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001063 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001064}
1065
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001066static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001067 u64 offset)
1068{
1069 u64 bitmap_start;
1070 u64 bytes_per_bitmap;
1071
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001072 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1073 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001074 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
1075 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001076 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001077
1078 return bitmap_start;
1079}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001080
1081static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001082 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001083{
1084 struct rb_node **p = &root->rb_node;
1085 struct rb_node *parent = NULL;
1086 struct btrfs_free_space *info;
1087
1088 while (*p) {
1089 parent = *p;
1090 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1091
Josef Bacik96303082009-07-13 21:29:25 -04001092 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001093 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001094 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001095 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001096 } else {
1097 /*
1098 * we could have a bitmap entry and an extent entry
1099 * share the same offset. If this is the case, we want
1100 * the extent entry to always be found first if we do a
1101 * linear search through the tree, since we want to have
1102 * the quickest allocation time, and allocating from an
1103 * extent is faster than allocating from a bitmap. So
1104 * if we're inserting a bitmap and we find an entry at
1105 * this offset, we want to go right, or after this entry
1106 * logically. If we are inserting an extent and we've
1107 * found a bitmap, we want to go left, or before
1108 * logically.
1109 */
1110 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001111 if (info->bitmap) {
1112 WARN_ON_ONCE(1);
1113 return -EEXIST;
1114 }
Josef Bacik96303082009-07-13 21:29:25 -04001115 p = &(*p)->rb_right;
1116 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001117 if (!info->bitmap) {
1118 WARN_ON_ONCE(1);
1119 return -EEXIST;
1120 }
Josef Bacik96303082009-07-13 21:29:25 -04001121 p = &(*p)->rb_left;
1122 }
1123 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001124 }
1125
1126 rb_link_node(node, parent, p);
1127 rb_insert_color(node, root);
1128
1129 return 0;
1130}
1131
1132/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001133 * searches the tree for the given offset.
1134 *
Josef Bacik96303082009-07-13 21:29:25 -04001135 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1136 * want a section that has at least bytes size and comes at or after the given
1137 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001138 */
Josef Bacik96303082009-07-13 21:29:25 -04001139static struct btrfs_free_space *
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001140tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001141 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001142{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001143 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001144 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001145
Josef Bacik96303082009-07-13 21:29:25 -04001146 /* find entry that is closest to the 'offset' */
1147 while (1) {
1148 if (!n) {
1149 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001150 break;
1151 }
Josef Bacik96303082009-07-13 21:29:25 -04001152
1153 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1154 prev = entry;
1155
1156 if (offset < entry->offset)
1157 n = n->rb_left;
1158 else if (offset > entry->offset)
1159 n = n->rb_right;
1160 else
1161 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001162 }
1163
Josef Bacik96303082009-07-13 21:29:25 -04001164 if (bitmap_only) {
1165 if (!entry)
1166 return NULL;
1167 if (entry->bitmap)
1168 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001169
Josef Bacik96303082009-07-13 21:29:25 -04001170 /*
1171 * bitmap entry and extent entry may share same offset,
1172 * in that case, bitmap entry comes after extent entry.
1173 */
1174 n = rb_next(n);
1175 if (!n)
1176 return NULL;
1177 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1178 if (entry->offset != offset)
1179 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001180
Josef Bacik96303082009-07-13 21:29:25 -04001181 WARN_ON(!entry->bitmap);
1182 return entry;
1183 } else if (entry) {
1184 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001185 /*
Josef Bacik96303082009-07-13 21:29:25 -04001186 * if previous extent entry covers the offset,
1187 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001188 */
Josef Bacik96303082009-07-13 21:29:25 -04001189 n = &entry->offset_index;
1190 while (1) {
1191 n = rb_prev(n);
1192 if (!n)
1193 break;
1194 prev = rb_entry(n, struct btrfs_free_space,
1195 offset_index);
1196 if (!prev->bitmap) {
1197 if (prev->offset + prev->bytes > offset)
1198 entry = prev;
1199 break;
1200 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001201 }
Josef Bacik96303082009-07-13 21:29:25 -04001202 }
1203 return entry;
1204 }
1205
1206 if (!prev)
1207 return NULL;
1208
1209 /* find last entry before the 'offset' */
1210 entry = prev;
1211 if (entry->offset > offset) {
1212 n = rb_prev(&entry->offset_index);
1213 if (n) {
1214 entry = rb_entry(n, struct btrfs_free_space,
1215 offset_index);
1216 BUG_ON(entry->offset > offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001217 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001218 if (fuzzy)
1219 return entry;
1220 else
1221 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001222 }
1223 }
1224
Josef Bacik96303082009-07-13 21:29:25 -04001225 if (entry->bitmap) {
1226 n = &entry->offset_index;
1227 while (1) {
1228 n = rb_prev(n);
1229 if (!n)
1230 break;
1231 prev = rb_entry(n, struct btrfs_free_space,
1232 offset_index);
1233 if (!prev->bitmap) {
1234 if (prev->offset + prev->bytes > offset)
1235 return prev;
1236 break;
1237 }
1238 }
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001239 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001240 return entry;
1241 } else if (entry->offset + entry->bytes > offset)
1242 return entry;
1243
1244 if (!fuzzy)
1245 return NULL;
1246
1247 while (1) {
1248 if (entry->bitmap) {
1249 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001250 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001251 break;
1252 } else {
1253 if (entry->offset + entry->bytes > offset)
1254 break;
1255 }
1256
1257 n = rb_next(&entry->offset_index);
1258 if (!n)
1259 return NULL;
1260 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1261 }
1262 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001263}
1264
Li Zefanf333adb2010-11-09 14:57:39 +08001265static inline void
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001266__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001267 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001268{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001269 rb_erase(&info->offset_index, &ctl->free_space_offset);
1270 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001271}
1272
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001273static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001274 struct btrfs_free_space *info)
1275{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001276 __unlink_free_space(ctl, info);
1277 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001278}
1279
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001280static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001281 struct btrfs_free_space *info)
1282{
1283 int ret = 0;
1284
Josef Bacik96303082009-07-13 21:29:25 -04001285 BUG_ON(!info->bitmap && !info->bytes);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001286 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001287 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001288 if (ret)
1289 return ret;
1290
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001291 ctl->free_space += info->bytes;
1292 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001293 return ret;
1294}
1295
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001296static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001297{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001298 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001299 u64 max_bytes;
1300 u64 bitmap_bytes;
1301 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001302 u64 size = block_group->key.offset;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001303 u64 bytes_per_bg = BITS_PER_BITMAP * block_group->sectorsize;
1304 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1305
1306 BUG_ON(ctl->total_bitmaps > max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001307
1308 /*
1309 * The goal is to keep the total amount of memory used per 1gb of space
1310 * at or below 32k, so we need to adjust how much memory we allow to be
1311 * used by extent based free space tracking
1312 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001313 if (size < 1024 * 1024 * 1024)
1314 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1315 else
1316 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1317 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001318
Josef Bacik25891f72009-09-11 16:11:20 -04001319 /*
1320 * we want to account for 1 more bitmap than what we have so we can make
1321 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1322 * we add more bitmaps.
1323 */
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001324 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001325
Josef Bacik25891f72009-09-11 16:11:20 -04001326 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001327 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001328 return;
Josef Bacik96303082009-07-13 21:29:25 -04001329 }
Josef Bacik25891f72009-09-11 16:11:20 -04001330
1331 /*
1332 * we want the extent entry threshold to always be at most 1/2 the maxw
1333 * bytes we can have, or whatever is less than that.
1334 */
1335 extent_bytes = max_bytes - bitmap_bytes;
1336 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1337
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001338 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001339 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001340}
1341
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001342static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1343 struct btrfs_free_space *info,
1344 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001345{
Li Zefanf38b6e72011-03-14 13:40:51 +08001346 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001347
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001348 start = offset_to_bit(info->offset, ctl->unit, offset);
1349 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001350 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001351
Li Zefanf38b6e72011-03-14 13:40:51 +08001352 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001353
1354 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001355}
1356
1357static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1358 struct btrfs_free_space *info, u64 offset,
1359 u64 bytes)
1360{
1361 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001362 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001363}
1364
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001365static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001366 struct btrfs_free_space *info, u64 offset,
1367 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001368{
Li Zefanf38b6e72011-03-14 13:40:51 +08001369 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001370
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001371 start = offset_to_bit(info->offset, ctl->unit, offset);
1372 count = bytes_to_bits(bytes, ctl->unit);
Li Zefanf38b6e72011-03-14 13:40:51 +08001373 BUG_ON(start + count > BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001374
Li Zefanf38b6e72011-03-14 13:40:51 +08001375 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001376
1377 info->bytes += bytes;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001378 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001379}
1380
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001381static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001382 struct btrfs_free_space *bitmap_info, u64 *offset,
1383 u64 *bytes)
1384{
1385 unsigned long found_bits = 0;
1386 unsigned long bits, i;
1387 unsigned long next_zero;
1388
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001389 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001390 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001391 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001392
1393 for (i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i);
1394 i < BITS_PER_BITMAP;
1395 i = find_next_bit(bitmap_info->bitmap, BITS_PER_BITMAP, i + 1)) {
1396 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1397 BITS_PER_BITMAP, i);
1398 if ((next_zero - i) >= bits) {
1399 found_bits = next_zero - i;
1400 break;
1401 }
1402 i = next_zero;
1403 }
1404
1405 if (found_bits) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001406 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1407 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001408 return 0;
1409 }
1410
1411 return -1;
1412}
1413
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001414static struct btrfs_free_space *
1415find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001416{
1417 struct btrfs_free_space *entry;
1418 struct rb_node *node;
1419 int ret;
1420
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001421 if (!ctl->free_space_offset.rb_node)
Josef Bacik96303082009-07-13 21:29:25 -04001422 return NULL;
1423
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001424 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001425 if (!entry)
1426 return NULL;
1427
1428 for (node = &entry->offset_index; node; node = rb_next(node)) {
1429 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1430 if (entry->bytes < *bytes)
1431 continue;
1432
1433 if (entry->bitmap) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001434 ret = search_bitmap(ctl, entry, offset, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001435 if (!ret)
1436 return entry;
1437 continue;
1438 }
1439
1440 *offset = entry->offset;
1441 *bytes = entry->bytes;
1442 return entry;
1443 }
1444
1445 return NULL;
1446}
1447
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001448static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001449 struct btrfs_free_space *info, u64 offset)
1450{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001451 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001452 info->bytes = 0;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001453 link_free_space(ctl, info);
1454 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001455
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001456 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001457}
1458
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001459static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001460 struct btrfs_free_space *bitmap_info)
1461{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001462 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001463 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001464 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001465 ctl->total_bitmaps--;
1466 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001467}
1468
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001469static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001470 struct btrfs_free_space *bitmap_info,
1471 u64 *offset, u64 *bytes)
1472{
1473 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001474 u64 search_start, search_bytes;
1475 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001476
1477again:
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001478 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001479
Josef Bacik6606bb92009-07-31 11:03:58 -04001480 /*
1481 * XXX - this can go away after a few releases.
1482 *
1483 * since the only user of btrfs_remove_free_space is the tree logging
1484 * stuff, and the only way to test that is under crash conditions, we
1485 * want to have this debug stuff here just in case somethings not
1486 * working. Search the bitmap for the space we are trying to use to
1487 * make sure its actually there. If its not there then we need to stop
1488 * because something has gone wrong.
1489 */
1490 search_start = *offset;
1491 search_bytes = *bytes;
Josef Bacik13dbc082011-02-03 02:39:52 +00001492 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001493 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacik6606bb92009-07-31 11:03:58 -04001494 BUG_ON(ret < 0 || search_start != *offset);
1495
Josef Bacik96303082009-07-13 21:29:25 -04001496 if (*offset > bitmap_info->offset && *offset + *bytes > end) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001497 bitmap_clear_bits(ctl, bitmap_info, *offset, end - *offset + 1);
Josef Bacik96303082009-07-13 21:29:25 -04001498 *bytes -= end - *offset + 1;
1499 *offset = end + 1;
1500 } else if (*offset >= bitmap_info->offset && *offset + *bytes <= end) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001501 bitmap_clear_bits(ctl, bitmap_info, *offset, *bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001502 *bytes = 0;
1503 }
1504
1505 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001506 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001507 if (!bitmap_info->bytes)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001508 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001509
Josef Bacik6606bb92009-07-31 11:03:58 -04001510 /*
1511 * no entry after this bitmap, but we still have bytes to
1512 * remove, so something has gone wrong.
1513 */
1514 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001515 return -EINVAL;
1516
Josef Bacik6606bb92009-07-31 11:03:58 -04001517 bitmap_info = rb_entry(next, struct btrfs_free_space,
1518 offset_index);
1519
1520 /*
1521 * if the next entry isn't a bitmap we need to return to let the
1522 * extent stuff do its work.
1523 */
Josef Bacik96303082009-07-13 21:29:25 -04001524 if (!bitmap_info->bitmap)
1525 return -EAGAIN;
1526
Josef Bacik6606bb92009-07-31 11:03:58 -04001527 /*
1528 * Ok the next item is a bitmap, but it may not actually hold
1529 * the information for the rest of this free space stuff, so
1530 * look for it, and if we don't find it return so we can try
1531 * everything over again.
1532 */
1533 search_start = *offset;
1534 search_bytes = *bytes;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001535 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001536 &search_bytes);
1537 if (ret < 0 || search_start != *offset)
1538 return -EAGAIN;
1539
Josef Bacik96303082009-07-13 21:29:25 -04001540 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001541 } else if (!bitmap_info->bytes)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001542 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001543
1544 return 0;
1545}
1546
Josef Bacik2cdc3422011-05-27 14:07:49 -04001547static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1548 struct btrfs_free_space *info, u64 offset,
1549 u64 bytes)
1550{
1551 u64 bytes_to_set = 0;
1552 u64 end;
1553
1554 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1555
1556 bytes_to_set = min(end - offset, bytes);
1557
1558 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1559
1560 return bytes_to_set;
1561
1562}
1563
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001564static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1565 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001566{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001567 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001568
1569 /*
1570 * If we are below the extents threshold then we can add this as an
1571 * extent, and don't have to deal with the bitmap
1572 */
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001573 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001574 /*
1575 * If this block group has some small extents we don't want to
1576 * use up all of our free slots in the cache with them, we want
1577 * to reserve them to larger extents, however if we have plent
1578 * of cache left then go ahead an dadd them, no sense in adding
1579 * the overhead of a bitmap if we don't have to.
1580 */
1581 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001582 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1583 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001584 } else {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001585 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001586 }
1587 }
Josef Bacik96303082009-07-13 21:29:25 -04001588
1589 /*
1590 * some block groups are so tiny they can't be enveloped by a bitmap, so
1591 * don't even bother to create a bitmap for this
1592 */
1593 if (BITS_PER_BITMAP * block_group->sectorsize >
1594 block_group->key.offset)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001595 return false;
1596
1597 return true;
1598}
1599
Josef Bacik2cdc3422011-05-27 14:07:49 -04001600static struct btrfs_free_space_op free_space_op = {
1601 .recalc_thresholds = recalculate_thresholds,
1602 .use_bitmap = use_bitmap,
1603};
1604
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001605static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1606 struct btrfs_free_space *info)
1607{
1608 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001609 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001610 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001611 u64 bytes, offset, bytes_added;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001612 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001613
1614 bytes = info->bytes;
1615 offset = info->offset;
1616
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001617 if (!ctl->op->use_bitmap(ctl, info))
1618 return 0;
1619
Josef Bacik2cdc3422011-05-27 14:07:49 -04001620 if (ctl->op == &free_space_op)
1621 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001622again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001623 /*
1624 * Since we link bitmaps right into the cluster we need to see if we
1625 * have a cluster here, and if so and it has our bitmap we need to add
1626 * the free space to that bitmap.
1627 */
1628 if (block_group && !list_empty(&block_group->cluster_list)) {
1629 struct btrfs_free_cluster *cluster;
1630 struct rb_node *node;
1631 struct btrfs_free_space *entry;
1632
1633 cluster = list_entry(block_group->cluster_list.next,
1634 struct btrfs_free_cluster,
1635 block_group_list);
1636 spin_lock(&cluster->lock);
1637 node = rb_first(&cluster->root);
1638 if (!node) {
1639 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001640 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001641 }
1642
1643 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1644 if (!entry->bitmap) {
1645 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001646 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001647 }
1648
1649 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1650 bytes_added = add_bytes_to_bitmap(ctl, entry,
1651 offset, bytes);
1652 bytes -= bytes_added;
1653 offset += bytes_added;
1654 }
1655 spin_unlock(&cluster->lock);
1656 if (!bytes) {
1657 ret = 1;
1658 goto out;
1659 }
1660 }
Chris Mason38e87882011-06-10 16:36:57 -04001661
1662no_cluster_bitmap:
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001663 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001664 1, 0);
1665 if (!bitmap_info) {
1666 BUG_ON(added);
1667 goto new_bitmap;
1668 }
1669
Josef Bacik2cdc3422011-05-27 14:07:49 -04001670 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1671 bytes -= bytes_added;
1672 offset += bytes_added;
1673 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001674
1675 if (!bytes) {
1676 ret = 1;
1677 goto out;
1678 } else
1679 goto again;
1680
1681new_bitmap:
1682 if (info && info->bitmap) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001683 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001684 added = 1;
1685 info = NULL;
1686 goto again;
1687 } else {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001688 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001689
1690 /* no pre-allocated info, allocate a new one */
1691 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001692 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1693 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001694 if (!info) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001695 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001696 ret = -ENOMEM;
1697 goto out;
1698 }
1699 }
1700
1701 /* allocate the bitmap */
1702 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001703 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001704 if (!info->bitmap) {
1705 ret = -ENOMEM;
1706 goto out;
1707 }
1708 goto again;
1709 }
1710
1711out:
1712 if (info) {
1713 if (info->bitmap)
1714 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001715 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001716 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001717
1718 return ret;
1719}
1720
Chris Mason945d8962011-05-22 12:33:42 -04001721static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001722 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001723{
Li Zefan120d66e2010-11-09 14:56:50 +08001724 struct btrfs_free_space *left_info;
1725 struct btrfs_free_space *right_info;
1726 bool merged = false;
1727 u64 offset = info->offset;
1728 u64 bytes = info->bytes;
Josef Bacik6226cb02009-04-03 10:14:18 -04001729
Josef Bacik0f9dd462008-09-23 13:14:11 -04001730 /*
1731 * first we want to see if there is free space adjacent to the range we
1732 * are adding, if there is remove that struct and add a new one to
1733 * cover the entire range
1734 */
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001735 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001736 if (right_info && rb_prev(&right_info->offset_index))
1737 left_info = rb_entry(rb_prev(&right_info->offset_index),
1738 struct btrfs_free_space, offset_index);
1739 else
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001740 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001741
Josef Bacik96303082009-07-13 21:29:25 -04001742 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001743 if (update_stat)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001744 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001745 else
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001746 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb02009-04-03 10:14:18 -04001747 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001748 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001749 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001750 }
1751
Josef Bacik96303082009-07-13 21:29:25 -04001752 if (left_info && !left_info->bitmap &&
1753 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001754 if (update_stat)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001755 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001756 else
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001757 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb02009-04-03 10:14:18 -04001758 info->offset = left_info->offset;
1759 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001760 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001761 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001762 }
1763
Li Zefan120d66e2010-11-09 14:56:50 +08001764 return merged;
1765}
1766
Li Zefan581bb052011-04-20 10:06:11 +08001767int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1768 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001769{
1770 struct btrfs_free_space *info;
1771 int ret = 0;
1772
Josef Bacikdc89e982011-01-28 17:05:48 -05001773 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001774 if (!info)
1775 return -ENOMEM;
1776
1777 info->offset = offset;
1778 info->bytes = bytes;
1779
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001780 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001781
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001782 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001783 goto link;
1784
1785 /*
1786 * There was no extent directly to the left or right of this new
1787 * extent then we know we're going to have to allocate a new extent, so
1788 * before we do that see if we need to drop this into a bitmap
1789 */
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001790 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001791 if (ret < 0) {
1792 goto out;
1793 } else if (ret) {
1794 ret = 0;
1795 goto out;
1796 }
1797link:
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001798 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001799 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001800 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001801out:
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001802 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04001803
Josef Bacik0f9dd462008-09-23 13:14:11 -04001804 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001805 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04001806 BUG_ON(ret == -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001807 }
1808
Josef Bacik0f9dd462008-09-23 13:14:11 -04001809 return ret;
1810}
1811
Josef Bacik6226cb02009-04-03 10:14:18 -04001812int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1813 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001814{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001815 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001816 struct btrfs_free_space *info;
Josef Bacik96303082009-07-13 21:29:25 -04001817 struct btrfs_free_space *next_info = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001818 int ret = 0;
1819
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001820 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04001821
Josef Bacik96303082009-07-13 21:29:25 -04001822again:
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001823 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001824 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001825 /*
1826 * oops didn't find an extent that matched the space we wanted
1827 * to remove, look for a bitmap instead
1828 */
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001829 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04001830 1, 0);
1831 if (!info) {
1832 WARN_ON(1);
1833 goto out_lock;
1834 }
Josef Bacik96303082009-07-13 21:29:25 -04001835 }
1836
1837 if (info->bytes < bytes && rb_next(&info->offset_index)) {
1838 u64 end;
1839 next_info = rb_entry(rb_next(&info->offset_index),
1840 struct btrfs_free_space,
1841 offset_index);
1842
1843 if (next_info->bitmap)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001844 end = next_info->offset +
1845 BITS_PER_BITMAP * ctl->unit - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001846 else
1847 end = next_info->offset + next_info->bytes;
1848
1849 if (next_info->bytes < bytes ||
1850 next_info->offset > offset || offset > end) {
1851 printk(KERN_CRIT "Found free space at %llu, size %llu,"
1852 " trying to use %llu\n",
1853 (unsigned long long)info->offset,
1854 (unsigned long long)info->bytes,
1855 (unsigned long long)bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001856 WARN_ON(1);
1857 ret = -EINVAL;
Josef Bacik96303082009-07-13 21:29:25 -04001858 goto out_lock;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001859 }
Josef Bacik96303082009-07-13 21:29:25 -04001860
1861 info = next_info;
1862 }
1863
1864 if (info->bytes == bytes) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001865 unlink_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001866 if (info->bitmap) {
1867 kfree(info->bitmap);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001868 ctl->total_bitmaps--;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001869 }
Josef Bacikdc89e982011-01-28 17:05:48 -05001870 kmem_cache_free(btrfs_free_space_cachep, info);
Chris Mason1eae31e2011-10-14 06:31:20 -04001871 ret = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001872 goto out_lock;
1873 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001874
Josef Bacik96303082009-07-13 21:29:25 -04001875 if (!info->bitmap && info->offset == offset) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001876 unlink_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001877 info->offset += bytes;
1878 info->bytes -= bytes;
Chris Mason1eae31e2011-10-14 06:31:20 -04001879 ret = link_free_space(ctl, info);
1880 WARN_ON(ret);
Josef Bacik96303082009-07-13 21:29:25 -04001881 goto out_lock;
1882 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001883
Josef Bacik96303082009-07-13 21:29:25 -04001884 if (!info->bitmap && info->offset <= offset &&
1885 info->offset + info->bytes >= offset + bytes) {
Chris Mason9b49c9b2008-09-24 11:23:25 -04001886 u64 old_start = info->offset;
1887 /*
1888 * we're freeing space in the middle of the info,
1889 * this can happen during tree log replay
1890 *
1891 * first unlink the old info and then
1892 * insert it again after the hole we're creating
1893 */
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001894 unlink_free_space(ctl, info);
Chris Mason9b49c9b2008-09-24 11:23:25 -04001895 if (offset + bytes < info->offset + info->bytes) {
1896 u64 old_end = info->offset + info->bytes;
1897
1898 info->offset = offset + bytes;
1899 info->bytes = old_end - info->offset;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001900 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001901 WARN_ON(ret);
1902 if (ret)
1903 goto out_lock;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001904 } else {
1905 /* the hole we're creating ends at the end
1906 * of the info struct, just free the info
1907 */
Josef Bacikdc89e982011-01-28 17:05:48 -05001908 kmem_cache_free(btrfs_free_space_cachep, info);
Chris Mason9b49c9b2008-09-24 11:23:25 -04001909 }
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001910 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001911
1912 /* step two, insert a new info struct to cover
1913 * anything before the hole
Chris Mason9b49c9b2008-09-24 11:23:25 -04001914 */
Josef Bacik6226cb02009-04-03 10:14:18 -04001915 ret = btrfs_add_free_space(block_group, old_start,
1916 offset - old_start);
Josef Bacik96303082009-07-13 21:29:25 -04001917 WARN_ON(ret);
1918 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001919 }
Josef Bacik96303082009-07-13 21:29:25 -04001920
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001921 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacik96303082009-07-13 21:29:25 -04001922 if (ret == -EAGAIN)
1923 goto again;
1924 BUG_ON(ret);
1925out_lock:
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001926 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001927out:
Josef Bacik25179202008-10-29 14:49:05 -04001928 return ret;
1929}
1930
Josef Bacik0f9dd462008-09-23 13:14:11 -04001931void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1932 u64 bytes)
1933{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001934 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001935 struct btrfs_free_space *info;
1936 struct rb_node *n;
1937 int count = 0;
1938
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001939 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001940 info = rb_entry(n, struct btrfs_free_space, offset_index);
1941 if (info->bytes >= bytes)
1942 count++;
Josef Bacik96303082009-07-13 21:29:25 -04001943 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Joel Becker21380932009-04-21 12:38:29 -07001944 (unsigned long long)info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001945 (unsigned long long)info->bytes,
1946 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001947 }
Josef Bacik96303082009-07-13 21:29:25 -04001948 printk(KERN_INFO "block group has cluster?: %s\n",
1949 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001950 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
1951 "\n", count);
1952}
1953
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001954void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001955{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001956 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001957
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001958 spin_lock_init(&ctl->tree_lock);
1959 ctl->unit = block_group->sectorsize;
1960 ctl->start = block_group->key.objectid;
1961 ctl->private = block_group;
1962 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001963
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001964 /*
1965 * we only want to have 32k of ram per block group for keeping
1966 * track of free space, and if we pass 1/2 of that we want to
1967 * start converting things over to using bitmaps
1968 */
1969 ctl->extents_thresh = ((1024 * 32) / 2) /
1970 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001971}
1972
Chris Masonfa9c0d72009-04-03 09:47:43 -04001973/*
1974 * for a given cluster, put all of its extents back into the free
1975 * space cache. If the block group passed doesn't match the block group
1976 * pointed to by the cluster, someone else raced in and freed the
1977 * cluster already. In that case, we just return without changing anything
1978 */
1979static int
1980__btrfs_return_cluster_to_free_space(
1981 struct btrfs_block_group_cache *block_group,
1982 struct btrfs_free_cluster *cluster)
1983{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08001984 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d72009-04-03 09:47:43 -04001985 struct btrfs_free_space *entry;
1986 struct rb_node *node;
1987
1988 spin_lock(&cluster->lock);
1989 if (cluster->block_group != block_group)
1990 goto out;
1991
Josef Bacik96303082009-07-13 21:29:25 -04001992 cluster->block_group = NULL;
Chris Masonfa9c0d72009-04-03 09:47:43 -04001993 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001994 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04001995
Chris Masonfa9c0d72009-04-03 09:47:43 -04001996 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04001997 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04001998 bool bitmap;
1999
Chris Masonfa9c0d72009-04-03 09:47:43 -04002000 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2001 node = rb_next(&entry->offset_index);
2002 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04002003
2004 bitmap = (entry->bitmap != NULL);
2005 if (!bitmap)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002006 try_merge_free_space(ctl, entry, false);
2007 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002008 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002009 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002010 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002011
Chris Masonfa9c0d72009-04-03 09:47:43 -04002012out:
2013 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002014 btrfs_put_block_group(block_group);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002015 return 0;
2016}
2017
Chris Mason09655372011-05-21 09:27:38 -04002018void __btrfs_remove_free_space_cache_locked(struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002019{
2020 struct btrfs_free_space *info;
2021 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002022
Li Zefan581bb052011-04-20 10:06:11 +08002023 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2024 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002025 if (!info->bitmap) {
2026 unlink_free_space(ctl, info);
2027 kmem_cache_free(btrfs_free_space_cachep, info);
2028 } else {
2029 free_bitmap(ctl, info);
2030 }
Li Zefan581bb052011-04-20 10:06:11 +08002031 if (need_resched()) {
2032 spin_unlock(&ctl->tree_lock);
2033 cond_resched();
2034 spin_lock(&ctl->tree_lock);
2035 }
2036 }
Chris Mason09655372011-05-21 09:27:38 -04002037}
2038
2039void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2040{
2041 spin_lock(&ctl->tree_lock);
2042 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002043 spin_unlock(&ctl->tree_lock);
2044}
2045
Josef Bacik0f9dd462008-09-23 13:14:11 -04002046void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2047{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002048 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d72009-04-03 09:47:43 -04002049 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002050 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002051
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002052 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002053 while ((head = block_group->cluster_list.next) !=
2054 &block_group->cluster_list) {
2055 cluster = list_entry(head, struct btrfs_free_cluster,
2056 block_group_list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002057
2058 WARN_ON(cluster->block_group != block_group);
2059 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04002060 if (need_resched()) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002061 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002062 cond_resched();
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002063 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002064 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04002065 }
Chris Mason09655372011-05-21 09:27:38 -04002066 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002067 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002068
Josef Bacik0f9dd462008-09-23 13:14:11 -04002069}
2070
Josef Bacik6226cb02009-04-03 10:14:18 -04002071u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
2072 u64 offset, u64 bytes, u64 empty_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002073{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002074 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb02009-04-03 10:14:18 -04002075 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002076 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb02009-04-03 10:14:18 -04002077 u64 ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002078
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002079 spin_lock(&ctl->tree_lock);
2080 entry = find_free_space(ctl, &offset, &bytes_search);
Josef Bacik6226cb02009-04-03 10:14:18 -04002081 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002082 goto out;
2083
2084 ret = offset;
2085 if (entry->bitmap) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002086 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002087 if (!entry->bytes)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002088 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002089 } else {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002090 unlink_free_space(ctl, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002091 entry->offset += bytes;
2092 entry->bytes -= bytes;
Josef Bacik6226cb02009-04-03 10:14:18 -04002093 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002094 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002095 else
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002096 link_free_space(ctl, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002097 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002098
Josef Bacik96303082009-07-13 21:29:25 -04002099out:
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002100 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002101
Josef Bacik0f9dd462008-09-23 13:14:11 -04002102 return ret;
2103}
Chris Masonfa9c0d72009-04-03 09:47:43 -04002104
2105/*
2106 * given a cluster, put all of its extents back into the free space
2107 * cache. If a block group is passed, this function will only free
2108 * a cluster that belongs to the passed block group.
2109 *
2110 * Otherwise, it'll get a reference on the block group pointed to by the
2111 * cluster and remove the cluster from it.
2112 */
2113int btrfs_return_cluster_to_free_space(
2114 struct btrfs_block_group_cache *block_group,
2115 struct btrfs_free_cluster *cluster)
2116{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002117 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d72009-04-03 09:47:43 -04002118 int ret;
2119
2120 /* first, get a safe pointer to the block group */
2121 spin_lock(&cluster->lock);
2122 if (!block_group) {
2123 block_group = cluster->block_group;
2124 if (!block_group) {
2125 spin_unlock(&cluster->lock);
2126 return 0;
2127 }
2128 } else if (cluster->block_group != block_group) {
2129 /* someone else has already freed it don't redo their work */
2130 spin_unlock(&cluster->lock);
2131 return 0;
2132 }
2133 atomic_inc(&block_group->count);
2134 spin_unlock(&cluster->lock);
2135
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002136 ctl = block_group->free_space_ctl;
2137
Chris Masonfa9c0d72009-04-03 09:47:43 -04002138 /* now return any extents the cluster had on it */
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002139 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002140 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002141 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002142
2143 /* finally drop our ref */
2144 btrfs_put_block_group(block_group);
2145 return ret;
2146}
2147
Josef Bacik96303082009-07-13 21:29:25 -04002148static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2149 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002150 struct btrfs_free_space *entry,
Josef Bacik96303082009-07-13 21:29:25 -04002151 u64 bytes, u64 min_start)
2152{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002153 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002154 int err;
2155 u64 search_start = cluster->window_start;
2156 u64 search_bytes = bytes;
2157 u64 ret = 0;
2158
Josef Bacik96303082009-07-13 21:29:25 -04002159 search_start = min_start;
2160 search_bytes = bytes;
2161
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002162 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002163 if (err)
Josef Bacik4e69b592011-03-21 10:11:24 -04002164 return 0;
Josef Bacik96303082009-07-13 21:29:25 -04002165
2166 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002167 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002168
2169 return ret;
2170}
2171
Chris Masonfa9c0d72009-04-03 09:47:43 -04002172/*
2173 * given a cluster, try to allocate 'bytes' from it, returns 0
2174 * if it couldn't find anything suitably large, or a logical disk offset
2175 * if things worked out
2176 */
2177u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2178 struct btrfs_free_cluster *cluster, u64 bytes,
2179 u64 min_start)
2180{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002181 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d72009-04-03 09:47:43 -04002182 struct btrfs_free_space *entry = NULL;
2183 struct rb_node *node;
2184 u64 ret = 0;
2185
2186 spin_lock(&cluster->lock);
2187 if (bytes > cluster->max_size)
2188 goto out;
2189
2190 if (cluster->block_group != block_group)
2191 goto out;
2192
2193 node = rb_first(&cluster->root);
2194 if (!node)
2195 goto out;
2196
2197 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002198 while(1) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002199 if (entry->bytes < bytes ||
2200 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04002201 node = rb_next(&entry->offset_index);
2202 if (!node)
2203 break;
2204 entry = rb_entry(node, struct btrfs_free_space,
2205 offset_index);
2206 continue;
2207 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04002208
Josef Bacik4e69b592011-03-21 10:11:24 -04002209 if (entry->bitmap) {
2210 ret = btrfs_alloc_from_bitmap(block_group,
2211 cluster, entry, bytes,
2212 min_start);
2213 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002214 node = rb_next(&entry->offset_index);
2215 if (!node)
2216 break;
2217 entry = rb_entry(node, struct btrfs_free_space,
2218 offset_index);
2219 continue;
2220 }
2221 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002222 ret = entry->offset;
2223
2224 entry->offset += bytes;
2225 entry->bytes -= bytes;
2226 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04002227
Li Zefan5e71b5d2010-11-09 14:55:34 +08002228 if (entry->bytes == 0)
Chris Masonfa9c0d72009-04-03 09:47:43 -04002229 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002230 break;
2231 }
2232out:
2233 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002234
Li Zefan5e71b5d2010-11-09 14:55:34 +08002235 if (!ret)
2236 return 0;
2237
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002238 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002239
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002240 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002241 if (entry->bytes == 0) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002242 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002243 if (entry->bitmap) {
2244 kfree(entry->bitmap);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002245 ctl->total_bitmaps--;
2246 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002247 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002248 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002249 }
2250
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002251 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002252
Chris Masonfa9c0d72009-04-03 09:47:43 -04002253 return ret;
2254}
2255
Josef Bacik96303082009-07-13 21:29:25 -04002256static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2257 struct btrfs_free_space *entry,
2258 struct btrfs_free_cluster *cluster,
2259 u64 offset, u64 bytes, u64 min_bytes)
2260{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002261 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002262 unsigned long next_zero;
2263 unsigned long i;
2264 unsigned long search_bits;
2265 unsigned long total_bits;
2266 unsigned long found_bits;
2267 unsigned long start = 0;
2268 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002269 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002270 bool found = false;
2271
2272 i = offset_to_bit(entry->offset, block_group->sectorsize,
2273 max_t(u64, offset, entry->offset));
Josef Bacikd0a365e2011-03-18 15:27:43 -04002274 search_bits = bytes_to_bits(bytes, block_group->sectorsize);
2275 total_bits = bytes_to_bits(min_bytes, block_group->sectorsize);
Josef Bacik96303082009-07-13 21:29:25 -04002276
2277again:
2278 found_bits = 0;
2279 for (i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, i);
2280 i < BITS_PER_BITMAP;
2281 i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, i + 1)) {
2282 next_zero = find_next_zero_bit(entry->bitmap,
2283 BITS_PER_BITMAP, i);
2284 if (next_zero - i >= search_bits) {
2285 found_bits = next_zero - i;
2286 break;
2287 }
2288 i = next_zero;
2289 }
2290
2291 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002292 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002293
2294 if (!found) {
2295 start = i;
2296 found = true;
2297 }
2298
2299 total_found += found_bits;
2300
2301 if (cluster->max_size < found_bits * block_group->sectorsize)
2302 cluster->max_size = found_bits * block_group->sectorsize;
2303
2304 if (total_found < total_bits) {
2305 i = find_next_bit(entry->bitmap, BITS_PER_BITMAP, next_zero);
2306 if (i - start > total_bits * 2) {
2307 total_found = 0;
2308 cluster->max_size = 0;
2309 found = false;
2310 }
2311 goto again;
2312 }
2313
2314 cluster->window_start = start * block_group->sectorsize +
2315 entry->offset;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002316 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002317 ret = tree_insert_offset(&cluster->root, entry->offset,
2318 &entry->offset_index, 1);
2319 BUG_ON(ret);
Josef Bacik96303082009-07-13 21:29:25 -04002320
2321 return 0;
2322}
2323
Chris Masonfa9c0d72009-04-03 09:47:43 -04002324/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002325 * This searches the block group for just extents to fill the cluster with.
2326 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002327static noinline int
2328setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2329 struct btrfs_free_cluster *cluster,
2330 struct list_head *bitmaps, u64 offset, u64 bytes,
2331 u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002332{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002333 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002334 struct btrfs_free_space *first = NULL;
2335 struct btrfs_free_space *entry = NULL;
2336 struct btrfs_free_space *prev = NULL;
2337 struct btrfs_free_space *last;
2338 struct rb_node *node;
2339 u64 window_start;
2340 u64 window_free;
2341 u64 max_extent;
2342 u64 max_gap = 128 * 1024;
2343
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002344 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002345 if (!entry)
2346 return -ENOSPC;
2347
2348 /*
2349 * We don't want bitmaps, so just move along until we find a normal
2350 * extent entry.
2351 */
2352 while (entry->bitmap) {
Josef Bacik86d4a772011-05-25 13:03:16 -04002353 if (list_empty(&entry->list))
2354 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002355 node = rb_next(&entry->offset_index);
2356 if (!node)
2357 return -ENOSPC;
2358 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2359 }
2360
2361 window_start = entry->offset;
2362 window_free = entry->bytes;
2363 max_extent = entry->bytes;
2364 first = entry;
2365 last = entry;
2366 prev = entry;
2367
2368 while (window_free <= min_bytes) {
2369 node = rb_next(&entry->offset_index);
2370 if (!node)
2371 return -ENOSPC;
2372 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2373
Josef Bacik86d4a772011-05-25 13:03:16 -04002374 if (entry->bitmap) {
2375 if (list_empty(&entry->list))
2376 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002377 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002378 }
2379
Josef Bacik4e69b592011-03-21 10:11:24 -04002380 /*
2381 * we haven't filled the empty size and the window is
2382 * very large. reset and try again
2383 */
2384 if (entry->offset - (prev->offset + prev->bytes) > max_gap ||
2385 entry->offset - window_start > (min_bytes * 2)) {
2386 first = entry;
2387 window_start = entry->offset;
2388 window_free = entry->bytes;
2389 last = entry;
2390 max_extent = entry->bytes;
2391 } else {
2392 last = entry;
2393 window_free += entry->bytes;
2394 if (entry->bytes > max_extent)
2395 max_extent = entry->bytes;
2396 }
2397 prev = entry;
2398 }
2399
2400 cluster->window_start = first->offset;
2401
2402 node = &first->offset_index;
2403
2404 /*
2405 * now we've found our entries, pull them out of the free space
2406 * cache and put them into the cluster rbtree
2407 */
2408 do {
2409 int ret;
2410
2411 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2412 node = rb_next(&entry->offset_index);
2413 if (entry->bitmap)
2414 continue;
2415
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002416 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002417 ret = tree_insert_offset(&cluster->root, entry->offset,
2418 &entry->offset_index, 0);
2419 BUG_ON(ret);
2420 } while (node && entry != last);
2421
2422 cluster->max_size = max_extent;
2423
2424 return 0;
2425}
2426
2427/*
2428 * This specifically looks for bitmaps that may work in the cluster, we assume
2429 * that we have already failed to find extents that will work.
2430 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002431static noinline int
2432setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2433 struct btrfs_free_cluster *cluster,
2434 struct list_head *bitmaps, u64 offset, u64 bytes,
2435 u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002436{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002437 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002438 struct btrfs_free_space *entry;
2439 struct rb_node *node;
2440 int ret = -ENOSPC;
2441
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002442 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002443 return -ENOSPC;
2444
Josef Bacik86d4a772011-05-25 13:03:16 -04002445 /*
2446 * First check our cached list of bitmaps and see if there is an entry
2447 * here that will work.
2448 */
2449 list_for_each_entry(entry, bitmaps, list) {
2450 if (entry->bytes < min_bytes)
2451 continue;
2452 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
2453 bytes, min_bytes);
2454 if (!ret)
2455 return 0;
2456 }
2457
2458 /*
2459 * If we do have entries on our list and we are here then we didn't find
2460 * anything, so go ahead and get the next entry after the last entry in
2461 * this list and start the search from there.
2462 */
2463 if (!list_empty(bitmaps)) {
2464 entry = list_entry(bitmaps->prev, struct btrfs_free_space,
2465 list);
2466 node = rb_next(&entry->offset_index);
2467 if (!node)
2468 return -ENOSPC;
2469 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2470 goto search;
2471 }
2472
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002473 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, offset), 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002474 if (!entry)
2475 return -ENOSPC;
2476
Josef Bacik86d4a772011-05-25 13:03:16 -04002477search:
Josef Bacik4e69b592011-03-21 10:11:24 -04002478 node = &entry->offset_index;
2479 do {
2480 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2481 node = rb_next(&entry->offset_index);
2482 if (!entry->bitmap)
2483 continue;
2484 if (entry->bytes < min_bytes)
2485 continue;
2486 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
2487 bytes, min_bytes);
2488 } while (ret && node);
2489
2490 return ret;
2491}
2492
2493/*
Chris Masonfa9c0d72009-04-03 09:47:43 -04002494 * here we try to find a cluster of blocks in a block group. The goal
2495 * is to find at least bytes free and up to empty_size + bytes free.
2496 * We might not find them all in one contiguous area.
2497 *
2498 * returns zero and sets up cluster if things worked out, otherwise
2499 * it returns -enospc
2500 */
2501int btrfs_find_space_cluster(struct btrfs_trans_handle *trans,
Chris Mason451d7582009-06-09 20:28:34 -04002502 struct btrfs_root *root,
Chris Masonfa9c0d72009-04-03 09:47:43 -04002503 struct btrfs_block_group_cache *block_group,
2504 struct btrfs_free_cluster *cluster,
2505 u64 offset, u64 bytes, u64 empty_size)
2506{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002507 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002508 struct list_head bitmaps;
2509 struct btrfs_free_space *entry, *tmp;
Chris Masonfa9c0d72009-04-03 09:47:43 -04002510 u64 min_bytes;
Chris Masonfa9c0d72009-04-03 09:47:43 -04002511 int ret;
2512
2513 /* for metadata, allow allocates with more holes */
Chris Mason451d7582009-06-09 20:28:34 -04002514 if (btrfs_test_opt(root, SSD_SPREAD)) {
2515 min_bytes = bytes + empty_size;
2516 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04002517 /*
2518 * we want to do larger allocations when we are
2519 * flushing out the delayed refs, it helps prevent
2520 * making more work as we go along.
2521 */
2522 if (trans->transaction->delayed_refs.flushing)
2523 min_bytes = max(bytes, (bytes + empty_size) >> 1);
2524 else
2525 min_bytes = max(bytes, (bytes + empty_size) >> 4);
2526 } else
2527 min_bytes = max(bytes, (bytes + empty_size) >> 2);
2528
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002529 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002530
2531 /*
2532 * If we know we don't have enough space to make a cluster don't even
2533 * bother doing all the work to try and find one.
2534 */
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002535 if (ctl->free_space < min_bytes) {
2536 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002537 return -ENOSPC;
2538 }
2539
Chris Masonfa9c0d72009-04-03 09:47:43 -04002540 spin_lock(&cluster->lock);
2541
2542 /* someone already found a cluster, hooray */
2543 if (cluster->block_group) {
2544 ret = 0;
2545 goto out;
2546 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002547
Josef Bacik86d4a772011-05-25 13:03:16 -04002548 INIT_LIST_HEAD(&bitmaps);
2549 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
2550 bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002551 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002552 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
2553 offset, bytes, min_bytes);
2554
2555 /* Clear our temporary list */
2556 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2557 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002558
2559 if (!ret) {
2560 atomic_inc(&block_group->count);
2561 list_add_tail(&cluster->block_group_list,
2562 &block_group->cluster_list);
2563 cluster->block_group = block_group;
Chris Masonfa9c0d72009-04-03 09:47:43 -04002564 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04002565out:
2566 spin_unlock(&cluster->lock);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002567 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d72009-04-03 09:47:43 -04002568
2569 return ret;
2570}
2571
2572/*
2573 * simple code to zero out a cluster
2574 */
2575void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2576{
2577 spin_lock_init(&cluster->lock);
2578 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002579 cluster->root = RB_ROOT;
Chris Masonfa9c0d72009-04-03 09:47:43 -04002580 cluster->max_size = 0;
2581 INIT_LIST_HEAD(&cluster->block_group_list);
2582 cluster->block_group = NULL;
2583}
2584
Li Dongyangf7039b12011-03-24 10:24:28 +00002585int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2586 u64 *trimmed, u64 start, u64 end, u64 minlen)
2587{
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002588 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Dongyangf7039b12011-03-24 10:24:28 +00002589 struct btrfs_free_space *entry = NULL;
2590 struct btrfs_fs_info *fs_info = block_group->fs_info;
2591 u64 bytes = 0;
2592 u64 actually_trimmed;
2593 int ret = 0;
2594
2595 *trimmed = 0;
2596
2597 while (start < end) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002598 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002599
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002600 if (ctl->free_space < minlen) {
2601 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002602 break;
2603 }
2604
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002605 entry = tree_search_offset(ctl, start, 0, 1);
Li Dongyangf7039b12011-03-24 10:24:28 +00002606 if (!entry)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002607 entry = tree_search_offset(ctl,
2608 offset_to_bitmap(ctl, start),
Li Dongyangf7039b12011-03-24 10:24:28 +00002609 1, 1);
2610
2611 if (!entry || entry->offset >= end) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002612 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002613 break;
2614 }
2615
2616 if (entry->bitmap) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002617 ret = search_bitmap(ctl, entry, &start, &bytes);
Li Dongyangf7039b12011-03-24 10:24:28 +00002618 if (!ret) {
2619 if (start >= end) {
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002620 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002621 break;
2622 }
2623 bytes = min(bytes, end - start);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002624 bitmap_clear_bits(ctl, entry, start, bytes);
Li Dongyangf7039b12011-03-24 10:24:28 +00002625 if (entry->bytes == 0)
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002626 free_bitmap(ctl, entry);
Li Dongyangf7039b12011-03-24 10:24:28 +00002627 } else {
2628 start = entry->offset + BITS_PER_BITMAP *
2629 block_group->sectorsize;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002630 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002631 ret = 0;
2632 continue;
2633 }
2634 } else {
2635 start = entry->offset;
2636 bytes = min(entry->bytes, end - start);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002637 unlink_free_space(ctl, entry);
Li Zefanf789b682011-04-25 19:43:52 -04002638 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Dongyangf7039b12011-03-24 10:24:28 +00002639 }
2640
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002641 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002642
2643 if (bytes >= minlen) {
Josef Bacikfb25e912011-07-26 17:00:46 -04002644 struct btrfs_space_info *space_info;
2645 int update = 0;
2646
2647 space_info = block_group->space_info;
2648 spin_lock(&space_info->lock);
2649 spin_lock(&block_group->lock);
2650 if (!block_group->ro) {
2651 block_group->reserved += bytes;
2652 space_info->bytes_reserved += bytes;
2653 update = 1;
2654 }
2655 spin_unlock(&block_group->lock);
2656 spin_unlock(&space_info->lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002657
2658 ret = btrfs_error_discard_extent(fs_info->extent_root,
2659 start,
2660 bytes,
2661 &actually_trimmed);
2662
Li Zefan34d52cb6c2011-03-29 13:46:06 +08002663 btrfs_add_free_space(block_group, start, bytes);
Josef Bacikfb25e912011-07-26 17:00:46 -04002664 if (update) {
2665 spin_lock(&space_info->lock);
2666 spin_lock(&block_group->lock);
2667 if (block_group->ro)
2668 space_info->bytes_readonly += bytes;
2669 block_group->reserved -= bytes;
2670 space_info->bytes_reserved -= bytes;
2671 spin_unlock(&space_info->lock);
2672 spin_unlock(&block_group->lock);
2673 }
Li Dongyangf7039b12011-03-24 10:24:28 +00002674
2675 if (ret)
2676 break;
2677 *trimmed += actually_trimmed;
2678 }
2679 start += bytes;
2680 bytes = 0;
2681
2682 if (fatal_signal_pending(current)) {
2683 ret = -ERESTARTSYS;
2684 break;
2685 }
2686
2687 cond_resched();
2688 }
2689
2690 return ret;
2691}
Li Zefan581bb052011-04-20 10:06:11 +08002692
2693/*
2694 * Find the left-most item in the cache tree, and then return the
2695 * smallest inode number in the item.
2696 *
2697 * Note: the returned inode number may not be the smallest one in
2698 * the tree, if the left-most item is a bitmap.
2699 */
2700u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2701{
2702 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2703 struct btrfs_free_space *entry = NULL;
2704 u64 ino = 0;
2705
2706 spin_lock(&ctl->tree_lock);
2707
2708 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2709 goto out;
2710
2711 entry = rb_entry(rb_first(&ctl->free_space_offset),
2712 struct btrfs_free_space, offset_index);
2713
2714 if (!entry->bitmap) {
2715 ino = entry->offset;
2716
2717 unlink_free_space(ctl, entry);
2718 entry->offset++;
2719 entry->bytes--;
2720 if (!entry->bytes)
2721 kmem_cache_free(btrfs_free_space_cachep, entry);
2722 else
2723 link_free_space(ctl, entry);
2724 } else {
2725 u64 offset = 0;
2726 u64 count = 1;
2727 int ret;
2728
2729 ret = search_bitmap(ctl, entry, &offset, &count);
2730 BUG_ON(ret);
2731
2732 ino = offset;
2733 bitmap_clear_bits(ctl, entry, offset, 1);
2734 if (entry->bytes == 0)
2735 free_bitmap(ctl, entry);
2736 }
2737out:
2738 spin_unlock(&ctl->tree_lock);
2739
2740 return ino;
2741}
Li Zefan82d59022011-04-20 10:33:24 +08002742
2743struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2744 struct btrfs_path *path)
2745{
2746 struct inode *inode = NULL;
2747
2748 spin_lock(&root->cache_lock);
2749 if (root->cache_inode)
2750 inode = igrab(root->cache_inode);
2751 spin_unlock(&root->cache_lock);
2752 if (inode)
2753 return inode;
2754
2755 inode = __lookup_free_space_inode(root, path, 0);
2756 if (IS_ERR(inode))
2757 return inode;
2758
2759 spin_lock(&root->cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02002760 if (!btrfs_fs_closing(root->fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002761 root->cache_inode = igrab(inode);
2762 spin_unlock(&root->cache_lock);
2763
2764 return inode;
2765}
2766
2767int create_free_ino_inode(struct btrfs_root *root,
2768 struct btrfs_trans_handle *trans,
2769 struct btrfs_path *path)
2770{
2771 return __create_free_space_inode(root, trans, path,
2772 BTRFS_FREE_INO_OBJECTID, 0);
2773}
2774
2775int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2776{
2777 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2778 struct btrfs_path *path;
2779 struct inode *inode;
2780 int ret = 0;
2781 u64 root_gen = btrfs_root_generation(&root->root_item);
2782
Chris Mason4b9465c2011-06-03 09:36:29 -04002783 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2784 return 0;
2785
Li Zefan82d59022011-04-20 10:33:24 +08002786 /*
2787 * If we're unmounting then just return, since this does a search on the
2788 * normal root and not the commit root and we could deadlock.
2789 */
David Sterba7841cb22011-05-31 18:07:27 +02002790 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002791 return 0;
2792
2793 path = btrfs_alloc_path();
2794 if (!path)
2795 return 0;
2796
2797 inode = lookup_free_ino_inode(root, path);
2798 if (IS_ERR(inode))
2799 goto out;
2800
2801 if (root_gen != BTRFS_I(inode)->generation)
2802 goto out_put;
2803
2804 ret = __load_free_space_cache(root, inode, ctl, path, 0);
2805
2806 if (ret < 0)
2807 printk(KERN_ERR "btrfs: failed to load free ino cache for "
2808 "root %llu\n", root->root_key.objectid);
2809out_put:
2810 iput(inode);
2811out:
2812 btrfs_free_path(path);
2813 return ret;
2814}
2815
2816int btrfs_write_out_ino_cache(struct btrfs_root *root,
2817 struct btrfs_trans_handle *trans,
2818 struct btrfs_path *path)
2819{
2820 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2821 struct inode *inode;
2822 int ret;
2823
Chris Mason4b9465c2011-06-03 09:36:29 -04002824 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2825 return 0;
2826
Li Zefan82d59022011-04-20 10:33:24 +08002827 inode = lookup_free_ino_inode(root, path);
2828 if (IS_ERR(inode))
2829 return 0;
2830
2831 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
Josef Bacikc09544e2011-08-30 10:19:10 -04002832 if (ret) {
2833 btrfs_delalloc_release_metadata(inode, inode->i_size);
2834#ifdef DEBUG
Li Zefan82d59022011-04-20 10:33:24 +08002835 printk(KERN_ERR "btrfs: failed to write free ino cache "
2836 "for root %llu\n", root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04002837#endif
2838 }
Li Zefan82d59022011-04-20 10:33:24 +08002839
2840 iput(inode);
2841 return ret;
2842}