blob: 4f419bafd0711055f4c2a1625cd3e482e05d8b10 [file] [log] [blame]
Josef Bacik0f9dd462008-09-23 13:14:11 -04001/*
2 * Copyright (C) 2008 Red Hat. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Josef Bacik96303082009-07-13 21:29:25 -040019#include <linux/pagemap.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040020#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Josef Bacik96303082009-07-13 21:29:25 -040022#include <linux/math64.h>
Josef Bacik6ab60602011-08-08 08:24:46 -040023#include <linux/ratelimit.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040024#include "ctree.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040025#include "free-space-cache.h"
26#include "transaction.h"
Josef Bacik0af3d002010-06-21 14:48:16 -040027#include "disk-io.h"
Josef Bacik43be2142011-04-01 14:55:00 +000028#include "extent_io.h"
Li Zefan581bb052011-04-20 10:06:11 +080029#include "inode-map.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040030
Josef Bacik96303082009-07-13 21:29:25 -040031#define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8)
32#define MAX_CACHE_BYTES_PER_GIG (32 * 1024)
33
Li Zefan34d52cb2011-03-29 13:46:06 +080034static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040035 struct btrfs_free_space *info);
Josef Bacikcd023e72012-05-14 10:06:40 -040036static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
37 struct btrfs_free_space *info);
Josef Bacik0cb59c92010-07-02 12:14:14 -040038
Li Zefan0414efa2011-04-20 10:20:14 +080039static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
40 struct btrfs_path *path,
41 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040042{
43 struct btrfs_key key;
44 struct btrfs_key location;
45 struct btrfs_disk_key disk_key;
46 struct btrfs_free_space_header *header;
47 struct extent_buffer *leaf;
48 struct inode *inode = NULL;
49 int ret;
50
Josef Bacik0af3d002010-06-21 14:48:16 -040051 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080052 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040053 key.type = 0;
54
55 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
56 if (ret < 0)
57 return ERR_PTR(ret);
58 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020059 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040060 return ERR_PTR(-ENOENT);
61 }
62
63 leaf = path->nodes[0];
64 header = btrfs_item_ptr(leaf, path->slots[0],
65 struct btrfs_free_space_header);
66 btrfs_free_space_key(leaf, header, &disk_key);
67 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020068 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040069
70 inode = btrfs_iget(root->fs_info->sb, &location, root, NULL);
71 if (!inode)
72 return ERR_PTR(-ENOENT);
73 if (IS_ERR(inode))
74 return inode;
75 if (is_bad_inode(inode)) {
76 iput(inode);
77 return ERR_PTR(-ENOENT);
78 }
79
Al Viro528c0322012-04-13 11:03:55 -040080 mapping_set_gfp_mask(inode->i_mapping,
81 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
Miao Xieadae52b2011-03-31 09:43:23 +000082
Li Zefan0414efa2011-04-20 10:20:14 +080083 return inode;
84}
85
86struct inode *lookup_free_space_inode(struct btrfs_root *root,
87 struct btrfs_block_group_cache
88 *block_group, struct btrfs_path *path)
89{
90 struct inode *inode = NULL;
Josef Bacik5b0e95b2011-10-06 08:58:24 -040091 u32 flags = BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
Li Zefan0414efa2011-04-20 10:20:14 +080092
93 spin_lock(&block_group->lock);
94 if (block_group->inode)
95 inode = igrab(block_group->inode);
96 spin_unlock(&block_group->lock);
97 if (inode)
98 return inode;
99
100 inode = __lookup_free_space_inode(root, path,
101 block_group->key.objectid);
102 if (IS_ERR(inode))
103 return inode;
104
Josef Bacik0af3d002010-06-21 14:48:16 -0400105 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400106 if (!((BTRFS_I(inode)->flags & flags) == flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000107 btrfs_info(root->fs_info,
108 "Old style space inode found, converting.");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400109 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
110 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400111 block_group->disk_cache_state = BTRFS_DC_CLEAR;
112 }
113
Josef Bacik300e4f82011-08-29 14:06:00 -0400114 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400115 block_group->inode = igrab(inode);
116 block_group->iref = 1;
117 }
118 spin_unlock(&block_group->lock);
119
120 return inode;
121}
122
Eric Sandeen48a3b632013-04-25 20:41:01 +0000123static int __create_free_space_inode(struct btrfs_root *root,
124 struct btrfs_trans_handle *trans,
125 struct btrfs_path *path,
126 u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400127{
128 struct btrfs_key key;
129 struct btrfs_disk_key disk_key;
130 struct btrfs_free_space_header *header;
131 struct btrfs_inode_item *inode_item;
132 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400133 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400134 int ret;
135
Li Zefan0414efa2011-04-20 10:20:14 +0800136 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400137 if (ret)
138 return ret;
139
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400140 /* We inline crc's for the free disk space cache */
141 if (ino != BTRFS_FREE_INO_OBJECTID)
142 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
143
Josef Bacik0af3d002010-06-21 14:48:16 -0400144 leaf = path->nodes[0];
145 inode_item = btrfs_item_ptr(leaf, path->slots[0],
146 struct btrfs_inode_item);
147 btrfs_item_key(leaf, &disk_key, path->slots[0]);
148 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
149 sizeof(*inode_item));
150 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
151 btrfs_set_inode_size(leaf, inode_item, 0);
152 btrfs_set_inode_nbytes(leaf, inode_item, 0);
153 btrfs_set_inode_uid(leaf, inode_item, 0);
154 btrfs_set_inode_gid(leaf, inode_item, 0);
155 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400156 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400157 btrfs_set_inode_nlink(leaf, inode_item, 1);
158 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800159 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400160 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200161 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400162
163 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800164 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400165 key.type = 0;
166
167 ret = btrfs_insert_empty_item(trans, root, path, &key,
168 sizeof(struct btrfs_free_space_header));
169 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200170 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400171 return ret;
172 }
173 leaf = path->nodes[0];
174 header = btrfs_item_ptr(leaf, path->slots[0],
175 struct btrfs_free_space_header);
176 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
177 btrfs_set_free_space_key(leaf, header, &disk_key);
178 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200179 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400180
181 return 0;
182}
183
Li Zefan0414efa2011-04-20 10:20:14 +0800184int create_free_space_inode(struct btrfs_root *root,
185 struct btrfs_trans_handle *trans,
186 struct btrfs_block_group_cache *block_group,
187 struct btrfs_path *path)
188{
189 int ret;
190 u64 ino;
191
192 ret = btrfs_find_free_objectid(root, &ino);
193 if (ret < 0)
194 return ret;
195
196 return __create_free_space_inode(root, trans, path, ino,
197 block_group->key.objectid);
198}
199
Miao Xie7b61cd92013-05-13 13:55:09 +0000200int btrfs_check_trunc_cache_free_space(struct btrfs_root *root,
201 struct btrfs_block_rsv *rsv)
Josef Bacik0af3d002010-06-21 14:48:16 -0400202{
Josef Bacikc8174312011-11-02 09:29:35 -0400203 u64 needed_bytes;
Miao Xie7b61cd92013-05-13 13:55:09 +0000204 int ret;
Josef Bacikc8174312011-11-02 09:29:35 -0400205
206 /* 1 for slack space, 1 for updating the inode */
207 needed_bytes = btrfs_calc_trunc_metadata_size(root, 1) +
208 btrfs_calc_trans_metadata_size(root, 1);
209
Miao Xie7b61cd92013-05-13 13:55:09 +0000210 spin_lock(&rsv->lock);
211 if (rsv->reserved < needed_bytes)
212 ret = -ENOSPC;
213 else
214 ret = 0;
215 spin_unlock(&rsv->lock);
Wei Yongjun4b286cd2013-05-21 02:39:21 +0000216 return ret;
Miao Xie7b61cd92013-05-13 13:55:09 +0000217}
218
219int btrfs_truncate_free_space_cache(struct btrfs_root *root,
220 struct btrfs_trans_handle *trans,
221 struct btrfs_path *path,
222 struct inode *inode)
223{
224 loff_t oldsize;
225 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -0400226
227 oldsize = i_size_read(inode);
228 btrfs_i_size_write(inode, 0);
229 truncate_pagecache(inode, oldsize, 0);
230
231 /*
232 * We don't need an orphan item because truncating the free space cache
233 * will never be split across transactions.
234 */
235 ret = btrfs_truncate_inode_items(trans, root, inode,
236 0, BTRFS_EXTENT_DATA_KEY);
237 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100238 btrfs_abort_transaction(trans, root, ret);
Josef Bacik0af3d002010-06-21 14:48:16 -0400239 return ret;
240 }
241
Li Zefan82d59022011-04-20 10:33:24 +0800242 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100243 if (ret)
244 btrfs_abort_transaction(trans, root, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400245
Li Zefan82d59022011-04-20 10:33:24 +0800246 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400247}
248
Josef Bacik9d66e232010-08-25 16:54:15 -0400249static int readahead_cache(struct inode *inode)
250{
251 struct file_ra_state *ra;
252 unsigned long last_index;
253
254 ra = kzalloc(sizeof(*ra), GFP_NOFS);
255 if (!ra)
256 return -ENOMEM;
257
258 file_ra_state_init(ra, inode->i_mapping);
259 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
260
261 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
262
263 kfree(ra);
264
265 return 0;
266}
267
Josef Bacika67509c2011-10-05 15:18:58 -0400268struct io_ctl {
269 void *cur, *orig;
270 struct page *page;
271 struct page **pages;
272 struct btrfs_root *root;
273 unsigned long size;
274 int index;
275 int num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400276 unsigned check_crcs:1;
Josef Bacika67509c2011-10-05 15:18:58 -0400277};
278
279static int io_ctl_init(struct io_ctl *io_ctl, struct inode *inode,
280 struct btrfs_root *root)
281{
282 memset(io_ctl, 0, sizeof(struct io_ctl));
283 io_ctl->num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
284 PAGE_CACHE_SHIFT;
285 io_ctl->pages = kzalloc(sizeof(struct page *) * io_ctl->num_pages,
286 GFP_NOFS);
287 if (!io_ctl->pages)
288 return -ENOMEM;
289 io_ctl->root = root;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400290 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
291 io_ctl->check_crcs = 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400292 return 0;
293}
294
295static void io_ctl_free(struct io_ctl *io_ctl)
296{
297 kfree(io_ctl->pages);
298}
299
300static void io_ctl_unmap_page(struct io_ctl *io_ctl)
301{
302 if (io_ctl->cur) {
303 kunmap(io_ctl->page);
304 io_ctl->cur = NULL;
305 io_ctl->orig = NULL;
306 }
307}
308
309static void io_ctl_map_page(struct io_ctl *io_ctl, int clear)
310{
Josef Bacikb12d6862013-08-26 17:14:08 -0400311 ASSERT(io_ctl->index < io_ctl->num_pages);
Josef Bacika67509c2011-10-05 15:18:58 -0400312 io_ctl->page = io_ctl->pages[io_ctl->index++];
313 io_ctl->cur = kmap(io_ctl->page);
314 io_ctl->orig = io_ctl->cur;
315 io_ctl->size = PAGE_CACHE_SIZE;
316 if (clear)
317 memset(io_ctl->cur, 0, PAGE_CACHE_SIZE);
318}
319
320static void io_ctl_drop_pages(struct io_ctl *io_ctl)
321{
322 int i;
323
324 io_ctl_unmap_page(io_ctl);
325
326 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800327 if (io_ctl->pages[i]) {
328 ClearPageChecked(io_ctl->pages[i]);
329 unlock_page(io_ctl->pages[i]);
330 page_cache_release(io_ctl->pages[i]);
331 }
Josef Bacika67509c2011-10-05 15:18:58 -0400332 }
333}
334
335static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct inode *inode,
336 int uptodate)
337{
338 struct page *page;
339 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
340 int i;
341
342 for (i = 0; i < io_ctl->num_pages; i++) {
343 page = find_or_create_page(inode->i_mapping, i, mask);
344 if (!page) {
345 io_ctl_drop_pages(io_ctl);
346 return -ENOMEM;
347 }
348 io_ctl->pages[i] = page;
349 if (uptodate && !PageUptodate(page)) {
350 btrfs_readpage(NULL, page);
351 lock_page(page);
352 if (!PageUptodate(page)) {
353 printk(KERN_ERR "btrfs: error reading free "
354 "space cache\n");
355 io_ctl_drop_pages(io_ctl);
356 return -EIO;
357 }
358 }
359 }
360
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500361 for (i = 0; i < io_ctl->num_pages; i++) {
362 clear_page_dirty_for_io(io_ctl->pages[i]);
363 set_page_extent_mapped(io_ctl->pages[i]);
364 }
365
Josef Bacika67509c2011-10-05 15:18:58 -0400366 return 0;
367}
368
369static void io_ctl_set_generation(struct io_ctl *io_ctl, u64 generation)
370{
Al Viro528c0322012-04-13 11:03:55 -0400371 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400372
373 io_ctl_map_page(io_ctl, 1);
374
375 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400376 * Skip the csum areas. If we don't check crcs then we just have a
377 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400378 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400379 if (io_ctl->check_crcs) {
380 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
381 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
382 } else {
383 io_ctl->cur += sizeof(u64);
384 io_ctl->size -= sizeof(u64) * 2;
385 }
Josef Bacika67509c2011-10-05 15:18:58 -0400386
387 val = io_ctl->cur;
388 *val = cpu_to_le64(generation);
389 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400390}
391
392static int io_ctl_check_generation(struct io_ctl *io_ctl, u64 generation)
393{
Al Viro528c0322012-04-13 11:03:55 -0400394 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400395
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400396 /*
397 * Skip the crc area. If we don't check crcs then we just have a 64bit
398 * chunk at the front of the first page.
399 */
400 if (io_ctl->check_crcs) {
401 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
402 io_ctl->size -= sizeof(u64) +
403 (sizeof(u32) * io_ctl->num_pages);
404 } else {
405 io_ctl->cur += sizeof(u64);
406 io_ctl->size -= sizeof(u64) * 2;
407 }
Josef Bacika67509c2011-10-05 15:18:58 -0400408
Josef Bacika67509c2011-10-05 15:18:58 -0400409 gen = io_ctl->cur;
410 if (le64_to_cpu(*gen) != generation) {
411 printk_ratelimited(KERN_ERR "btrfs: space cache generation "
412 "(%Lu) does not match inode (%Lu)\n", *gen,
413 generation);
414 io_ctl_unmap_page(io_ctl);
415 return -EIO;
416 }
417 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400418 return 0;
419}
420
421static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
422{
423 u32 *tmp;
424 u32 crc = ~(u32)0;
425 unsigned offset = 0;
426
427 if (!io_ctl->check_crcs) {
428 io_ctl_unmap_page(io_ctl);
429 return;
430 }
431
432 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800433 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400434
Liu Bob0496682013-03-14 14:57:45 +0000435 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400436 PAGE_CACHE_SIZE - offset);
437 btrfs_csum_final(crc, (char *)&crc);
438 io_ctl_unmap_page(io_ctl);
439 tmp = kmap(io_ctl->pages[0]);
440 tmp += index;
441 *tmp = crc;
442 kunmap(io_ctl->pages[0]);
443}
444
445static int io_ctl_check_crc(struct io_ctl *io_ctl, int index)
446{
447 u32 *tmp, val;
448 u32 crc = ~(u32)0;
449 unsigned offset = 0;
450
451 if (!io_ctl->check_crcs) {
452 io_ctl_map_page(io_ctl, 0);
453 return 0;
454 }
455
456 if (index == 0)
457 offset = sizeof(u32) * io_ctl->num_pages;
458
459 tmp = kmap(io_ctl->pages[0]);
460 tmp += index;
461 val = *tmp;
462 kunmap(io_ctl->pages[0]);
463
464 io_ctl_map_page(io_ctl, 0);
Liu Bob0496682013-03-14 14:57:45 +0000465 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400466 PAGE_CACHE_SIZE - offset);
467 btrfs_csum_final(crc, (char *)&crc);
468 if (val != crc) {
469 printk_ratelimited(KERN_ERR "btrfs: csum mismatch on free "
470 "space cache\n");
471 io_ctl_unmap_page(io_ctl);
472 return -EIO;
473 }
474
Josef Bacika67509c2011-10-05 15:18:58 -0400475 return 0;
476}
477
478static int io_ctl_add_entry(struct io_ctl *io_ctl, u64 offset, u64 bytes,
479 void *bitmap)
480{
481 struct btrfs_free_space_entry *entry;
482
483 if (!io_ctl->cur)
484 return -ENOSPC;
485
486 entry = io_ctl->cur;
487 entry->offset = cpu_to_le64(offset);
488 entry->bytes = cpu_to_le64(bytes);
489 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
490 BTRFS_FREE_SPACE_EXTENT;
491 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
492 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
493
494 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
495 return 0;
496
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400497 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400498
499 /* No more pages to map */
500 if (io_ctl->index >= io_ctl->num_pages)
501 return 0;
502
503 /* map the next page */
504 io_ctl_map_page(io_ctl, 1);
505 return 0;
506}
507
508static int io_ctl_add_bitmap(struct io_ctl *io_ctl, void *bitmap)
509{
510 if (!io_ctl->cur)
511 return -ENOSPC;
512
513 /*
514 * If we aren't at the start of the current page, unmap this one and
515 * map the next one if there is any left.
516 */
517 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400518 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400519 if (io_ctl->index >= io_ctl->num_pages)
520 return -ENOSPC;
521 io_ctl_map_page(io_ctl, 0);
522 }
523
524 memcpy(io_ctl->cur, bitmap, PAGE_CACHE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400525 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400526 if (io_ctl->index < io_ctl->num_pages)
527 io_ctl_map_page(io_ctl, 0);
528 return 0;
529}
530
531static void io_ctl_zero_remaining_pages(struct io_ctl *io_ctl)
532{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400533 /*
534 * If we're not on the boundary we know we've modified the page and we
535 * need to crc the page.
536 */
537 if (io_ctl->cur != io_ctl->orig)
538 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
539 else
540 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400541
542 while (io_ctl->index < io_ctl->num_pages) {
543 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400544 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400545 }
546}
547
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400548static int io_ctl_read_entry(struct io_ctl *io_ctl,
549 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400550{
551 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500552 int ret;
553
554 if (!io_ctl->cur) {
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
560 e = io_ctl->cur;
561 entry->offset = le64_to_cpu(e->offset);
562 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400563 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400564 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
565 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
566
567 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400568 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400569
570 io_ctl_unmap_page(io_ctl);
571
Josef Bacik2f120c02011-11-10 20:45:05 -0500572 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400573}
574
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400575static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
576 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400577{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400578 int ret;
579
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400580 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
581 if (ret)
582 return ret;
583
Josef Bacika67509c2011-10-05 15:18:58 -0400584 memcpy(entry->bitmap, io_ctl->cur, PAGE_CACHE_SIZE);
585 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400586
587 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400588}
589
Josef Bacikcd023e72012-05-14 10:06:40 -0400590/*
591 * Since we attach pinned extents after the fact we can have contiguous sections
592 * of free space that are split up in entries. This poses a problem with the
593 * tree logging stuff since it could have allocated across what appears to be 2
594 * entries since we would have merged the entries when adding the pinned extents
595 * back to the free space cache. So run through the space cache that we just
596 * loaded and merge contiguous entries. This will make the log replay stuff not
597 * blow up and it will make for nicer allocator behavior.
598 */
599static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
600{
601 struct btrfs_free_space *e, *prev = NULL;
602 struct rb_node *n;
603
604again:
605 spin_lock(&ctl->tree_lock);
606 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
607 e = rb_entry(n, struct btrfs_free_space, offset_index);
608 if (!prev)
609 goto next;
610 if (e->bitmap || prev->bitmap)
611 goto next;
612 if (prev->offset + prev->bytes == e->offset) {
613 unlink_free_space(ctl, prev);
614 unlink_free_space(ctl, e);
615 prev->bytes += e->bytes;
616 kmem_cache_free(btrfs_free_space_cachep, e);
617 link_free_space(ctl, prev);
618 prev = NULL;
619 spin_unlock(&ctl->tree_lock);
620 goto again;
621 }
622next:
623 prev = e;
624 }
625 spin_unlock(&ctl->tree_lock);
626}
627
Eric Sandeen48a3b632013-04-25 20:41:01 +0000628static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
629 struct btrfs_free_space_ctl *ctl,
630 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400631{
Josef Bacik9d66e232010-08-25 16:54:15 -0400632 struct btrfs_free_space_header *header;
633 struct extent_buffer *leaf;
Josef Bacika67509c2011-10-05 15:18:58 -0400634 struct io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400635 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400636 struct btrfs_free_space *e, *n;
Josef Bacik9d66e232010-08-25 16:54:15 -0400637 struct list_head bitmaps;
638 u64 num_entries;
639 u64 num_bitmaps;
640 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400641 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400642 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400643
644 INIT_LIST_HEAD(&bitmaps);
645
Josef Bacik9d66e232010-08-25 16:54:15 -0400646 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800647 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400648 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400649
650 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800651 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400652 key.type = 0;
653
654 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800655 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400656 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800657 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400658 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400659 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400660 }
661
Li Zefan0414efa2011-04-20 10:20:14 +0800662 ret = -1;
663
Josef Bacik9d66e232010-08-25 16:54:15 -0400664 leaf = path->nodes[0];
665 header = btrfs_item_ptr(leaf, path->slots[0],
666 struct btrfs_free_space_header);
667 num_entries = btrfs_free_space_entries(leaf, header);
668 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
669 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400670 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400671
672 if (BTRFS_I(inode)->generation != generation) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000673 btrfs_err(root->fs_info,
674 "free space inode generation (%llu) "
675 "did not match free space cache generation (%llu)",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200676 BTRFS_I(inode)->generation, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400677 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400678 }
679
680 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400681 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400682
Li Zefan706efc62012-01-09 14:36:28 +0800683 ret = io_ctl_init(&io_ctl, inode, root);
684 if (ret)
685 return ret;
686
Josef Bacik9d66e232010-08-25 16:54:15 -0400687 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800688 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400689 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400690
Josef Bacika67509c2011-10-05 15:18:58 -0400691 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
692 if (ret)
693 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400694
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400695 ret = io_ctl_check_crc(&io_ctl, 0);
696 if (ret)
697 goto free_cache;
698
Josef Bacika67509c2011-10-05 15:18:58 -0400699 ret = io_ctl_check_generation(&io_ctl, generation);
700 if (ret)
701 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400702
Josef Bacika67509c2011-10-05 15:18:58 -0400703 while (num_entries) {
704 e = kmem_cache_zalloc(btrfs_free_space_cachep,
705 GFP_NOFS);
706 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400707 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400708
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400709 ret = io_ctl_read_entry(&io_ctl, e, &type);
710 if (ret) {
711 kmem_cache_free(btrfs_free_space_cachep, e);
712 goto free_cache;
713 }
714
Josef Bacika67509c2011-10-05 15:18:58 -0400715 if (!e->bytes) {
716 kmem_cache_free(btrfs_free_space_cachep, e);
717 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400718 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400719
Josef Bacika67509c2011-10-05 15:18:58 -0400720 if (type == BTRFS_FREE_SPACE_EXTENT) {
721 spin_lock(&ctl->tree_lock);
722 ret = link_free_space(ctl, e);
723 spin_unlock(&ctl->tree_lock);
724 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000725 btrfs_err(root->fs_info,
726 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500727 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400728 goto free_cache;
729 }
Josef Bacika67509c2011-10-05 15:18:58 -0400730 } else {
Josef Bacikb12d6862013-08-26 17:14:08 -0400731 ASSERT(num_bitmaps);
Josef Bacika67509c2011-10-05 15:18:58 -0400732 num_bitmaps--;
733 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
734 if (!e->bitmap) {
735 kmem_cache_free(
736 btrfs_free_space_cachep, e);
737 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400738 }
Josef Bacika67509c2011-10-05 15:18:58 -0400739 spin_lock(&ctl->tree_lock);
740 ret = link_free_space(ctl, e);
741 ctl->total_bitmaps++;
742 ctl->op->recalc_thresholds(ctl);
743 spin_unlock(&ctl->tree_lock);
744 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000745 btrfs_err(root->fs_info,
746 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400747 kmem_cache_free(btrfs_free_space_cachep, e);
748 goto free_cache;
749 }
750 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400751 }
752
Josef Bacika67509c2011-10-05 15:18:58 -0400753 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400754 }
755
Josef Bacik2f120c02011-11-10 20:45:05 -0500756 io_ctl_unmap_page(&io_ctl);
757
Josef Bacika67509c2011-10-05 15:18:58 -0400758 /*
759 * We add the bitmaps at the end of the entries in order that
760 * the bitmap entries are added to the cache.
761 */
762 list_for_each_entry_safe(e, n, &bitmaps, list) {
763 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400764 ret = io_ctl_read_bitmap(&io_ctl, e);
765 if (ret)
766 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400767 }
768
769 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400770 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400771 ret = 1;
772out:
Josef Bacika67509c2011-10-05 15:18:58 -0400773 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400774 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400775free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400776 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800777 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400778 goto out;
779}
780
Li Zefan0414efa2011-04-20 10:20:14 +0800781int load_free_space_cache(struct btrfs_fs_info *fs_info,
782 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400783{
Li Zefan34d52cb2011-03-29 13:46:06 +0800784 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800785 struct btrfs_root *root = fs_info->tree_root;
786 struct inode *inode;
787 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400788 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800789 bool matched;
790 u64 used = btrfs_block_group_used(&block_group->item);
791
792 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800793 * If this block group has been marked to be cleared for one reason or
794 * another then we can't trust the on disk cache, so just return.
795 */
796 spin_lock(&block_group->lock);
797 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
798 spin_unlock(&block_group->lock);
799 return 0;
800 }
801 spin_unlock(&block_group->lock);
802
803 path = btrfs_alloc_path();
804 if (!path)
805 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400806 path->search_commit_root = 1;
807 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800808
809 inode = lookup_free_space_inode(root, block_group, path);
810 if (IS_ERR(inode)) {
811 btrfs_free_path(path);
812 return 0;
813 }
814
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400815 /* We may have converted the inode and made the cache invalid. */
816 spin_lock(&block_group->lock);
817 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
818 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900819 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400820 goto out;
821 }
822 spin_unlock(&block_group->lock);
823
Li Zefan0414efa2011-04-20 10:20:14 +0800824 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
825 path, block_group->key.objectid);
826 btrfs_free_path(path);
827 if (ret <= 0)
828 goto out;
829
830 spin_lock(&ctl->tree_lock);
831 matched = (ctl->free_space == (block_group->key.offset - used -
832 block_group->bytes_super));
833 spin_unlock(&ctl->tree_lock);
834
835 if (!matched) {
836 __btrfs_remove_free_space_cache(ctl);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000837 btrfs_err(fs_info, "block group %llu has wrong amount of free space",
838 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800839 ret = -1;
840 }
841out:
842 if (ret < 0) {
843 /* This cache is bogus, make sure it gets cleared */
844 spin_lock(&block_group->lock);
845 block_group->disk_cache_state = BTRFS_DC_CLEAR;
846 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800847 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800848
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000849 btrfs_err(fs_info, "failed to load free space cache for block group %llu",
850 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800851 }
852
853 iput(inode);
854 return ret;
855}
856
Josef Bacikc09544e2011-08-30 10:19:10 -0400857/**
858 * __btrfs_write_out_cache - write out cached info to an inode
859 * @root - the root the inode belongs to
860 * @ctl - the free space cache we are going to write out
861 * @block_group - the block_group for this cache if it belongs to a block_group
862 * @trans - the trans handle
863 * @path - the path to use
864 * @offset - the offset for the key we'll insert
865 *
866 * This function writes out a free space cache struct to disk for quick recovery
867 * on mount. This will return 0 if it was successfull in writing the cache out,
868 * and -1 if it was not.
869 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000870static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
871 struct btrfs_free_space_ctl *ctl,
872 struct btrfs_block_group_cache *block_group,
873 struct btrfs_trans_handle *trans,
874 struct btrfs_path *path, u64 offset)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400875{
876 struct btrfs_free_space_header *header;
877 struct extent_buffer *leaf;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400878 struct rb_node *node;
879 struct list_head *pos, *n;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400880 struct extent_state *cached_state = NULL;
Josef Bacik43be2142011-04-01 14:55:00 +0000881 struct btrfs_free_cluster *cluster = NULL;
882 struct extent_io_tree *unpin = NULL;
Josef Bacika67509c2011-10-05 15:18:58 -0400883 struct io_ctl io_ctl;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400884 struct list_head bitmap_list;
885 struct btrfs_key key;
Li Zefandb804f22012-01-10 16:41:01 +0800886 u64 start, extent_start, extent_end, len;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400887 int entries = 0;
888 int bitmaps = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -0400889 int ret;
890 int err = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400891
Josef Bacik0cb59c92010-07-02 12:14:14 -0400892 INIT_LIST_HEAD(&bitmap_list);
893
Li Zefan0414efa2011-04-20 10:20:14 +0800894 if (!i_size_read(inode))
895 return -1;
Josef Bacik2b209822010-12-03 13:17:53 -0500896
Li Zefan706efc62012-01-09 14:36:28 +0800897 ret = io_ctl_init(&io_ctl, inode, root);
898 if (ret)
899 return -1;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400900
Josef Bacik43be2142011-04-01 14:55:00 +0000901 /* Get the cluster for this block_group if it exists */
Li Zefan0414efa2011-04-20 10:20:14 +0800902 if (block_group && !list_empty(&block_group->cluster_list))
Josef Bacik43be2142011-04-01 14:55:00 +0000903 cluster = list_entry(block_group->cluster_list.next,
904 struct btrfs_free_cluster,
905 block_group_list);
906
Josef Bacika67509c2011-10-05 15:18:58 -0400907 /* Lock all pages first so we can lock the extent safely. */
908 io_ctl_prepare_pages(&io_ctl, inode, 0);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400909
Josef Bacik0cb59c92010-07-02 12:14:14 -0400910 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100911 0, &cached_state);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400912
Josef Bacikf75b1302011-10-05 10:00:18 -0400913 node = rb_first(&ctl->free_space_offset);
914 if (!node && cluster) {
915 node = rb_first(&cluster->root);
916 cluster = NULL;
917 }
918
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400919 /* Make sure we can fit our crcs into the first page */
920 if (io_ctl.check_crcs &&
Josef Bacik73e1e612013-05-08 16:44:57 -0400921 (io_ctl.num_pages * sizeof(u32)) >= PAGE_CACHE_SIZE)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400922 goto out_nospc;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400923
Josef Bacika67509c2011-10-05 15:18:58 -0400924 io_ctl_set_generation(&io_ctl, trans->transid);
925
Josef Bacik0cb59c92010-07-02 12:14:14 -0400926 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400927 while (node) {
928 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400929
Josef Bacika67509c2011-10-05 15:18:58 -0400930 e = rb_entry(node, struct btrfs_free_space, offset_index);
931 entries++;
Josef Bacik43be2142011-04-01 14:55:00 +0000932
Josef Bacika67509c2011-10-05 15:18:58 -0400933 ret = io_ctl_add_entry(&io_ctl, e->offset, e->bytes,
934 e->bitmap);
935 if (ret)
936 goto out_nospc;
937
938 if (e->bitmap) {
939 list_add_tail(&e->list, &bitmap_list);
940 bitmaps++;
941 }
942 node = rb_next(node);
943 if (!node && cluster) {
944 node = rb_first(&cluster->root);
945 cluster = NULL;
946 }
947 }
948
949 /*
950 * We want to add any pinned extents to our free space cache
951 * so we don't leak the space
952 */
Li Zefandb804f22012-01-10 16:41:01 +0800953
954 /*
955 * We shouldn't have switched the pinned extents yet so this is the
956 * right one
957 */
958 unpin = root->fs_info->pinned_extents;
959
960 if (block_group)
961 start = block_group->key.objectid;
962
Josef Bacika67509c2011-10-05 15:18:58 -0400963 while (block_group && (start < block_group->key.objectid +
964 block_group->key.offset)) {
Li Zefandb804f22012-01-10 16:41:01 +0800965 ret = find_first_extent_bit(unpin, start,
966 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400967 EXTENT_DIRTY, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400968 if (ret) {
969 ret = 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400970 break;
971 }
972
Josef Bacika67509c2011-10-05 15:18:58 -0400973 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +0800974 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -0400975 block_group->key.offset)
976 break;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400977
Li Zefandb804f22012-01-10 16:41:01 +0800978 extent_start = max(extent_start, start);
979 extent_end = min(block_group->key.objectid +
980 block_group->key.offset, extent_end + 1);
981 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400982
Josef Bacika67509c2011-10-05 15:18:58 -0400983 entries++;
Li Zefandb804f22012-01-10 16:41:01 +0800984 ret = io_ctl_add_entry(&io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400985 if (ret)
986 goto out_nospc;
Josef Bacik2f356122011-06-10 15:31:13 -0400987
Li Zefandb804f22012-01-10 16:41:01 +0800988 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -0400989 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400990
991 /* Write out the bitmaps */
992 list_for_each_safe(pos, n, &bitmap_list) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400993 struct btrfs_free_space *entry =
994 list_entry(pos, struct btrfs_free_space, list);
995
Josef Bacika67509c2011-10-05 15:18:58 -0400996 ret = io_ctl_add_bitmap(&io_ctl, entry->bitmap);
997 if (ret)
998 goto out_nospc;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400999 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001000 }
1001
Josef Bacik0cb59c92010-07-02 12:14:14 -04001002 /* Zero out the rest of the pages just to make sure */
Josef Bacika67509c2011-10-05 15:18:58 -04001003 io_ctl_zero_remaining_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001004
Josef Bacika67509c2011-10-05 15:18:58 -04001005 ret = btrfs_dirty_pages(root, inode, io_ctl.pages, io_ctl.num_pages,
1006 0, i_size_read(inode), &cached_state);
1007 io_ctl_drop_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001008 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1009 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1010
Josef Bacikc09544e2011-08-30 10:19:10 -04001011 if (ret)
Josef Bacik2f356122011-06-10 15:31:13 -04001012 goto out;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001013
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001014
Josef Bacik5fd02042012-05-02 14:00:54 -04001015 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001016
1017 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +08001018 key.offset = offset;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001019 key.type = 0;
1020
Josef Bacika9b5fcd2011-08-19 12:06:12 -04001021 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001022 if (ret < 0) {
Josef Bacika67509c2011-10-05 15:18:58 -04001023 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001024 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1025 GFP_NOFS);
Josef Bacik2f356122011-06-10 15:31:13 -04001026 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001027 }
1028 leaf = path->nodes[0];
1029 if (ret > 0) {
1030 struct btrfs_key found_key;
Josef Bacikb12d6862013-08-26 17:14:08 -04001031 ASSERT(path->slots[0]);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001032 path->slots[0]--;
1033 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1034 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
Li Zefan0414efa2011-04-20 10:20:14 +08001035 found_key.offset != offset) {
Josef Bacika67509c2011-10-05 15:18:58 -04001036 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
1037 inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001038 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
1039 NULL, GFP_NOFS);
David Sterbab3b4aa72011-04-21 01:20:15 +02001040 btrfs_release_path(path);
Josef Bacik2f356122011-06-10 15:31:13 -04001041 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001042 }
1043 }
Josef Bacik549b4fd2011-10-05 16:33:53 -04001044
1045 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001046 header = btrfs_item_ptr(leaf, path->slots[0],
1047 struct btrfs_free_space_header);
1048 btrfs_set_free_space_entries(leaf, header, entries);
1049 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
1050 btrfs_set_free_space_generation(leaf, header, trans->transid);
1051 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02001052 btrfs_release_path(path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001053
Josef Bacikc09544e2011-08-30 10:19:10 -04001054 err = 0;
Josef Bacik2f356122011-06-10 15:31:13 -04001055out:
Josef Bacika67509c2011-10-05 15:18:58 -04001056 io_ctl_free(&io_ctl);
Josef Bacikc09544e2011-08-30 10:19:10 -04001057 if (err) {
Josef Bacika67509c2011-10-05 15:18:58 -04001058 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001059 BTRFS_I(inode)->generation = 0;
1060 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001061 btrfs_update_inode(trans, root, inode);
Josef Bacikc09544e2011-08-30 10:19:10 -04001062 return err;
Josef Bacika67509c2011-10-05 15:18:58 -04001063
1064out_nospc:
1065 list_for_each_safe(pos, n, &bitmap_list) {
1066 struct btrfs_free_space *entry =
1067 list_entry(pos, struct btrfs_free_space, list);
1068 list_del_init(&entry->list);
1069 }
1070 io_ctl_drop_pages(&io_ctl);
1071 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1072 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1073 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001074}
1075
1076int btrfs_write_out_cache(struct btrfs_root *root,
1077 struct btrfs_trans_handle *trans,
1078 struct btrfs_block_group_cache *block_group,
1079 struct btrfs_path *path)
1080{
1081 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1082 struct inode *inode;
1083 int ret = 0;
1084
1085 root = root->fs_info->tree_root;
1086
1087 spin_lock(&block_group->lock);
1088 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1089 spin_unlock(&block_group->lock);
1090 return 0;
1091 }
1092 spin_unlock(&block_group->lock);
1093
1094 inode = lookup_free_space_inode(root, block_group, path);
1095 if (IS_ERR(inode))
1096 return 0;
1097
1098 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
1099 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001100 if (ret) {
Li Zefan0414efa2011-04-20 10:20:14 +08001101 spin_lock(&block_group->lock);
1102 block_group->disk_cache_state = BTRFS_DC_ERROR;
1103 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +08001104 ret = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04001105#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00001106 btrfs_err(root->fs_info,
1107 "failed to write free space cache for block group %llu",
1108 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001109#endif
Li Zefan0414efa2011-04-20 10:20:14 +08001110 }
1111
Josef Bacik0cb59c92010-07-02 12:14:14 -04001112 iput(inode);
1113 return ret;
1114}
1115
Li Zefan34d52cb2011-03-29 13:46:06 +08001116static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001117 u64 offset)
1118{
Josef Bacikb12d6862013-08-26 17:14:08 -04001119 ASSERT(offset >= bitmap_start);
Josef Bacik96303082009-07-13 21:29:25 -04001120 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001121 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001122}
1123
Li Zefan34d52cb2011-03-29 13:46:06 +08001124static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001125{
Li Zefan34d52cb2011-03-29 13:46:06 +08001126 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001127}
1128
Li Zefan34d52cb2011-03-29 13:46:06 +08001129static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001130 u64 offset)
1131{
1132 u64 bitmap_start;
1133 u64 bytes_per_bitmap;
1134
Li Zefan34d52cb2011-03-29 13:46:06 +08001135 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1136 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001137 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
1138 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001139 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001140
1141 return bitmap_start;
1142}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001143
1144static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001145 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001146{
1147 struct rb_node **p = &root->rb_node;
1148 struct rb_node *parent = NULL;
1149 struct btrfs_free_space *info;
1150
1151 while (*p) {
1152 parent = *p;
1153 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1154
Josef Bacik96303082009-07-13 21:29:25 -04001155 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001156 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001157 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001158 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001159 } else {
1160 /*
1161 * we could have a bitmap entry and an extent entry
1162 * share the same offset. If this is the case, we want
1163 * the extent entry to always be found first if we do a
1164 * linear search through the tree, since we want to have
1165 * the quickest allocation time, and allocating from an
1166 * extent is faster than allocating from a bitmap. So
1167 * if we're inserting a bitmap and we find an entry at
1168 * this offset, we want to go right, or after this entry
1169 * logically. If we are inserting an extent and we've
1170 * found a bitmap, we want to go left, or before
1171 * logically.
1172 */
1173 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001174 if (info->bitmap) {
1175 WARN_ON_ONCE(1);
1176 return -EEXIST;
1177 }
Josef Bacik96303082009-07-13 21:29:25 -04001178 p = &(*p)->rb_right;
1179 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001180 if (!info->bitmap) {
1181 WARN_ON_ONCE(1);
1182 return -EEXIST;
1183 }
Josef Bacik96303082009-07-13 21:29:25 -04001184 p = &(*p)->rb_left;
1185 }
1186 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001187 }
1188
1189 rb_link_node(node, parent, p);
1190 rb_insert_color(node, root);
1191
1192 return 0;
1193}
1194
1195/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001196 * searches the tree for the given offset.
1197 *
Josef Bacik96303082009-07-13 21:29:25 -04001198 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1199 * want a section that has at least bytes size and comes at or after the given
1200 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001201 */
Josef Bacik96303082009-07-13 21:29:25 -04001202static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001203tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001204 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001205{
Li Zefan34d52cb2011-03-29 13:46:06 +08001206 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001207 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001208
Josef Bacik96303082009-07-13 21:29:25 -04001209 /* find entry that is closest to the 'offset' */
1210 while (1) {
1211 if (!n) {
1212 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001213 break;
1214 }
Josef Bacik96303082009-07-13 21:29:25 -04001215
1216 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1217 prev = entry;
1218
1219 if (offset < entry->offset)
1220 n = n->rb_left;
1221 else if (offset > entry->offset)
1222 n = n->rb_right;
1223 else
1224 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001225 }
1226
Josef Bacik96303082009-07-13 21:29:25 -04001227 if (bitmap_only) {
1228 if (!entry)
1229 return NULL;
1230 if (entry->bitmap)
1231 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001232
Josef Bacik96303082009-07-13 21:29:25 -04001233 /*
1234 * bitmap entry and extent entry may share same offset,
1235 * in that case, bitmap entry comes after extent entry.
1236 */
1237 n = rb_next(n);
1238 if (!n)
1239 return NULL;
1240 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1241 if (entry->offset != offset)
1242 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001243
Josef Bacik96303082009-07-13 21:29:25 -04001244 WARN_ON(!entry->bitmap);
1245 return entry;
1246 } else if (entry) {
1247 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001248 /*
Josef Bacik96303082009-07-13 21:29:25 -04001249 * if previous extent entry covers the offset,
1250 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001251 */
Miao Xiede6c4112012-10-18 08:18:01 +00001252 n = rb_prev(&entry->offset_index);
1253 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001254 prev = rb_entry(n, struct btrfs_free_space,
1255 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001256 if (!prev->bitmap &&
1257 prev->offset + prev->bytes > offset)
1258 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001259 }
Josef Bacik96303082009-07-13 21:29:25 -04001260 }
1261 return entry;
1262 }
1263
1264 if (!prev)
1265 return NULL;
1266
1267 /* find last entry before the 'offset' */
1268 entry = prev;
1269 if (entry->offset > offset) {
1270 n = rb_prev(&entry->offset_index);
1271 if (n) {
1272 entry = rb_entry(n, struct btrfs_free_space,
1273 offset_index);
Josef Bacikb12d6862013-08-26 17:14:08 -04001274 ASSERT(entry->offset <= offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001275 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001276 if (fuzzy)
1277 return entry;
1278 else
1279 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001280 }
1281 }
1282
Josef Bacik96303082009-07-13 21:29:25 -04001283 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001284 n = rb_prev(&entry->offset_index);
1285 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001286 prev = rb_entry(n, struct btrfs_free_space,
1287 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001288 if (!prev->bitmap &&
1289 prev->offset + prev->bytes > offset)
1290 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001291 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001292 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001293 return entry;
1294 } else if (entry->offset + entry->bytes > offset)
1295 return entry;
1296
1297 if (!fuzzy)
1298 return NULL;
1299
1300 while (1) {
1301 if (entry->bitmap) {
1302 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001303 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001304 break;
1305 } else {
1306 if (entry->offset + entry->bytes > offset)
1307 break;
1308 }
1309
1310 n = rb_next(&entry->offset_index);
1311 if (!n)
1312 return NULL;
1313 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1314 }
1315 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001316}
1317
Li Zefanf333adb2010-11-09 14:57:39 +08001318static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001319__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001320 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001321{
Li Zefan34d52cb2011-03-29 13:46:06 +08001322 rb_erase(&info->offset_index, &ctl->free_space_offset);
1323 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001324}
1325
Li Zefan34d52cb2011-03-29 13:46:06 +08001326static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001327 struct btrfs_free_space *info)
1328{
Li Zefan34d52cb2011-03-29 13:46:06 +08001329 __unlink_free_space(ctl, info);
1330 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001331}
1332
Li Zefan34d52cb2011-03-29 13:46:06 +08001333static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001334 struct btrfs_free_space *info)
1335{
1336 int ret = 0;
1337
Josef Bacikb12d6862013-08-26 17:14:08 -04001338 ASSERT(info->bytes || info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001339 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001340 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001341 if (ret)
1342 return ret;
1343
Li Zefan34d52cb2011-03-29 13:46:06 +08001344 ctl->free_space += info->bytes;
1345 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001346 return ret;
1347}
1348
Li Zefan34d52cb2011-03-29 13:46:06 +08001349static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001350{
Li Zefan34d52cb2011-03-29 13:46:06 +08001351 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001352 u64 max_bytes;
1353 u64 bitmap_bytes;
1354 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001355 u64 size = block_group->key.offset;
Wang Sheng-Hui96009762012-11-30 06:30:14 +00001356 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001357 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1358
Josef Bacikdde57402013-02-12 14:07:51 -05001359 max_bitmaps = max(max_bitmaps, 1);
1360
Josef Bacikb12d6862013-08-26 17:14:08 -04001361 ASSERT(ctl->total_bitmaps <= max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001362
1363 /*
1364 * The goal is to keep the total amount of memory used per 1gb of space
1365 * at or below 32k, so we need to adjust how much memory we allow to be
1366 * used by extent based free space tracking
1367 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001368 if (size < 1024 * 1024 * 1024)
1369 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1370 else
1371 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1372 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001373
Josef Bacik25891f72009-09-11 16:11:20 -04001374 /*
1375 * we want to account for 1 more bitmap than what we have so we can make
1376 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1377 * we add more bitmaps.
1378 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001379 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001380
Josef Bacik25891f72009-09-11 16:11:20 -04001381 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001382 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001383 return;
Josef Bacik96303082009-07-13 21:29:25 -04001384 }
Josef Bacik25891f72009-09-11 16:11:20 -04001385
1386 /*
1387 * we want the extent entry threshold to always be at most 1/2 the maxw
1388 * bytes we can have, or whatever is less than that.
1389 */
1390 extent_bytes = max_bytes - bitmap_bytes;
1391 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1392
Li Zefan34d52cb2011-03-29 13:46:06 +08001393 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001394 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001395}
1396
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001397static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1398 struct btrfs_free_space *info,
1399 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001400{
Li Zefanf38b6e72011-03-14 13:40:51 +08001401 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001402
Li Zefan34d52cb2011-03-29 13:46:06 +08001403 start = offset_to_bit(info->offset, ctl->unit, offset);
1404 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001405 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001406
Li Zefanf38b6e72011-03-14 13:40:51 +08001407 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001408
1409 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001410}
1411
1412static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1413 struct btrfs_free_space *info, u64 offset,
1414 u64 bytes)
1415{
1416 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001417 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001418}
1419
Li Zefan34d52cb2011-03-29 13:46:06 +08001420static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001421 struct btrfs_free_space *info, u64 offset,
1422 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001423{
Li Zefanf38b6e72011-03-14 13:40:51 +08001424 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001425
Li Zefan34d52cb2011-03-29 13:46:06 +08001426 start = offset_to_bit(info->offset, ctl->unit, offset);
1427 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001428 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001429
Li Zefanf38b6e72011-03-14 13:40:51 +08001430 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001431
1432 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001433 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001434}
1435
Miao Xiea4820392013-09-09 13:19:42 +08001436/*
1437 * If we can not find suitable extent, we will use bytes to record
1438 * the size of the max extent.
1439 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001440static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001441 struct btrfs_free_space *bitmap_info, u64 *offset,
1442 u64 *bytes)
1443{
1444 unsigned long found_bits = 0;
Miao Xiea4820392013-09-09 13:19:42 +08001445 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001446 unsigned long bits, i;
1447 unsigned long next_zero;
Miao Xiea4820392013-09-09 13:19:42 +08001448 unsigned long extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001449
Li Zefan34d52cb2011-03-29 13:46:06 +08001450 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001451 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001452 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001453
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001454 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04001455 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1456 BITS_PER_BITMAP, i);
Miao Xiea4820392013-09-09 13:19:42 +08001457 extent_bits = next_zero - i;
1458 if (extent_bits >= bits) {
1459 found_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001460 break;
Miao Xiea4820392013-09-09 13:19:42 +08001461 } else if (extent_bits > max_bits) {
1462 max_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001463 }
1464 i = next_zero;
1465 }
1466
1467 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001468 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1469 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001470 return 0;
1471 }
1472
Miao Xiea4820392013-09-09 13:19:42 +08001473 *bytes = (u64)(max_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001474 return -1;
1475}
1476
Miao Xiea4820392013-09-09 13:19:42 +08001477/* Cache the size of the max extent in bytes */
Li Zefan34d52cb2011-03-29 13:46:06 +08001478static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001479find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
Miao Xiea4820392013-09-09 13:19:42 +08001480 unsigned long align, u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04001481{
1482 struct btrfs_free_space *entry;
1483 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001484 u64 tmp;
1485 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001486 int ret;
1487
Li Zefan34d52cb2011-03-29 13:46:06 +08001488 if (!ctl->free_space_offset.rb_node)
Miao Xiea4820392013-09-09 13:19:42 +08001489 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001490
Li Zefan34d52cb2011-03-29 13:46:06 +08001491 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001492 if (!entry)
Miao Xiea4820392013-09-09 13:19:42 +08001493 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001494
1495 for (node = &entry->offset_index; node; node = rb_next(node)) {
1496 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Miao Xiea4820392013-09-09 13:19:42 +08001497 if (entry->bytes < *bytes) {
1498 if (entry->bytes > *max_extent_size)
1499 *max_extent_size = entry->bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001500 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001501 }
Josef Bacik96303082009-07-13 21:29:25 -04001502
David Woodhouse53b381b2013-01-29 18:40:14 -05001503 /* make sure the space returned is big enough
1504 * to match our requested alignment
1505 */
1506 if (*bytes >= align) {
Miao Xiea4820392013-09-09 13:19:42 +08001507 tmp = entry->offset - ctl->start + align - 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05001508 do_div(tmp, align);
1509 tmp = tmp * align + ctl->start;
1510 align_off = tmp - entry->offset;
1511 } else {
1512 align_off = 0;
1513 tmp = entry->offset;
1514 }
1515
Miao Xiea4820392013-09-09 13:19:42 +08001516 if (entry->bytes < *bytes + align_off) {
1517 if (entry->bytes > *max_extent_size)
1518 *max_extent_size = entry->bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05001519 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001520 }
David Woodhouse53b381b2013-01-29 18:40:14 -05001521
Josef Bacik96303082009-07-13 21:29:25 -04001522 if (entry->bitmap) {
Miao Xiea4820392013-09-09 13:19:42 +08001523 u64 size = *bytes;
1524
1525 ret = search_bitmap(ctl, entry, &tmp, &size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001526 if (!ret) {
1527 *offset = tmp;
Miao Xiea4820392013-09-09 13:19:42 +08001528 *bytes = size;
Josef Bacik96303082009-07-13 21:29:25 -04001529 return entry;
Miao Xiea4820392013-09-09 13:19:42 +08001530 } else if (size > *max_extent_size) {
1531 *max_extent_size = size;
David Woodhouse53b381b2013-01-29 18:40:14 -05001532 }
Josef Bacik96303082009-07-13 21:29:25 -04001533 continue;
1534 }
1535
David Woodhouse53b381b2013-01-29 18:40:14 -05001536 *offset = tmp;
1537 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001538 return entry;
1539 }
Miao Xiea4820392013-09-09 13:19:42 +08001540out:
Josef Bacik96303082009-07-13 21:29:25 -04001541 return NULL;
1542}
1543
Li Zefan34d52cb2011-03-29 13:46:06 +08001544static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001545 struct btrfs_free_space *info, u64 offset)
1546{
Li Zefan34d52cb2011-03-29 13:46:06 +08001547 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001548 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001549 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001550 link_free_space(ctl, info);
1551 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001552
Li Zefan34d52cb2011-03-29 13:46:06 +08001553 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001554}
1555
Li Zefan34d52cb2011-03-29 13:46:06 +08001556static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001557 struct btrfs_free_space *bitmap_info)
1558{
Li Zefan34d52cb2011-03-29 13:46:06 +08001559 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001560 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001561 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001562 ctl->total_bitmaps--;
1563 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001564}
1565
Li Zefan34d52cb2011-03-29 13:46:06 +08001566static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001567 struct btrfs_free_space *bitmap_info,
1568 u64 *offset, u64 *bytes)
1569{
1570 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001571 u64 search_start, search_bytes;
1572 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001573
1574again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001575 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001576
Josef Bacik6606bb92009-07-31 11:03:58 -04001577 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001578 * We need to search for bits in this bitmap. We could only cover some
1579 * of the extent in this bitmap thanks to how we add space, so we need
1580 * to search for as much as it as we can and clear that amount, and then
1581 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001582 */
1583 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001584 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001585 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001586 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001587 if (ret < 0 || search_start != *offset)
1588 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001589
Josef Bacikbdb7d302012-06-27 15:10:56 -04001590 /* We may have found more bits than what we need */
1591 search_bytes = min(search_bytes, *bytes);
1592
1593 /* Cannot clear past the end of the bitmap */
1594 search_bytes = min(search_bytes, end - search_start + 1);
1595
1596 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1597 *offset += search_bytes;
1598 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001599
1600 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001601 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001602 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001603 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001604
Josef Bacik6606bb92009-07-31 11:03:58 -04001605 /*
1606 * no entry after this bitmap, but we still have bytes to
1607 * remove, so something has gone wrong.
1608 */
1609 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001610 return -EINVAL;
1611
Josef Bacik6606bb92009-07-31 11:03:58 -04001612 bitmap_info = rb_entry(next, struct btrfs_free_space,
1613 offset_index);
1614
1615 /*
1616 * if the next entry isn't a bitmap we need to return to let the
1617 * extent stuff do its work.
1618 */
Josef Bacik96303082009-07-13 21:29:25 -04001619 if (!bitmap_info->bitmap)
1620 return -EAGAIN;
1621
Josef Bacik6606bb92009-07-31 11:03:58 -04001622 /*
1623 * Ok the next item is a bitmap, but it may not actually hold
1624 * the information for the rest of this free space stuff, so
1625 * look for it, and if we don't find it return so we can try
1626 * everything over again.
1627 */
1628 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001629 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001630 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001631 &search_bytes);
1632 if (ret < 0 || search_start != *offset)
1633 return -EAGAIN;
1634
Josef Bacik96303082009-07-13 21:29:25 -04001635 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001636 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001637 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001638
1639 return 0;
1640}
1641
Josef Bacik2cdc3422011-05-27 14:07:49 -04001642static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1643 struct btrfs_free_space *info, u64 offset,
1644 u64 bytes)
1645{
1646 u64 bytes_to_set = 0;
1647 u64 end;
1648
1649 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1650
1651 bytes_to_set = min(end - offset, bytes);
1652
1653 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1654
1655 return bytes_to_set;
1656
1657}
1658
Li Zefan34d52cb2011-03-29 13:46:06 +08001659static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1660 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001661{
Li Zefan34d52cb2011-03-29 13:46:06 +08001662 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001663
1664 /*
1665 * If we are below the extents threshold then we can add this as an
1666 * extent, and don't have to deal with the bitmap
1667 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001668 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001669 /*
1670 * If this block group has some small extents we don't want to
1671 * use up all of our free slots in the cache with them, we want
1672 * to reserve them to larger extents, however if we have plent
1673 * of cache left then go ahead an dadd them, no sense in adding
1674 * the overhead of a bitmap if we don't have to.
1675 */
1676 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001677 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1678 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001679 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001680 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001681 }
1682 }
Josef Bacik96303082009-07-13 21:29:25 -04001683
1684 /*
Josef Bacikdde57402013-02-12 14:07:51 -05001685 * The original block groups from mkfs can be really small, like 8
1686 * megabytes, so don't bother with a bitmap for those entries. However
1687 * some block groups can be smaller than what a bitmap would cover but
1688 * are still large enough that they could overflow the 32k memory limit,
1689 * so allow those block groups to still be allowed to have a bitmap
1690 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04001691 */
Josef Bacikdde57402013-02-12 14:07:51 -05001692 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001693 return false;
1694
1695 return true;
1696}
1697
Josef Bacik2cdc3422011-05-27 14:07:49 -04001698static struct btrfs_free_space_op free_space_op = {
1699 .recalc_thresholds = recalculate_thresholds,
1700 .use_bitmap = use_bitmap,
1701};
1702
Li Zefan34d52cb2011-03-29 13:46:06 +08001703static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1704 struct btrfs_free_space *info)
1705{
1706 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001707 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08001708 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001709 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08001710 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001711
1712 bytes = info->bytes;
1713 offset = info->offset;
1714
Li Zefan34d52cb2011-03-29 13:46:06 +08001715 if (!ctl->op->use_bitmap(ctl, info))
1716 return 0;
1717
Josef Bacik2cdc3422011-05-27 14:07:49 -04001718 if (ctl->op == &free_space_op)
1719 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001720again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001721 /*
1722 * Since we link bitmaps right into the cluster we need to see if we
1723 * have a cluster here, and if so and it has our bitmap we need to add
1724 * the free space to that bitmap.
1725 */
1726 if (block_group && !list_empty(&block_group->cluster_list)) {
1727 struct btrfs_free_cluster *cluster;
1728 struct rb_node *node;
1729 struct btrfs_free_space *entry;
1730
1731 cluster = list_entry(block_group->cluster_list.next,
1732 struct btrfs_free_cluster,
1733 block_group_list);
1734 spin_lock(&cluster->lock);
1735 node = rb_first(&cluster->root);
1736 if (!node) {
1737 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001738 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001739 }
1740
1741 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1742 if (!entry->bitmap) {
1743 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001744 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001745 }
1746
1747 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1748 bytes_added = add_bytes_to_bitmap(ctl, entry,
1749 offset, bytes);
1750 bytes -= bytes_added;
1751 offset += bytes_added;
1752 }
1753 spin_unlock(&cluster->lock);
1754 if (!bytes) {
1755 ret = 1;
1756 goto out;
1757 }
1758 }
Chris Mason38e87882011-06-10 16:36:57 -04001759
1760no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08001761 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001762 1, 0);
1763 if (!bitmap_info) {
Josef Bacikb12d6862013-08-26 17:14:08 -04001764 ASSERT(added == 0);
Josef Bacik96303082009-07-13 21:29:25 -04001765 goto new_bitmap;
1766 }
1767
Josef Bacik2cdc3422011-05-27 14:07:49 -04001768 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1769 bytes -= bytes_added;
1770 offset += bytes_added;
1771 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001772
1773 if (!bytes) {
1774 ret = 1;
1775 goto out;
1776 } else
1777 goto again;
1778
1779new_bitmap:
1780 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001781 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001782 added = 1;
1783 info = NULL;
1784 goto again;
1785 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001786 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001787
1788 /* no pre-allocated info, allocate a new one */
1789 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001790 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1791 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001792 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001793 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001794 ret = -ENOMEM;
1795 goto out;
1796 }
1797 }
1798
1799 /* allocate the bitmap */
1800 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001801 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001802 if (!info->bitmap) {
1803 ret = -ENOMEM;
1804 goto out;
1805 }
1806 goto again;
1807 }
1808
1809out:
1810 if (info) {
1811 if (info->bitmap)
1812 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001813 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001814 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001815
1816 return ret;
1817}
1818
Chris Mason945d8962011-05-22 12:33:42 -04001819static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001820 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001821{
Li Zefan120d66e2010-11-09 14:56:50 +08001822 struct btrfs_free_space *left_info;
1823 struct btrfs_free_space *right_info;
1824 bool merged = false;
1825 u64 offset = info->offset;
1826 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001827
Josef Bacik0f9dd462008-09-23 13:14:11 -04001828 /*
1829 * first we want to see if there is free space adjacent to the range we
1830 * are adding, if there is remove that struct and add a new one to
1831 * cover the entire range
1832 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001833 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001834 if (right_info && rb_prev(&right_info->offset_index))
1835 left_info = rb_entry(rb_prev(&right_info->offset_index),
1836 struct btrfs_free_space, offset_index);
1837 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001838 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001839
Josef Bacik96303082009-07-13 21:29:25 -04001840 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001841 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001842 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001843 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001844 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001845 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001846 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001847 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001848 }
1849
Josef Bacik96303082009-07-13 21:29:25 -04001850 if (left_info && !left_info->bitmap &&
1851 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001852 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001853 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001854 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001855 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001856 info->offset = left_info->offset;
1857 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001858 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001859 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001860 }
1861
Li Zefan120d66e2010-11-09 14:56:50 +08001862 return merged;
1863}
1864
Li Zefan581bb052011-04-20 10:06:11 +08001865int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1866 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001867{
1868 struct btrfs_free_space *info;
1869 int ret = 0;
1870
Josef Bacikdc89e982011-01-28 17:05:48 -05001871 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001872 if (!info)
1873 return -ENOMEM;
1874
1875 info->offset = offset;
1876 info->bytes = bytes;
1877
Li Zefan34d52cb2011-03-29 13:46:06 +08001878 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001879
Li Zefan34d52cb2011-03-29 13:46:06 +08001880 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001881 goto link;
1882
1883 /*
1884 * There was no extent directly to the left or right of this new
1885 * extent then we know we're going to have to allocate a new extent, so
1886 * before we do that see if we need to drop this into a bitmap
1887 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001888 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001889 if (ret < 0) {
1890 goto out;
1891 } else if (ret) {
1892 ret = 0;
1893 goto out;
1894 }
1895link:
Li Zefan34d52cb2011-03-29 13:46:06 +08001896 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001897 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001898 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001899out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001900 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001901
Josef Bacik0f9dd462008-09-23 13:14:11 -04001902 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001903 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Josef Bacikb12d6862013-08-26 17:14:08 -04001904 ASSERT(ret != -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001905 }
1906
Josef Bacik0f9dd462008-09-23 13:14:11 -04001907 return ret;
1908}
1909
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001910int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1911 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001912{
Li Zefan34d52cb2011-03-29 13:46:06 +08001913 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001914 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05001915 int ret;
1916 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001917
Li Zefan34d52cb2011-03-29 13:46:06 +08001918 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001919
Josef Bacik96303082009-07-13 21:29:25 -04001920again:
Josef Bacikb0175112012-12-18 11:39:19 -05001921 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001922 if (!bytes)
1923 goto out_lock;
1924
Li Zefan34d52cb2011-03-29 13:46:06 +08001925 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001926 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001927 /*
1928 * oops didn't find an extent that matched the space we wanted
1929 * to remove, look for a bitmap instead
1930 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001931 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04001932 1, 0);
1933 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05001934 /*
1935 * If we found a partial bit of our free space in a
1936 * bitmap but then couldn't find the other part this may
1937 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05001938 */
Josef Bacikb0175112012-12-18 11:39:19 -05001939 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04001940 goto out_lock;
1941 }
Josef Bacik96303082009-07-13 21:29:25 -04001942 }
1943
Josef Bacikb0175112012-12-18 11:39:19 -05001944 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001945 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001946 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04001947 if (offset == info->offset) {
1948 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001949
Josef Bacikbdb7d302012-06-27 15:10:56 -04001950 info->bytes -= to_free;
1951 info->offset += to_free;
1952 if (info->bytes) {
1953 ret = link_free_space(ctl, info);
1954 WARN_ON(ret);
1955 } else {
1956 kmem_cache_free(btrfs_free_space_cachep, info);
1957 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001958
Josef Bacikbdb7d302012-06-27 15:10:56 -04001959 offset += to_free;
1960 bytes -= to_free;
1961 goto again;
1962 } else {
1963 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001964
Josef Bacikbdb7d302012-06-27 15:10:56 -04001965 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001966 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001967 WARN_ON(ret);
1968 if (ret)
1969 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04001970
Josef Bacikbdb7d302012-06-27 15:10:56 -04001971 /* Not enough bytes in this entry to satisfy us */
1972 if (old_end < offset + bytes) {
1973 bytes -= old_end - offset;
1974 offset = old_end;
1975 goto again;
1976 } else if (old_end == offset + bytes) {
1977 /* all done */
1978 goto out_lock;
1979 }
1980 spin_unlock(&ctl->tree_lock);
1981
1982 ret = btrfs_add_free_space(block_group, offset + bytes,
1983 old_end - (offset + bytes));
1984 WARN_ON(ret);
1985 goto out;
1986 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001987 }
Josef Bacik96303082009-07-13 21:29:25 -04001988
Li Zefan34d52cb2011-03-29 13:46:06 +08001989 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05001990 if (ret == -EAGAIN) {
1991 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04001992 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05001993 }
Josef Bacik96303082009-07-13 21:29:25 -04001994out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08001995 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001996out:
Josef Bacik25179202008-10-29 14:49:05 -04001997 return ret;
1998}
1999
Josef Bacik0f9dd462008-09-23 13:14:11 -04002000void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
2001 u64 bytes)
2002{
Li Zefan34d52cb2011-03-29 13:46:06 +08002003 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002004 struct btrfs_free_space *info;
2005 struct rb_node *n;
2006 int count = 0;
2007
Li Zefan34d52cb2011-03-29 13:46:06 +08002008 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04002009 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06002010 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002011 count++;
Josef Bacik96303082009-07-13 21:29:25 -04002012 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002013 info->offset, info->bytes,
Josef Bacik96303082009-07-13 21:29:25 -04002014 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002015 }
Josef Bacik96303082009-07-13 21:29:25 -04002016 printk(KERN_INFO "block group has cluster?: %s\n",
2017 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002018 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
2019 "\n", count);
2020}
2021
Li Zefan34d52cb2011-03-29 13:46:06 +08002022void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002023{
Li Zefan34d52cb2011-03-29 13:46:06 +08002024 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002025
Li Zefan34d52cb2011-03-29 13:46:06 +08002026 spin_lock_init(&ctl->tree_lock);
2027 ctl->unit = block_group->sectorsize;
2028 ctl->start = block_group->key.objectid;
2029 ctl->private = block_group;
2030 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002031
Li Zefan34d52cb2011-03-29 13:46:06 +08002032 /*
2033 * we only want to have 32k of ram per block group for keeping
2034 * track of free space, and if we pass 1/2 of that we want to
2035 * start converting things over to using bitmaps
2036 */
2037 ctl->extents_thresh = ((1024 * 32) / 2) /
2038 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002039}
2040
Chris Masonfa9c0d792009-04-03 09:47:43 -04002041/*
2042 * for a given cluster, put all of its extents back into the free
2043 * space cache. If the block group passed doesn't match the block group
2044 * pointed to by the cluster, someone else raced in and freed the
2045 * cluster already. In that case, we just return without changing anything
2046 */
2047static int
2048__btrfs_return_cluster_to_free_space(
2049 struct btrfs_block_group_cache *block_group,
2050 struct btrfs_free_cluster *cluster)
2051{
Li Zefan34d52cb2011-03-29 13:46:06 +08002052 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002053 struct btrfs_free_space *entry;
2054 struct rb_node *node;
2055
2056 spin_lock(&cluster->lock);
2057 if (cluster->block_group != block_group)
2058 goto out;
2059
Josef Bacik96303082009-07-13 21:29:25 -04002060 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002061 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002062 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002063
Chris Masonfa9c0d792009-04-03 09:47:43 -04002064 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002065 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002066 bool bitmap;
2067
Chris Masonfa9c0d792009-04-03 09:47:43 -04002068 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2069 node = rb_next(&entry->offset_index);
2070 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04002071
2072 bitmap = (entry->bitmap != NULL);
2073 if (!bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08002074 try_merge_free_space(ctl, entry, false);
2075 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002076 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002077 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002078 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002079
Chris Masonfa9c0d792009-04-03 09:47:43 -04002080out:
2081 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002082 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002083 return 0;
2084}
2085
Eric Sandeen48a3b632013-04-25 20:41:01 +00002086static void __btrfs_remove_free_space_cache_locked(
2087 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002088{
2089 struct btrfs_free_space *info;
2090 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002091
Li Zefan581bb052011-04-20 10:06:11 +08002092 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2093 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002094 if (!info->bitmap) {
2095 unlink_free_space(ctl, info);
2096 kmem_cache_free(btrfs_free_space_cachep, info);
2097 } else {
2098 free_bitmap(ctl, info);
2099 }
Li Zefan581bb052011-04-20 10:06:11 +08002100 if (need_resched()) {
2101 spin_unlock(&ctl->tree_lock);
2102 cond_resched();
2103 spin_lock(&ctl->tree_lock);
2104 }
2105 }
Chris Mason09655372011-05-21 09:27:38 -04002106}
2107
2108void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2109{
2110 spin_lock(&ctl->tree_lock);
2111 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002112 spin_unlock(&ctl->tree_lock);
2113}
2114
Josef Bacik0f9dd462008-09-23 13:14:11 -04002115void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2116{
Li Zefan34d52cb2011-03-29 13:46:06 +08002117 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002118 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002119 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002120
Li Zefan34d52cb2011-03-29 13:46:06 +08002121 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002122 while ((head = block_group->cluster_list.next) !=
2123 &block_group->cluster_list) {
2124 cluster = list_entry(head, struct btrfs_free_cluster,
2125 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002126
2127 WARN_ON(cluster->block_group != block_group);
2128 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04002129 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002130 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002131 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08002132 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002133 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002134 }
Chris Mason09655372011-05-21 09:27:38 -04002135 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002136 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002137
Josef Bacik0f9dd462008-09-23 13:14:11 -04002138}
2139
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002140u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
Miao Xiea4820392013-09-09 13:19:42 +08002141 u64 offset, u64 bytes, u64 empty_size,
2142 u64 *max_extent_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002143{
Li Zefan34d52cb2011-03-29 13:46:06 +08002144 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002145 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002146 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002147 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002148 u64 align_gap = 0;
2149 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002150
Li Zefan34d52cb2011-03-29 13:46:06 +08002151 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002152 entry = find_free_space(ctl, &offset, &bytes_search,
Miao Xiea4820392013-09-09 13:19:42 +08002153 block_group->full_stripe_len, max_extent_size);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002154 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002155 goto out;
2156
2157 ret = offset;
2158 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002159 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002160 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002161 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002162 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002163 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002164 align_gap_len = offset - entry->offset;
2165 align_gap = entry->offset;
2166
2167 entry->offset = offset + bytes;
2168 WARN_ON(entry->bytes < bytes + align_gap_len);
2169
2170 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002171 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002172 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002173 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002174 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002175 }
Josef Bacik96303082009-07-13 21:29:25 -04002176out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002177 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002178
David Woodhouse53b381b2013-01-29 18:40:14 -05002179 if (align_gap_len)
2180 __btrfs_add_free_space(ctl, align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002181 return ret;
2182}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002183
2184/*
2185 * given a cluster, put all of its extents back into the free space
2186 * cache. If a block group is passed, this function will only free
2187 * a cluster that belongs to the passed block group.
2188 *
2189 * Otherwise, it'll get a reference on the block group pointed to by the
2190 * cluster and remove the cluster from it.
2191 */
2192int btrfs_return_cluster_to_free_space(
2193 struct btrfs_block_group_cache *block_group,
2194 struct btrfs_free_cluster *cluster)
2195{
Li Zefan34d52cb2011-03-29 13:46:06 +08002196 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002197 int ret;
2198
2199 /* first, get a safe pointer to the block group */
2200 spin_lock(&cluster->lock);
2201 if (!block_group) {
2202 block_group = cluster->block_group;
2203 if (!block_group) {
2204 spin_unlock(&cluster->lock);
2205 return 0;
2206 }
2207 } else if (cluster->block_group != block_group) {
2208 /* someone else has already freed it don't redo their work */
2209 spin_unlock(&cluster->lock);
2210 return 0;
2211 }
2212 atomic_inc(&block_group->count);
2213 spin_unlock(&cluster->lock);
2214
Li Zefan34d52cb2011-03-29 13:46:06 +08002215 ctl = block_group->free_space_ctl;
2216
Chris Masonfa9c0d792009-04-03 09:47:43 -04002217 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002218 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002219 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002220 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002221
2222 /* finally drop our ref */
2223 btrfs_put_block_group(block_group);
2224 return ret;
2225}
2226
Josef Bacik96303082009-07-13 21:29:25 -04002227static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2228 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002229 struct btrfs_free_space *entry,
Miao Xiea4820392013-09-09 13:19:42 +08002230 u64 bytes, u64 min_start,
2231 u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04002232{
Li Zefan34d52cb2011-03-29 13:46:06 +08002233 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002234 int err;
2235 u64 search_start = cluster->window_start;
2236 u64 search_bytes = bytes;
2237 u64 ret = 0;
2238
Josef Bacik96303082009-07-13 21:29:25 -04002239 search_start = min_start;
2240 search_bytes = bytes;
2241
Li Zefan34d52cb2011-03-29 13:46:06 +08002242 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Miao Xiea4820392013-09-09 13:19:42 +08002243 if (err) {
2244 if (search_bytes > *max_extent_size)
2245 *max_extent_size = search_bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002246 return 0;
Miao Xiea4820392013-09-09 13:19:42 +08002247 }
Josef Bacik96303082009-07-13 21:29:25 -04002248
2249 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002250 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002251
2252 return ret;
2253}
2254
Chris Masonfa9c0d792009-04-03 09:47:43 -04002255/*
2256 * given a cluster, try to allocate 'bytes' from it, returns 0
2257 * if it couldn't find anything suitably large, or a logical disk offset
2258 * if things worked out
2259 */
2260u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2261 struct btrfs_free_cluster *cluster, u64 bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002262 u64 min_start, u64 *max_extent_size)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002263{
Li Zefan34d52cb2011-03-29 13:46:06 +08002264 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002265 struct btrfs_free_space *entry = NULL;
2266 struct rb_node *node;
2267 u64 ret = 0;
2268
2269 spin_lock(&cluster->lock);
2270 if (bytes > cluster->max_size)
2271 goto out;
2272
2273 if (cluster->block_group != block_group)
2274 goto out;
2275
2276 node = rb_first(&cluster->root);
2277 if (!node)
2278 goto out;
2279
2280 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002281 while(1) {
Miao Xiea4820392013-09-09 13:19:42 +08002282 if (entry->bytes < bytes && entry->bytes > *max_extent_size)
2283 *max_extent_size = entry->bytes;
2284
Josef Bacik4e69b592011-03-21 10:11:24 -04002285 if (entry->bytes < bytes ||
2286 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002287 node = rb_next(&entry->offset_index);
2288 if (!node)
2289 break;
2290 entry = rb_entry(node, struct btrfs_free_space,
2291 offset_index);
2292 continue;
2293 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002294
Josef Bacik4e69b592011-03-21 10:11:24 -04002295 if (entry->bitmap) {
2296 ret = btrfs_alloc_from_bitmap(block_group,
2297 cluster, entry, bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002298 cluster->window_start,
2299 max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002300 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002301 node = rb_next(&entry->offset_index);
2302 if (!node)
2303 break;
2304 entry = rb_entry(node, struct btrfs_free_space,
2305 offset_index);
2306 continue;
2307 }
Josef Bacik9b230622012-01-26 15:01:12 -05002308 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002309 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002310 ret = entry->offset;
2311
2312 entry->offset += bytes;
2313 entry->bytes -= bytes;
2314 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002315
Li Zefan5e71b5d2010-11-09 14:55:34 +08002316 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002317 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002318 break;
2319 }
2320out:
2321 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002322
Li Zefan5e71b5d2010-11-09 14:55:34 +08002323 if (!ret)
2324 return 0;
2325
Li Zefan34d52cb2011-03-29 13:46:06 +08002326 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002327
Li Zefan34d52cb2011-03-29 13:46:06 +08002328 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002329 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002330 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002331 if (entry->bitmap) {
2332 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002333 ctl->total_bitmaps--;
2334 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002335 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002336 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002337 }
2338
Li Zefan34d52cb2011-03-29 13:46:06 +08002339 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002340
Chris Masonfa9c0d792009-04-03 09:47:43 -04002341 return ret;
2342}
2343
Josef Bacik96303082009-07-13 21:29:25 -04002344static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2345 struct btrfs_free_space *entry,
2346 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002347 u64 offset, u64 bytes,
2348 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002349{
Li Zefan34d52cb2011-03-29 13:46:06 +08002350 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002351 unsigned long next_zero;
2352 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002353 unsigned long want_bits;
2354 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002355 unsigned long found_bits;
2356 unsigned long start = 0;
2357 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002358 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002359
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002360 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002361 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002362 want_bits = bytes_to_bits(bytes, ctl->unit);
2363 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002364
2365again:
2366 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002367 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002368 next_zero = find_next_zero_bit(entry->bitmap,
2369 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002370 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002371 found_bits = next_zero - i;
2372 break;
2373 }
2374 i = next_zero;
2375 }
2376
2377 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002378 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002379
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002380 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002381 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002382 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002383 }
2384
2385 total_found += found_bits;
2386
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002387 if (cluster->max_size < found_bits * ctl->unit)
2388 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002389
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002390 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2391 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002392 goto again;
2393 }
2394
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002395 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002396 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002397 ret = tree_insert_offset(&cluster->root, entry->offset,
2398 &entry->offset_index, 1);
Josef Bacikb12d6862013-08-26 17:14:08 -04002399 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002400
Josef Bacik3f7de032011-11-10 08:29:20 -05002401 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002402 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002403 return 0;
2404}
2405
Chris Masonfa9c0d792009-04-03 09:47:43 -04002406/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002407 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002408 * Try to find a cluster with at least bytes total bytes, at least one
2409 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002410 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002411static noinline int
2412setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2413 struct btrfs_free_cluster *cluster,
2414 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002415 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002416{
Li Zefan34d52cb2011-03-29 13:46:06 +08002417 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002418 struct btrfs_free_space *first = NULL;
2419 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002420 struct btrfs_free_space *last;
2421 struct rb_node *node;
2422 u64 window_start;
2423 u64 window_free;
2424 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002425 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002426
Li Zefan34d52cb2011-03-29 13:46:06 +08002427 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002428 if (!entry)
2429 return -ENOSPC;
2430
2431 /*
2432 * We don't want bitmaps, so just move along until we find a normal
2433 * extent entry.
2434 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002435 while (entry->bitmap || entry->bytes < min_bytes) {
2436 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002437 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002438 node = rb_next(&entry->offset_index);
2439 if (!node)
2440 return -ENOSPC;
2441 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2442 }
2443
2444 window_start = entry->offset;
2445 window_free = entry->bytes;
2446 max_extent = entry->bytes;
2447 first = entry;
2448 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002449
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002450 for (node = rb_next(&entry->offset_index); node;
2451 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002452 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2453
Josef Bacik86d4a772011-05-25 13:03:16 -04002454 if (entry->bitmap) {
2455 if (list_empty(&entry->list))
2456 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002457 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002458 }
2459
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002460 if (entry->bytes < min_bytes)
2461 continue;
2462
2463 last = entry;
2464 window_free += entry->bytes;
2465 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002466 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002467 }
2468
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002469 if (window_free < bytes || max_extent < cont1_bytes)
2470 return -ENOSPC;
2471
Josef Bacik4e69b592011-03-21 10:11:24 -04002472 cluster->window_start = first->offset;
2473
2474 node = &first->offset_index;
2475
2476 /*
2477 * now we've found our entries, pull them out of the free space
2478 * cache and put them into the cluster rbtree
2479 */
2480 do {
2481 int ret;
2482
2483 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2484 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002485 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002486 continue;
2487
Li Zefan34d52cb2011-03-29 13:46:06 +08002488 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002489 ret = tree_insert_offset(&cluster->root, entry->offset,
2490 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002491 total_size += entry->bytes;
Josef Bacikb12d6862013-08-26 17:14:08 -04002492 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002493 } while (node && entry != last);
2494
2495 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002496 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002497 return 0;
2498}
2499
2500/*
2501 * This specifically looks for bitmaps that may work in the cluster, we assume
2502 * that we have already failed to find extents that will work.
2503 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002504static noinline int
2505setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2506 struct btrfs_free_cluster *cluster,
2507 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002508 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002509{
Li Zefan34d52cb2011-03-29 13:46:06 +08002510 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002511 struct btrfs_free_space *entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002512 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002513 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002514
Li Zefan34d52cb2011-03-29 13:46:06 +08002515 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002516 return -ENOSPC;
2517
Josef Bacik86d4a772011-05-25 13:03:16 -04002518 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05002519 * The bitmap that covers offset won't be in the list unless offset
2520 * is just its start offset.
2521 */
2522 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
2523 if (entry->offset != bitmap_offset) {
2524 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
2525 if (entry && list_empty(&entry->list))
2526 list_add(&entry->list, bitmaps);
2527 }
2528
Josef Bacik86d4a772011-05-25 13:03:16 -04002529 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05002530 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04002531 continue;
2532 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002533 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002534 if (!ret)
2535 return 0;
2536 }
2537
2538 /*
Li Zefan52621cb2011-11-20 07:33:38 -05002539 * The bitmaps list has all the bitmaps that record free space
2540 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04002541 */
Li Zefan52621cb2011-11-20 07:33:38 -05002542 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04002543}
2544
2545/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002546 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002547 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04002548 * We might not find them all in one contiguous area.
2549 *
2550 * returns zero and sets up cluster if things worked out, otherwise
2551 * it returns -enospc
2552 */
Josef Bacik00361582013-08-14 14:02:47 -04002553int btrfs_find_space_cluster(struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002554 struct btrfs_block_group_cache *block_group,
2555 struct btrfs_free_cluster *cluster,
2556 u64 offset, u64 bytes, u64 empty_size)
2557{
Li Zefan34d52cb2011-03-29 13:46:06 +08002558 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002559 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05002560 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002561 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002562 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002563 int ret;
2564
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002565 /*
2566 * Choose the minimum extent size we'll require for this
2567 * cluster. For SSD_SPREAD, don't allow any fragmentation.
2568 * For metadata, allow allocates with smaller extents. For
2569 * data, keep it dense.
2570 */
Chris Mason451d7582009-06-09 20:28:34 -04002571 if (btrfs_test_opt(root, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002572 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04002573 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002574 cont1_bytes = bytes;
2575 min_bytes = block_group->sectorsize;
2576 } else {
2577 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
2578 min_bytes = block_group->sectorsize;
2579 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002580
Li Zefan34d52cb2011-03-29 13:46:06 +08002581 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002582
2583 /*
2584 * If we know we don't have enough space to make a cluster don't even
2585 * bother doing all the work to try and find one.
2586 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002587 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002588 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002589 return -ENOSPC;
2590 }
2591
Chris Masonfa9c0d792009-04-03 09:47:43 -04002592 spin_lock(&cluster->lock);
2593
2594 /* someone already found a cluster, hooray */
2595 if (cluster->block_group) {
2596 ret = 0;
2597 goto out;
2598 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002599
Josef Bacik3f7de032011-11-10 08:29:20 -05002600 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
2601 min_bytes);
2602
2603 INIT_LIST_HEAD(&bitmaps);
Josef Bacik86d4a772011-05-25 13:03:16 -04002604 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002605 bytes + empty_size,
2606 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002607 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002608 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002609 offset, bytes + empty_size,
2610 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002611
2612 /* Clear our temporary list */
2613 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2614 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002615
2616 if (!ret) {
2617 atomic_inc(&block_group->count);
2618 list_add_tail(&cluster->block_group_list,
2619 &block_group->cluster_list);
2620 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05002621 } else {
2622 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002623 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002624out:
2625 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002626 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002627
2628 return ret;
2629}
2630
2631/*
2632 * simple code to zero out a cluster
2633 */
2634void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2635{
2636 spin_lock_init(&cluster->lock);
2637 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002638 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002639 cluster->max_size = 0;
2640 INIT_LIST_HEAD(&cluster->block_group_list);
2641 cluster->block_group = NULL;
2642}
2643
Li Zefan7fe1e642011-12-29 14:47:27 +08002644static int do_trimming(struct btrfs_block_group_cache *block_group,
2645 u64 *total_trimmed, u64 start, u64 bytes,
2646 u64 reserved_start, u64 reserved_bytes)
2647{
2648 struct btrfs_space_info *space_info = block_group->space_info;
2649 struct btrfs_fs_info *fs_info = block_group->fs_info;
2650 int ret;
2651 int update = 0;
2652 u64 trimmed = 0;
2653
2654 spin_lock(&space_info->lock);
2655 spin_lock(&block_group->lock);
2656 if (!block_group->ro) {
2657 block_group->reserved += reserved_bytes;
2658 space_info->bytes_reserved += reserved_bytes;
2659 update = 1;
2660 }
2661 spin_unlock(&block_group->lock);
2662 spin_unlock(&space_info->lock);
2663
2664 ret = btrfs_error_discard_extent(fs_info->extent_root,
2665 start, bytes, &trimmed);
2666 if (!ret)
2667 *total_trimmed += trimmed;
2668
2669 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
2670
2671 if (update) {
2672 spin_lock(&space_info->lock);
2673 spin_lock(&block_group->lock);
2674 if (block_group->ro)
2675 space_info->bytes_readonly += reserved_bytes;
2676 block_group->reserved -= reserved_bytes;
2677 space_info->bytes_reserved -= reserved_bytes;
2678 spin_unlock(&space_info->lock);
2679 spin_unlock(&block_group->lock);
2680 }
2681
2682 return ret;
2683}
2684
2685static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
2686 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00002687{
Li Zefan34d52cb2011-03-29 13:46:06 +08002688 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08002689 struct btrfs_free_space *entry;
2690 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00002691 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08002692 u64 extent_start;
2693 u64 extent_bytes;
2694 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002695
2696 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002697 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002698
Li Zefan34d52cb2011-03-29 13:46:06 +08002699 if (ctl->free_space < minlen) {
2700 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002701 break;
2702 }
2703
Li Zefan34d52cb2011-03-29 13:46:06 +08002704 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08002705 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002706 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002707 break;
2708 }
2709
Li Zefan7fe1e642011-12-29 14:47:27 +08002710 /* skip bitmaps */
2711 while (entry->bitmap) {
2712 node = rb_next(&entry->offset_index);
2713 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002714 spin_unlock(&ctl->tree_lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08002715 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00002716 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002717 entry = rb_entry(node, struct btrfs_free_space,
2718 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00002719 }
2720
Li Zefan7fe1e642011-12-29 14:47:27 +08002721 if (entry->offset >= end) {
2722 spin_unlock(&ctl->tree_lock);
2723 break;
2724 }
2725
2726 extent_start = entry->offset;
2727 extent_bytes = entry->bytes;
2728 start = max(start, extent_start);
2729 bytes = min(extent_start + extent_bytes, end) - start;
2730 if (bytes < minlen) {
2731 spin_unlock(&ctl->tree_lock);
2732 goto next;
2733 }
2734
2735 unlink_free_space(ctl, entry);
2736 kmem_cache_free(btrfs_free_space_cachep, entry);
2737
Li Zefan34d52cb2011-03-29 13:46:06 +08002738 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002739
Li Zefan7fe1e642011-12-29 14:47:27 +08002740 ret = do_trimming(block_group, total_trimmed, start, bytes,
2741 extent_start, extent_bytes);
2742 if (ret)
2743 break;
2744next:
Li Dongyangf7039b12011-03-24 10:24:28 +00002745 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002746
2747 if (fatal_signal_pending(current)) {
2748 ret = -ERESTARTSYS;
2749 break;
2750 }
2751
2752 cond_resched();
2753 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002754out:
2755 return ret;
2756}
2757
2758static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
2759 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
2760{
2761 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
2762 struct btrfs_free_space *entry;
2763 int ret = 0;
2764 int ret2;
2765 u64 bytes;
2766 u64 offset = offset_to_bitmap(ctl, start);
2767
2768 while (offset < end) {
2769 bool next_bitmap = false;
2770
2771 spin_lock(&ctl->tree_lock);
2772
2773 if (ctl->free_space < minlen) {
2774 spin_unlock(&ctl->tree_lock);
2775 break;
2776 }
2777
2778 entry = tree_search_offset(ctl, offset, 1, 0);
2779 if (!entry) {
2780 spin_unlock(&ctl->tree_lock);
2781 next_bitmap = true;
2782 goto next;
2783 }
2784
2785 bytes = minlen;
2786 ret2 = search_bitmap(ctl, entry, &start, &bytes);
2787 if (ret2 || start >= end) {
2788 spin_unlock(&ctl->tree_lock);
2789 next_bitmap = true;
2790 goto next;
2791 }
2792
2793 bytes = min(bytes, end - start);
2794 if (bytes < minlen) {
2795 spin_unlock(&ctl->tree_lock);
2796 goto next;
2797 }
2798
2799 bitmap_clear_bits(ctl, entry, start, bytes);
2800 if (entry->bytes == 0)
2801 free_bitmap(ctl, entry);
2802
2803 spin_unlock(&ctl->tree_lock);
2804
2805 ret = do_trimming(block_group, total_trimmed, start, bytes,
2806 start, bytes);
2807 if (ret)
2808 break;
2809next:
2810 if (next_bitmap) {
2811 offset += BITS_PER_BITMAP * ctl->unit;
2812 } else {
2813 start += bytes;
2814 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
2815 offset += BITS_PER_BITMAP * ctl->unit;
2816 }
2817
2818 if (fatal_signal_pending(current)) {
2819 ret = -ERESTARTSYS;
2820 break;
2821 }
2822
2823 cond_resched();
2824 }
2825
2826 return ret;
2827}
2828
2829int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2830 u64 *trimmed, u64 start, u64 end, u64 minlen)
2831{
2832 int ret;
2833
2834 *trimmed = 0;
2835
2836 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
2837 if (ret)
2838 return ret;
2839
2840 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
Li Dongyangf7039b12011-03-24 10:24:28 +00002841
2842 return ret;
2843}
Li Zefan581bb052011-04-20 10:06:11 +08002844
2845/*
2846 * Find the left-most item in the cache tree, and then return the
2847 * smallest inode number in the item.
2848 *
2849 * Note: the returned inode number may not be the smallest one in
2850 * the tree, if the left-most item is a bitmap.
2851 */
2852u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2853{
2854 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2855 struct btrfs_free_space *entry = NULL;
2856 u64 ino = 0;
2857
2858 spin_lock(&ctl->tree_lock);
2859
2860 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2861 goto out;
2862
2863 entry = rb_entry(rb_first(&ctl->free_space_offset),
2864 struct btrfs_free_space, offset_index);
2865
2866 if (!entry->bitmap) {
2867 ino = entry->offset;
2868
2869 unlink_free_space(ctl, entry);
2870 entry->offset++;
2871 entry->bytes--;
2872 if (!entry->bytes)
2873 kmem_cache_free(btrfs_free_space_cachep, entry);
2874 else
2875 link_free_space(ctl, entry);
2876 } else {
2877 u64 offset = 0;
2878 u64 count = 1;
2879 int ret;
2880
2881 ret = search_bitmap(ctl, entry, &offset, &count);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002882 /* Logic error; Should be empty if it can't find anything */
Josef Bacikb12d6862013-08-26 17:14:08 -04002883 ASSERT(!ret);
Li Zefan581bb052011-04-20 10:06:11 +08002884
2885 ino = offset;
2886 bitmap_clear_bits(ctl, entry, offset, 1);
2887 if (entry->bytes == 0)
2888 free_bitmap(ctl, entry);
2889 }
2890out:
2891 spin_unlock(&ctl->tree_lock);
2892
2893 return ino;
2894}
Li Zefan82d59022011-04-20 10:33:24 +08002895
2896struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2897 struct btrfs_path *path)
2898{
2899 struct inode *inode = NULL;
2900
2901 spin_lock(&root->cache_lock);
2902 if (root->cache_inode)
2903 inode = igrab(root->cache_inode);
2904 spin_unlock(&root->cache_lock);
2905 if (inode)
2906 return inode;
2907
2908 inode = __lookup_free_space_inode(root, path, 0);
2909 if (IS_ERR(inode))
2910 return inode;
2911
2912 spin_lock(&root->cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02002913 if (!btrfs_fs_closing(root->fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002914 root->cache_inode = igrab(inode);
2915 spin_unlock(&root->cache_lock);
2916
2917 return inode;
2918}
2919
2920int create_free_ino_inode(struct btrfs_root *root,
2921 struct btrfs_trans_handle *trans,
2922 struct btrfs_path *path)
2923{
2924 return __create_free_space_inode(root, trans, path,
2925 BTRFS_FREE_INO_OBJECTID, 0);
2926}
2927
2928int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2929{
2930 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2931 struct btrfs_path *path;
2932 struct inode *inode;
2933 int ret = 0;
2934 u64 root_gen = btrfs_root_generation(&root->root_item);
2935
Chris Mason4b9465c2011-06-03 09:36:29 -04002936 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2937 return 0;
2938
Li Zefan82d59022011-04-20 10:33:24 +08002939 /*
2940 * If we're unmounting then just return, since this does a search on the
2941 * normal root and not the commit root and we could deadlock.
2942 */
David Sterba7841cb22011-05-31 18:07:27 +02002943 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002944 return 0;
2945
2946 path = btrfs_alloc_path();
2947 if (!path)
2948 return 0;
2949
2950 inode = lookup_free_ino_inode(root, path);
2951 if (IS_ERR(inode))
2952 goto out;
2953
2954 if (root_gen != BTRFS_I(inode)->generation)
2955 goto out_put;
2956
2957 ret = __load_free_space_cache(root, inode, ctl, path, 0);
2958
2959 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002960 btrfs_err(fs_info,
2961 "failed to load free ino cache for root %llu",
2962 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08002963out_put:
2964 iput(inode);
2965out:
2966 btrfs_free_path(path);
2967 return ret;
2968}
2969
2970int btrfs_write_out_ino_cache(struct btrfs_root *root,
2971 struct btrfs_trans_handle *trans,
2972 struct btrfs_path *path)
2973{
2974 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2975 struct inode *inode;
2976 int ret;
2977
Chris Mason4b9465c2011-06-03 09:36:29 -04002978 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2979 return 0;
2980
Li Zefan82d59022011-04-20 10:33:24 +08002981 inode = lookup_free_ino_inode(root, path);
2982 if (IS_ERR(inode))
2983 return 0;
2984
2985 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
Josef Bacikc09544e2011-08-30 10:19:10 -04002986 if (ret) {
2987 btrfs_delalloc_release_metadata(inode, inode->i_size);
2988#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002989 btrfs_err(root->fs_info,
2990 "failed to write free ino cache for root %llu",
2991 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04002992#endif
2993 }
Li Zefan82d59022011-04-20 10:33:24 +08002994
2995 iput(inode);
2996 return ret;
2997}
Josef Bacik74255aa2013-03-15 09:47:08 -04002998
2999#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003000/*
3001 * Use this if you need to make a bitmap or extent entry specifically, it
3002 * doesn't do any of the merging that add_free_space does, this acts a lot like
3003 * how the free space cache loading stuff works, so you can get really weird
3004 * configurations.
3005 */
3006int test_add_free_space_entry(struct btrfs_block_group_cache *cache,
3007 u64 offset, u64 bytes, bool bitmap)
Josef Bacik74255aa2013-03-15 09:47:08 -04003008{
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003009 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3010 struct btrfs_free_space *info = NULL, *bitmap_info;
3011 void *map = NULL;
3012 u64 bytes_added;
3013 int ret;
Josef Bacik74255aa2013-03-15 09:47:08 -04003014
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003015again:
3016 if (!info) {
3017 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3018 if (!info)
3019 return -ENOMEM;
Josef Bacik74255aa2013-03-15 09:47:08 -04003020 }
3021
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003022 if (!bitmap) {
3023 spin_lock(&ctl->tree_lock);
3024 info->offset = offset;
3025 info->bytes = bytes;
3026 ret = link_free_space(ctl, info);
3027 spin_unlock(&ctl->tree_lock);
3028 if (ret)
3029 kmem_cache_free(btrfs_free_space_cachep, info);
3030 return ret;
3031 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003032
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003033 if (!map) {
3034 map = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
3035 if (!map) {
3036 kmem_cache_free(btrfs_free_space_cachep, info);
3037 return -ENOMEM;
3038 }
3039 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003040
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003041 spin_lock(&ctl->tree_lock);
3042 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3043 1, 0);
3044 if (!bitmap_info) {
3045 info->bitmap = map;
3046 map = NULL;
3047 add_new_bitmap(ctl, info, offset);
3048 bitmap_info = info;
3049 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003050
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003051 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
3052 bytes -= bytes_added;
3053 offset += bytes_added;
3054 spin_unlock(&ctl->tree_lock);
3055
3056 if (bytes)
3057 goto again;
3058
3059 if (map)
3060 kfree(map);
3061 return 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003062}
3063
3064/*
3065 * Checks to see if the given range is in the free space cache. This is really
3066 * just used to check the absence of space, so if there is free space in the
3067 * range at all we will return 1.
3068 */
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003069int test_check_exists(struct btrfs_block_group_cache *cache,
3070 u64 offset, u64 bytes)
Josef Bacik74255aa2013-03-15 09:47:08 -04003071{
3072 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3073 struct btrfs_free_space *info;
3074 int ret = 0;
3075
3076 spin_lock(&ctl->tree_lock);
3077 info = tree_search_offset(ctl, offset, 0, 0);
3078 if (!info) {
3079 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3080 1, 0);
3081 if (!info)
3082 goto out;
3083 }
3084
3085have_info:
3086 if (info->bitmap) {
3087 u64 bit_off, bit_bytes;
3088 struct rb_node *n;
3089 struct btrfs_free_space *tmp;
3090
3091 bit_off = offset;
3092 bit_bytes = ctl->unit;
3093 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes);
3094 if (!ret) {
3095 if (bit_off == offset) {
3096 ret = 1;
3097 goto out;
3098 } else if (bit_off > offset &&
3099 offset + bytes > bit_off) {
3100 ret = 1;
3101 goto out;
3102 }
3103 }
3104
3105 n = rb_prev(&info->offset_index);
3106 while (n) {
3107 tmp = rb_entry(n, struct btrfs_free_space,
3108 offset_index);
3109 if (tmp->offset + tmp->bytes < offset)
3110 break;
3111 if (offset + bytes < tmp->offset) {
3112 n = rb_prev(&info->offset_index);
3113 continue;
3114 }
3115 info = tmp;
3116 goto have_info;
3117 }
3118
3119 n = rb_next(&info->offset_index);
3120 while (n) {
3121 tmp = rb_entry(n, struct btrfs_free_space,
3122 offset_index);
3123 if (offset + bytes < tmp->offset)
3124 break;
3125 if (tmp->offset + tmp->bytes < offset) {
3126 n = rb_next(&info->offset_index);
3127 continue;
3128 }
3129 info = tmp;
3130 goto have_info;
3131 }
3132
3133 goto out;
3134 }
3135
3136 if (info->offset == offset) {
3137 ret = 1;
3138 goto out;
3139 }
3140
3141 if (offset > info->offset && offset < info->offset + info->bytes)
3142 ret = 1;
3143out:
3144 spin_unlock(&ctl->tree_lock);
3145 return ret;
3146}
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003147#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */