blob: a852e15173e547c7b60fd2ecff5b3b1b90a6bf80 [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,
Miao Xie7b61cd92013-05-13 13:55:09 +0000221 struct inode *inode)
222{
Miao Xie7b61cd92013-05-13 13:55:09 +0000223 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -0400224
Josef Bacik0af3d002010-06-21 14:48:16 -0400225 btrfs_i_size_write(inode, 0);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700226 truncate_pagecache(inode, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -0400227
228 /*
229 * We don't need an orphan item because truncating the free space cache
230 * will never be split across transactions.
231 */
232 ret = btrfs_truncate_inode_items(trans, root, inode,
233 0, BTRFS_EXTENT_DATA_KEY);
234 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100235 btrfs_abort_transaction(trans, root, ret);
Josef Bacik0af3d002010-06-21 14:48:16 -0400236 return ret;
237 }
238
Li Zefan82d59022011-04-20 10:33:24 +0800239 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100240 if (ret)
241 btrfs_abort_transaction(trans, root, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400242
Li Zefan82d59022011-04-20 10:33:24 +0800243 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400244}
245
Josef Bacik9d66e232010-08-25 16:54:15 -0400246static int readahead_cache(struct inode *inode)
247{
248 struct file_ra_state *ra;
249 unsigned long last_index;
250
251 ra = kzalloc(sizeof(*ra), GFP_NOFS);
252 if (!ra)
253 return -ENOMEM;
254
255 file_ra_state_init(ra, inode->i_mapping);
256 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
257
258 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
259
260 kfree(ra);
261
262 return 0;
263}
264
Josef Bacika67509c2011-10-05 15:18:58 -0400265struct io_ctl {
266 void *cur, *orig;
267 struct page *page;
268 struct page **pages;
269 struct btrfs_root *root;
270 unsigned long size;
271 int index;
272 int num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400273 unsigned check_crcs:1;
Josef Bacika67509c2011-10-05 15:18:58 -0400274};
275
276static int io_ctl_init(struct io_ctl *io_ctl, struct inode *inode,
Miao Xie5349d6c2014-06-19 10:42:49 +0800277 struct btrfs_root *root, int write)
Josef Bacika67509c2011-10-05 15:18:58 -0400278{
Miao Xie5349d6c2014-06-19 10:42:49 +0800279 int num_pages;
280 int check_crcs = 0;
281
282 num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
283 PAGE_CACHE_SHIFT;
284
285 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
286 check_crcs = 1;
287
288 /* Make sure we can fit our crcs into the first page */
289 if (write && check_crcs &&
290 (num_pages * sizeof(u32)) >= PAGE_CACHE_SIZE)
291 return -ENOSPC;
292
Josef Bacika67509c2011-10-05 15:18:58 -0400293 memset(io_ctl, 0, sizeof(struct io_ctl));
Miao Xie5349d6c2014-06-19 10:42:49 +0800294
295 io_ctl->pages = kzalloc(sizeof(struct page *) * num_pages, GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400296 if (!io_ctl->pages)
297 return -ENOMEM;
Miao Xie5349d6c2014-06-19 10:42:49 +0800298
299 io_ctl->num_pages = num_pages;
Josef Bacika67509c2011-10-05 15:18:58 -0400300 io_ctl->root = root;
Miao Xie5349d6c2014-06-19 10:42:49 +0800301 io_ctl->check_crcs = check_crcs;
302
Josef Bacika67509c2011-10-05 15:18:58 -0400303 return 0;
304}
305
306static void io_ctl_free(struct io_ctl *io_ctl)
307{
308 kfree(io_ctl->pages);
309}
310
311static void io_ctl_unmap_page(struct io_ctl *io_ctl)
312{
313 if (io_ctl->cur) {
314 kunmap(io_ctl->page);
315 io_ctl->cur = NULL;
316 io_ctl->orig = NULL;
317 }
318}
319
320static void io_ctl_map_page(struct io_ctl *io_ctl, int clear)
321{
Josef Bacikb12d6862013-08-26 17:14:08 -0400322 ASSERT(io_ctl->index < io_ctl->num_pages);
Josef Bacika67509c2011-10-05 15:18:58 -0400323 io_ctl->page = io_ctl->pages[io_ctl->index++];
324 io_ctl->cur = kmap(io_ctl->page);
325 io_ctl->orig = io_ctl->cur;
326 io_ctl->size = PAGE_CACHE_SIZE;
327 if (clear)
328 memset(io_ctl->cur, 0, PAGE_CACHE_SIZE);
329}
330
331static void io_ctl_drop_pages(struct io_ctl *io_ctl)
332{
333 int i;
334
335 io_ctl_unmap_page(io_ctl);
336
337 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800338 if (io_ctl->pages[i]) {
339 ClearPageChecked(io_ctl->pages[i]);
340 unlock_page(io_ctl->pages[i]);
341 page_cache_release(io_ctl->pages[i]);
342 }
Josef Bacika67509c2011-10-05 15:18:58 -0400343 }
344}
345
346static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct inode *inode,
347 int uptodate)
348{
349 struct page *page;
350 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
351 int i;
352
353 for (i = 0; i < io_ctl->num_pages; i++) {
354 page = find_or_create_page(inode->i_mapping, i, mask);
355 if (!page) {
356 io_ctl_drop_pages(io_ctl);
357 return -ENOMEM;
358 }
359 io_ctl->pages[i] = page;
360 if (uptodate && !PageUptodate(page)) {
361 btrfs_readpage(NULL, page);
362 lock_page(page);
363 if (!PageUptodate(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500364 btrfs_err(BTRFS_I(inode)->root->fs_info,
365 "error reading free space cache");
Josef Bacika67509c2011-10-05 15:18:58 -0400366 io_ctl_drop_pages(io_ctl);
367 return -EIO;
368 }
369 }
370 }
371
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500372 for (i = 0; i < io_ctl->num_pages; i++) {
373 clear_page_dirty_for_io(io_ctl->pages[i]);
374 set_page_extent_mapped(io_ctl->pages[i]);
375 }
376
Josef Bacika67509c2011-10-05 15:18:58 -0400377 return 0;
378}
379
380static void io_ctl_set_generation(struct io_ctl *io_ctl, u64 generation)
381{
Al Viro528c0322012-04-13 11:03:55 -0400382 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400383
384 io_ctl_map_page(io_ctl, 1);
385
386 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400387 * Skip the csum areas. If we don't check crcs then we just have a
388 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400389 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400390 if (io_ctl->check_crcs) {
391 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
392 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
393 } else {
394 io_ctl->cur += sizeof(u64);
395 io_ctl->size -= sizeof(u64) * 2;
396 }
Josef Bacika67509c2011-10-05 15:18:58 -0400397
398 val = io_ctl->cur;
399 *val = cpu_to_le64(generation);
400 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400401}
402
403static int io_ctl_check_generation(struct io_ctl *io_ctl, u64 generation)
404{
Al Viro528c0322012-04-13 11:03:55 -0400405 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400406
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400407 /*
408 * Skip the crc area. If we don't check crcs then we just have a 64bit
409 * chunk at the front of the first page.
410 */
411 if (io_ctl->check_crcs) {
412 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
413 io_ctl->size -= sizeof(u64) +
414 (sizeof(u32) * io_ctl->num_pages);
415 } else {
416 io_ctl->cur += sizeof(u64);
417 io_ctl->size -= sizeof(u64) * 2;
418 }
Josef Bacika67509c2011-10-05 15:18:58 -0400419
Josef Bacika67509c2011-10-05 15:18:58 -0400420 gen = io_ctl->cur;
421 if (le64_to_cpu(*gen) != generation) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500422 printk_ratelimited(KERN_ERR "BTRFS: space cache generation "
Josef Bacika67509c2011-10-05 15:18:58 -0400423 "(%Lu) does not match inode (%Lu)\n", *gen,
424 generation);
425 io_ctl_unmap_page(io_ctl);
426 return -EIO;
427 }
428 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400429 return 0;
430}
431
432static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
433{
434 u32 *tmp;
435 u32 crc = ~(u32)0;
436 unsigned offset = 0;
437
438 if (!io_ctl->check_crcs) {
439 io_ctl_unmap_page(io_ctl);
440 return;
441 }
442
443 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800444 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400445
Liu Bob0496682013-03-14 14:57:45 +0000446 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400447 PAGE_CACHE_SIZE - offset);
448 btrfs_csum_final(crc, (char *)&crc);
449 io_ctl_unmap_page(io_ctl);
450 tmp = kmap(io_ctl->pages[0]);
451 tmp += index;
452 *tmp = crc;
453 kunmap(io_ctl->pages[0]);
454}
455
456static int io_ctl_check_crc(struct io_ctl *io_ctl, int index)
457{
458 u32 *tmp, val;
459 u32 crc = ~(u32)0;
460 unsigned offset = 0;
461
462 if (!io_ctl->check_crcs) {
463 io_ctl_map_page(io_ctl, 0);
464 return 0;
465 }
466
467 if (index == 0)
468 offset = sizeof(u32) * io_ctl->num_pages;
469
470 tmp = kmap(io_ctl->pages[0]);
471 tmp += index;
472 val = *tmp;
473 kunmap(io_ctl->pages[0]);
474
475 io_ctl_map_page(io_ctl, 0);
Liu Bob0496682013-03-14 14:57:45 +0000476 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400477 PAGE_CACHE_SIZE - offset);
478 btrfs_csum_final(crc, (char *)&crc);
479 if (val != crc) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500480 printk_ratelimited(KERN_ERR "BTRFS: csum mismatch on free "
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400481 "space cache\n");
482 io_ctl_unmap_page(io_ctl);
483 return -EIO;
484 }
485
Josef Bacika67509c2011-10-05 15:18:58 -0400486 return 0;
487}
488
489static int io_ctl_add_entry(struct io_ctl *io_ctl, u64 offset, u64 bytes,
490 void *bitmap)
491{
492 struct btrfs_free_space_entry *entry;
493
494 if (!io_ctl->cur)
495 return -ENOSPC;
496
497 entry = io_ctl->cur;
498 entry->offset = cpu_to_le64(offset);
499 entry->bytes = cpu_to_le64(bytes);
500 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
501 BTRFS_FREE_SPACE_EXTENT;
502 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
503 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
504
505 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
506 return 0;
507
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400508 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400509
510 /* No more pages to map */
511 if (io_ctl->index >= io_ctl->num_pages)
512 return 0;
513
514 /* map the next page */
515 io_ctl_map_page(io_ctl, 1);
516 return 0;
517}
518
519static int io_ctl_add_bitmap(struct io_ctl *io_ctl, void *bitmap)
520{
521 if (!io_ctl->cur)
522 return -ENOSPC;
523
524 /*
525 * If we aren't at the start of the current page, unmap this one and
526 * map the next one if there is any left.
527 */
528 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400529 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400530 if (io_ctl->index >= io_ctl->num_pages)
531 return -ENOSPC;
532 io_ctl_map_page(io_ctl, 0);
533 }
534
535 memcpy(io_ctl->cur, bitmap, PAGE_CACHE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400536 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400537 if (io_ctl->index < io_ctl->num_pages)
538 io_ctl_map_page(io_ctl, 0);
539 return 0;
540}
541
542static void io_ctl_zero_remaining_pages(struct io_ctl *io_ctl)
543{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400544 /*
545 * If we're not on the boundary we know we've modified the page and we
546 * need to crc the page.
547 */
548 if (io_ctl->cur != io_ctl->orig)
549 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
550 else
551 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400552
553 while (io_ctl->index < io_ctl->num_pages) {
554 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400555 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400556 }
557}
558
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400559static int io_ctl_read_entry(struct io_ctl *io_ctl,
560 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400561{
562 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500563 int ret;
564
565 if (!io_ctl->cur) {
566 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
567 if (ret)
568 return ret;
569 }
Josef Bacika67509c2011-10-05 15:18:58 -0400570
571 e = io_ctl->cur;
572 entry->offset = le64_to_cpu(e->offset);
573 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400574 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400575 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
576 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
577
578 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400579 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400580
581 io_ctl_unmap_page(io_ctl);
582
Josef Bacik2f120c02011-11-10 20:45:05 -0500583 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400584}
585
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400586static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
587 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400588{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400589 int ret;
590
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400591 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
592 if (ret)
593 return ret;
594
Josef Bacika67509c2011-10-05 15:18:58 -0400595 memcpy(entry->bitmap, io_ctl->cur, PAGE_CACHE_SIZE);
596 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400597
598 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400599}
600
Josef Bacikcd023e72012-05-14 10:06:40 -0400601/*
602 * Since we attach pinned extents after the fact we can have contiguous sections
603 * of free space that are split up in entries. This poses a problem with the
604 * tree logging stuff since it could have allocated across what appears to be 2
605 * entries since we would have merged the entries when adding the pinned extents
606 * back to the free space cache. So run through the space cache that we just
607 * loaded and merge contiguous entries. This will make the log replay stuff not
608 * blow up and it will make for nicer allocator behavior.
609 */
610static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
611{
612 struct btrfs_free_space *e, *prev = NULL;
613 struct rb_node *n;
614
615again:
616 spin_lock(&ctl->tree_lock);
617 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
618 e = rb_entry(n, struct btrfs_free_space, offset_index);
619 if (!prev)
620 goto next;
621 if (e->bitmap || prev->bitmap)
622 goto next;
623 if (prev->offset + prev->bytes == e->offset) {
624 unlink_free_space(ctl, prev);
625 unlink_free_space(ctl, e);
626 prev->bytes += e->bytes;
627 kmem_cache_free(btrfs_free_space_cachep, e);
628 link_free_space(ctl, prev);
629 prev = NULL;
630 spin_unlock(&ctl->tree_lock);
631 goto again;
632 }
633next:
634 prev = e;
635 }
636 spin_unlock(&ctl->tree_lock);
637}
638
Eric Sandeen48a3b632013-04-25 20:41:01 +0000639static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
640 struct btrfs_free_space_ctl *ctl,
641 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400642{
Josef Bacik9d66e232010-08-25 16:54:15 -0400643 struct btrfs_free_space_header *header;
644 struct extent_buffer *leaf;
Josef Bacika67509c2011-10-05 15:18:58 -0400645 struct io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400646 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400647 struct btrfs_free_space *e, *n;
Josef Bacik9d66e232010-08-25 16:54:15 -0400648 struct list_head bitmaps;
649 u64 num_entries;
650 u64 num_bitmaps;
651 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400652 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400653 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400654
655 INIT_LIST_HEAD(&bitmaps);
656
Josef Bacik9d66e232010-08-25 16:54:15 -0400657 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800658 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400659 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400660
661 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800662 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400663 key.type = 0;
664
665 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800666 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400667 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800668 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400669 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400670 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400671 }
672
Li Zefan0414efa2011-04-20 10:20:14 +0800673 ret = -1;
674
Josef Bacik9d66e232010-08-25 16:54:15 -0400675 leaf = path->nodes[0];
676 header = btrfs_item_ptr(leaf, path->slots[0],
677 struct btrfs_free_space_header);
678 num_entries = btrfs_free_space_entries(leaf, header);
679 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
680 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400681 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400682
683 if (BTRFS_I(inode)->generation != generation) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000684 btrfs_err(root->fs_info,
685 "free space inode generation (%llu) "
686 "did not match free space cache generation (%llu)",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200687 BTRFS_I(inode)->generation, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400688 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400689 }
690
691 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400692 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400693
Miao Xie5349d6c2014-06-19 10:42:49 +0800694 ret = io_ctl_init(&io_ctl, inode, root, 0);
Li Zefan706efc62012-01-09 14:36:28 +0800695 if (ret)
696 return ret;
697
Josef Bacik9d66e232010-08-25 16:54:15 -0400698 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800699 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400700 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400701
Josef Bacika67509c2011-10-05 15:18:58 -0400702 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
703 if (ret)
704 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400705
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400706 ret = io_ctl_check_crc(&io_ctl, 0);
707 if (ret)
708 goto free_cache;
709
Josef Bacika67509c2011-10-05 15:18:58 -0400710 ret = io_ctl_check_generation(&io_ctl, generation);
711 if (ret)
712 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400713
Josef Bacika67509c2011-10-05 15:18:58 -0400714 while (num_entries) {
715 e = kmem_cache_zalloc(btrfs_free_space_cachep,
716 GFP_NOFS);
717 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400718 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400719
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400720 ret = io_ctl_read_entry(&io_ctl, e, &type);
721 if (ret) {
722 kmem_cache_free(btrfs_free_space_cachep, e);
723 goto free_cache;
724 }
725
Josef Bacika67509c2011-10-05 15:18:58 -0400726 if (!e->bytes) {
727 kmem_cache_free(btrfs_free_space_cachep, e);
728 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400729 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400730
Josef Bacika67509c2011-10-05 15:18:58 -0400731 if (type == BTRFS_FREE_SPACE_EXTENT) {
732 spin_lock(&ctl->tree_lock);
733 ret = link_free_space(ctl, e);
734 spin_unlock(&ctl->tree_lock);
735 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000736 btrfs_err(root->fs_info,
737 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500738 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400739 goto free_cache;
740 }
Josef Bacika67509c2011-10-05 15:18:58 -0400741 } else {
Josef Bacikb12d6862013-08-26 17:14:08 -0400742 ASSERT(num_bitmaps);
Josef Bacika67509c2011-10-05 15:18:58 -0400743 num_bitmaps--;
744 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
745 if (!e->bitmap) {
746 kmem_cache_free(
747 btrfs_free_space_cachep, e);
748 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400749 }
Josef Bacika67509c2011-10-05 15:18:58 -0400750 spin_lock(&ctl->tree_lock);
751 ret = link_free_space(ctl, e);
752 ctl->total_bitmaps++;
753 ctl->op->recalc_thresholds(ctl);
754 spin_unlock(&ctl->tree_lock);
755 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000756 btrfs_err(root->fs_info,
757 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400758 kmem_cache_free(btrfs_free_space_cachep, e);
759 goto free_cache;
760 }
761 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400762 }
763
Josef Bacika67509c2011-10-05 15:18:58 -0400764 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400765 }
766
Josef Bacik2f120c02011-11-10 20:45:05 -0500767 io_ctl_unmap_page(&io_ctl);
768
Josef Bacika67509c2011-10-05 15:18:58 -0400769 /*
770 * We add the bitmaps at the end of the entries in order that
771 * the bitmap entries are added to the cache.
772 */
773 list_for_each_entry_safe(e, n, &bitmaps, list) {
774 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400775 ret = io_ctl_read_bitmap(&io_ctl, e);
776 if (ret)
777 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400778 }
779
780 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400781 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400782 ret = 1;
783out:
Josef Bacika67509c2011-10-05 15:18:58 -0400784 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400785 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400786free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400787 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800788 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400789 goto out;
790}
791
Li Zefan0414efa2011-04-20 10:20:14 +0800792int load_free_space_cache(struct btrfs_fs_info *fs_info,
793 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400794{
Li Zefan34d52cb2011-03-29 13:46:06 +0800795 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800796 struct btrfs_root *root = fs_info->tree_root;
797 struct inode *inode;
798 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400799 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800800 bool matched;
801 u64 used = btrfs_block_group_used(&block_group->item);
802
803 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800804 * If this block group has been marked to be cleared for one reason or
805 * another then we can't trust the on disk cache, so just return.
806 */
807 spin_lock(&block_group->lock);
808 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
809 spin_unlock(&block_group->lock);
810 return 0;
811 }
812 spin_unlock(&block_group->lock);
813
814 path = btrfs_alloc_path();
815 if (!path)
816 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400817 path->search_commit_root = 1;
818 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800819
820 inode = lookup_free_space_inode(root, block_group, path);
821 if (IS_ERR(inode)) {
822 btrfs_free_path(path);
823 return 0;
824 }
825
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400826 /* We may have converted the inode and made the cache invalid. */
827 spin_lock(&block_group->lock);
828 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
829 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900830 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400831 goto out;
832 }
833 spin_unlock(&block_group->lock);
834
Li Zefan0414efa2011-04-20 10:20:14 +0800835 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
836 path, block_group->key.objectid);
837 btrfs_free_path(path);
838 if (ret <= 0)
839 goto out;
840
841 spin_lock(&ctl->tree_lock);
842 matched = (ctl->free_space == (block_group->key.offset - used -
843 block_group->bytes_super));
844 spin_unlock(&ctl->tree_lock);
845
846 if (!matched) {
847 __btrfs_remove_free_space_cache(ctl);
Miao Xie32d6b472014-04-24 13:31:55 +0800848 btrfs_warn(fs_info, "block group %llu has wrong amount of free space",
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000849 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800850 ret = -1;
851 }
852out:
853 if (ret < 0) {
854 /* This cache is bogus, make sure it gets cleared */
855 spin_lock(&block_group->lock);
856 block_group->disk_cache_state = BTRFS_DC_CLEAR;
857 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800858 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800859
Miao Xie32d6b472014-04-24 13:31:55 +0800860 btrfs_warn(fs_info, "failed to load free space cache for block group %llu, rebuild it now",
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000861 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800862 }
863
864 iput(inode);
865 return ret;
866}
867
Chris Masond4452bc2014-05-19 20:47:56 -0700868static noinline_for_stack
869int write_cache_extent_entries(struct io_ctl *io_ctl,
870 struct btrfs_free_space_ctl *ctl,
871 struct btrfs_block_group_cache *block_group,
872 int *entries, int *bitmaps,
873 struct list_head *bitmap_list)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400874{
Josef Bacikc09544e2011-08-30 10:19:10 -0400875 int ret;
Chris Masond4452bc2014-05-19 20:47:56 -0700876 struct btrfs_free_cluster *cluster = NULL;
877 struct rb_node *node = rb_first(&ctl->free_space_offset);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400878
Josef Bacik43be2142011-04-01 14:55:00 +0000879 /* Get the cluster for this block_group if it exists */
Chris Masond4452bc2014-05-19 20:47:56 -0700880 if (block_group && !list_empty(&block_group->cluster_list)) {
Josef Bacik43be2142011-04-01 14:55:00 +0000881 cluster = list_entry(block_group->cluster_list.next,
882 struct btrfs_free_cluster,
883 block_group_list);
Chris Masond4452bc2014-05-19 20:47:56 -0700884 }
Josef Bacik43be2142011-04-01 14:55:00 +0000885
Josef Bacikf75b1302011-10-05 10:00:18 -0400886 if (!node && cluster) {
887 node = rb_first(&cluster->root);
888 cluster = NULL;
889 }
890
Josef Bacik0cb59c92010-07-02 12:14:14 -0400891 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400892 while (node) {
893 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400894
Josef Bacika67509c2011-10-05 15:18:58 -0400895 e = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masond4452bc2014-05-19 20:47:56 -0700896 *entries += 1;
Josef Bacik43be2142011-04-01 14:55:00 +0000897
Chris Masond4452bc2014-05-19 20:47:56 -0700898 ret = io_ctl_add_entry(io_ctl, e->offset, e->bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400899 e->bitmap);
900 if (ret)
Chris Masond4452bc2014-05-19 20:47:56 -0700901 goto fail;
Josef Bacika67509c2011-10-05 15:18:58 -0400902
903 if (e->bitmap) {
Chris Masond4452bc2014-05-19 20:47:56 -0700904 list_add_tail(&e->list, bitmap_list);
905 *bitmaps += 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400906 }
907 node = rb_next(node);
908 if (!node && cluster) {
909 node = rb_first(&cluster->root);
910 cluster = NULL;
911 }
912 }
Chris Masond4452bc2014-05-19 20:47:56 -0700913 return 0;
914fail:
915 return -ENOSPC;
916}
917
918static noinline_for_stack int
919update_cache_item(struct btrfs_trans_handle *trans,
920 struct btrfs_root *root,
921 struct inode *inode,
922 struct btrfs_path *path, u64 offset,
923 int entries, int bitmaps)
924{
925 struct btrfs_key key;
926 struct btrfs_free_space_header *header;
927 struct extent_buffer *leaf;
928 int ret;
929
930 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
931 key.offset = offset;
932 key.type = 0;
933
934 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
935 if (ret < 0) {
936 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
937 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
938 GFP_NOFS);
939 goto fail;
940 }
941 leaf = path->nodes[0];
942 if (ret > 0) {
943 struct btrfs_key found_key;
944 ASSERT(path->slots[0]);
945 path->slots[0]--;
946 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
947 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
948 found_key.offset != offset) {
949 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
950 inode->i_size - 1,
951 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
952 NULL, GFP_NOFS);
953 btrfs_release_path(path);
954 goto fail;
955 }
956 }
957
958 BTRFS_I(inode)->generation = trans->transid;
959 header = btrfs_item_ptr(leaf, path->slots[0],
960 struct btrfs_free_space_header);
961 btrfs_set_free_space_entries(leaf, header, entries);
962 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
963 btrfs_set_free_space_generation(leaf, header, trans->transid);
964 btrfs_mark_buffer_dirty(leaf);
965 btrfs_release_path(path);
966
967 return 0;
968
969fail:
970 return -1;
971}
972
973static noinline_for_stack int
Miao Xie5349d6c2014-06-19 10:42:49 +0800974write_pinned_extent_entries(struct btrfs_root *root,
975 struct btrfs_block_group_cache *block_group,
976 struct io_ctl *io_ctl,
977 int *entries)
Chris Masond4452bc2014-05-19 20:47:56 -0700978{
979 u64 start, extent_start, extent_end, len;
Chris Masond4452bc2014-05-19 20:47:56 -0700980 struct extent_io_tree *unpin = NULL;
981 int ret;
Josef Bacika67509c2011-10-05 15:18:58 -0400982
Miao Xie5349d6c2014-06-19 10:42:49 +0800983 if (!block_group)
984 return 0;
985
Josef Bacika67509c2011-10-05 15:18:58 -0400986 /*
987 * We want to add any pinned extents to our free space cache
988 * so we don't leak the space
Chris Masond4452bc2014-05-19 20:47:56 -0700989 *
Li Zefandb804f22012-01-10 16:41:01 +0800990 * We shouldn't have switched the pinned extents yet so this is the
991 * right one
992 */
993 unpin = root->fs_info->pinned_extents;
994
Miao Xie5349d6c2014-06-19 10:42:49 +0800995 start = block_group->key.objectid;
Li Zefandb804f22012-01-10 16:41:01 +0800996
Miao Xie5349d6c2014-06-19 10:42:49 +0800997 while (start < block_group->key.objectid + block_group->key.offset) {
Li Zefandb804f22012-01-10 16:41:01 +0800998 ret = find_first_extent_bit(unpin, start,
999 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -04001000 EXTENT_DIRTY, NULL);
Miao Xie5349d6c2014-06-19 10:42:49 +08001001 if (ret)
1002 return 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001003
Josef Bacika67509c2011-10-05 15:18:58 -04001004 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +08001005 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -04001006 block_group->key.offset)
Miao Xie5349d6c2014-06-19 10:42:49 +08001007 return 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001008
Li Zefandb804f22012-01-10 16:41:01 +08001009 extent_start = max(extent_start, start);
1010 extent_end = min(block_group->key.objectid +
1011 block_group->key.offset, extent_end + 1);
1012 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001013
Chris Masond4452bc2014-05-19 20:47:56 -07001014 *entries += 1;
1015 ret = io_ctl_add_entry(io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -04001016 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001017 return -ENOSPC;
Josef Bacik2f356122011-06-10 15:31:13 -04001018
Li Zefandb804f22012-01-10 16:41:01 +08001019 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -04001020 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001021
Miao Xie5349d6c2014-06-19 10:42:49 +08001022 return 0;
1023}
1024
1025static noinline_for_stack int
1026write_bitmap_entries(struct io_ctl *io_ctl, struct list_head *bitmap_list)
1027{
1028 struct list_head *pos, *n;
1029 int ret;
1030
Josef Bacik0cb59c92010-07-02 12:14:14 -04001031 /* Write out the bitmaps */
Chris Masond4452bc2014-05-19 20:47:56 -07001032 list_for_each_safe(pos, n, bitmap_list) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001033 struct btrfs_free_space *entry =
1034 list_entry(pos, struct btrfs_free_space, list);
1035
Chris Masond4452bc2014-05-19 20:47:56 -07001036 ret = io_ctl_add_bitmap(io_ctl, entry->bitmap);
Josef Bacika67509c2011-10-05 15:18:58 -04001037 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001038 return -ENOSPC;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001039 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001040 }
1041
Miao Xie5349d6c2014-06-19 10:42:49 +08001042 return 0;
1043}
Josef Bacik0cb59c92010-07-02 12:14:14 -04001044
Miao Xie5349d6c2014-06-19 10:42:49 +08001045static int flush_dirty_cache(struct inode *inode)
1046{
1047 int ret;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001048
Josef Bacik0ef8b722013-10-25 16:13:35 -04001049 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Miao Xie5349d6c2014-06-19 10:42:49 +08001050 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001051 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
1052 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1053 GFP_NOFS);
Chris Masond4452bc2014-05-19 20:47:56 -07001054
Miao Xie5349d6c2014-06-19 10:42:49 +08001055 return ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001056}
1057
1058static void noinline_for_stack
1059cleanup_write_cache_enospc(struct inode *inode,
1060 struct io_ctl *io_ctl,
1061 struct extent_state **cached_state,
1062 struct list_head *bitmap_list)
1063{
1064 struct list_head *pos, *n;
Miao Xie5349d6c2014-06-19 10:42:49 +08001065
Chris Masond4452bc2014-05-19 20:47:56 -07001066 list_for_each_safe(pos, n, bitmap_list) {
1067 struct btrfs_free_space *entry =
1068 list_entry(pos, struct btrfs_free_space, list);
1069 list_del_init(&entry->list);
1070 }
1071 io_ctl_drop_pages(io_ctl);
1072 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1073 i_size_read(inode) - 1, cached_state,
1074 GFP_NOFS);
1075}
1076
1077/**
1078 * __btrfs_write_out_cache - write out cached info to an inode
1079 * @root - the root the inode belongs to
1080 * @ctl - the free space cache we are going to write out
1081 * @block_group - the block_group for this cache if it belongs to a block_group
1082 * @trans - the trans handle
1083 * @path - the path to use
1084 * @offset - the offset for the key we'll insert
1085 *
1086 * This function writes out a free space cache struct to disk for quick recovery
1087 * on mount. This will return 0 if it was successfull in writing the cache out,
1088 * and -1 if it was not.
1089 */
1090static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
1091 struct btrfs_free_space_ctl *ctl,
1092 struct btrfs_block_group_cache *block_group,
1093 struct btrfs_trans_handle *trans,
1094 struct btrfs_path *path, u64 offset)
1095{
1096 struct extent_state *cached_state = NULL;
1097 struct io_ctl io_ctl;
Miao Xie5349d6c2014-06-19 10:42:49 +08001098 LIST_HEAD(bitmap_list);
Chris Masond4452bc2014-05-19 20:47:56 -07001099 int entries = 0;
1100 int bitmaps = 0;
1101 int ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001102
1103 if (!i_size_read(inode))
1104 return -1;
1105
Miao Xie5349d6c2014-06-19 10:42:49 +08001106 ret = io_ctl_init(&io_ctl, inode, root, 1);
Chris Masond4452bc2014-05-19 20:47:56 -07001107 if (ret)
1108 return -1;
1109
1110 /* Lock all pages first so we can lock the extent safely. */
1111 io_ctl_prepare_pages(&io_ctl, inode, 0);
1112
1113 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
1114 0, &cached_state);
1115
Chris Masond4452bc2014-05-19 20:47:56 -07001116 io_ctl_set_generation(&io_ctl, trans->transid);
1117
Miao Xie5349d6c2014-06-19 10:42:49 +08001118 /* Write out the extent entries in the free space cache */
Chris Masond4452bc2014-05-19 20:47:56 -07001119 ret = write_cache_extent_entries(&io_ctl, ctl,
1120 block_group, &entries, &bitmaps,
1121 &bitmap_list);
1122 if (ret)
1123 goto out_nospc;
1124
Miao Xie5349d6c2014-06-19 10:42:49 +08001125 /*
1126 * Some spaces that are freed in the current transaction are pinned,
1127 * they will be added into free space cache after the transaction is
1128 * committed, we shouldn't lose them.
1129 */
1130 ret = write_pinned_extent_entries(root, block_group, &io_ctl, &entries);
1131 if (ret)
Chris Masond4452bc2014-05-19 20:47:56 -07001132 goto out_nospc;
Miao Xie5349d6c2014-06-19 10:42:49 +08001133
1134 /* At last, we write out all the bitmaps. */
1135 ret = write_bitmap_entries(&io_ctl, &bitmap_list);
1136 if (ret)
1137 goto out_nospc;
1138
1139 /* Zero out the rest of the pages just to make sure */
1140 io_ctl_zero_remaining_pages(&io_ctl);
1141
1142 /* Everything is written out, now we dirty the pages in the file. */
1143 ret = btrfs_dirty_pages(root, inode, io_ctl.pages, io_ctl.num_pages,
1144 0, i_size_read(inode), &cached_state);
1145 if (ret)
1146 goto out_nospc;
1147
1148 /*
1149 * Release the pages and unlock the extent, we will flush
1150 * them out later
1151 */
1152 io_ctl_drop_pages(&io_ctl);
1153
1154 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1155 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1156
1157 /* Flush the dirty pages in the cache file. */
1158 ret = flush_dirty_cache(inode);
1159 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001160 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001161
Miao Xie5349d6c2014-06-19 10:42:49 +08001162 /* Update the cache item to tell everyone this cache file is valid. */
1163 ret = update_cache_item(trans, root, inode, path, offset,
Chris Masond4452bc2014-05-19 20:47:56 -07001164 entries, bitmaps);
Josef Bacik2f356122011-06-10 15:31:13 -04001165out:
Josef Bacika67509c2011-10-05 15:18:58 -04001166 io_ctl_free(&io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001167 if (ret) {
Josef Bacika67509c2011-10-05 15:18:58 -04001168 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001169 BTRFS_I(inode)->generation = 0;
1170 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001171 btrfs_update_inode(trans, root, inode);
Miao Xie5349d6c2014-06-19 10:42:49 +08001172 return ret;
Josef Bacika67509c2011-10-05 15:18:58 -04001173
1174out_nospc:
Chris Masond4452bc2014-05-19 20:47:56 -07001175 cleanup_write_cache_enospc(inode, &io_ctl, &cached_state, &bitmap_list);
Josef Bacika67509c2011-10-05 15:18:58 -04001176 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001177}
1178
1179int btrfs_write_out_cache(struct btrfs_root *root,
1180 struct btrfs_trans_handle *trans,
1181 struct btrfs_block_group_cache *block_group,
1182 struct btrfs_path *path)
1183{
1184 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1185 struct inode *inode;
1186 int ret = 0;
1187
1188 root = root->fs_info->tree_root;
1189
1190 spin_lock(&block_group->lock);
1191 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1192 spin_unlock(&block_group->lock);
1193 return 0;
1194 }
1195 spin_unlock(&block_group->lock);
1196
1197 inode = lookup_free_space_inode(root, block_group, path);
1198 if (IS_ERR(inode))
1199 return 0;
1200
1201 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
1202 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001203 if (ret) {
Li Zefan0414efa2011-04-20 10:20:14 +08001204 spin_lock(&block_group->lock);
1205 block_group->disk_cache_state = BTRFS_DC_ERROR;
1206 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +08001207 ret = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04001208#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00001209 btrfs_err(root->fs_info,
1210 "failed to write free space cache for block group %llu",
1211 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001212#endif
Li Zefan0414efa2011-04-20 10:20:14 +08001213 }
1214
Josef Bacik0cb59c92010-07-02 12:14:14 -04001215 iput(inode);
1216 return ret;
1217}
1218
Li Zefan34d52cb2011-03-29 13:46:06 +08001219static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001220 u64 offset)
1221{
Josef Bacikb12d6862013-08-26 17:14:08 -04001222 ASSERT(offset >= bitmap_start);
Josef Bacik96303082009-07-13 21:29:25 -04001223 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001224 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001225}
1226
Li Zefan34d52cb2011-03-29 13:46:06 +08001227static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001228{
Li Zefan34d52cb2011-03-29 13:46:06 +08001229 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001230}
1231
Li Zefan34d52cb2011-03-29 13:46:06 +08001232static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001233 u64 offset)
1234{
1235 u64 bitmap_start;
1236 u64 bytes_per_bitmap;
1237
Li Zefan34d52cb2011-03-29 13:46:06 +08001238 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1239 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001240 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
1241 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001242 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001243
1244 return bitmap_start;
1245}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001246
1247static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001248 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001249{
1250 struct rb_node **p = &root->rb_node;
1251 struct rb_node *parent = NULL;
1252 struct btrfs_free_space *info;
1253
1254 while (*p) {
1255 parent = *p;
1256 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1257
Josef Bacik96303082009-07-13 21:29:25 -04001258 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001259 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001260 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001261 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001262 } else {
1263 /*
1264 * we could have a bitmap entry and an extent entry
1265 * share the same offset. If this is the case, we want
1266 * the extent entry to always be found first if we do a
1267 * linear search through the tree, since we want to have
1268 * the quickest allocation time, and allocating from an
1269 * extent is faster than allocating from a bitmap. So
1270 * if we're inserting a bitmap and we find an entry at
1271 * this offset, we want to go right, or after this entry
1272 * logically. If we are inserting an extent and we've
1273 * found a bitmap, we want to go left, or before
1274 * logically.
1275 */
1276 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001277 if (info->bitmap) {
1278 WARN_ON_ONCE(1);
1279 return -EEXIST;
1280 }
Josef Bacik96303082009-07-13 21:29:25 -04001281 p = &(*p)->rb_right;
1282 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001283 if (!info->bitmap) {
1284 WARN_ON_ONCE(1);
1285 return -EEXIST;
1286 }
Josef Bacik96303082009-07-13 21:29:25 -04001287 p = &(*p)->rb_left;
1288 }
1289 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001290 }
1291
1292 rb_link_node(node, parent, p);
1293 rb_insert_color(node, root);
1294
1295 return 0;
1296}
1297
1298/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001299 * searches the tree for the given offset.
1300 *
Josef Bacik96303082009-07-13 21:29:25 -04001301 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1302 * want a section that has at least bytes size and comes at or after the given
1303 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001304 */
Josef Bacik96303082009-07-13 21:29:25 -04001305static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001306tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001307 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001308{
Li Zefan34d52cb2011-03-29 13:46:06 +08001309 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001310 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001311
Josef Bacik96303082009-07-13 21:29:25 -04001312 /* find entry that is closest to the 'offset' */
1313 while (1) {
1314 if (!n) {
1315 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001316 break;
1317 }
Josef Bacik96303082009-07-13 21:29:25 -04001318
1319 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1320 prev = entry;
1321
1322 if (offset < entry->offset)
1323 n = n->rb_left;
1324 else if (offset > entry->offset)
1325 n = n->rb_right;
1326 else
1327 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001328 }
1329
Josef Bacik96303082009-07-13 21:29:25 -04001330 if (bitmap_only) {
1331 if (!entry)
1332 return NULL;
1333 if (entry->bitmap)
1334 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001335
Josef Bacik96303082009-07-13 21:29:25 -04001336 /*
1337 * bitmap entry and extent entry may share same offset,
1338 * in that case, bitmap entry comes after extent entry.
1339 */
1340 n = rb_next(n);
1341 if (!n)
1342 return NULL;
1343 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1344 if (entry->offset != offset)
1345 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001346
Josef Bacik96303082009-07-13 21:29:25 -04001347 WARN_ON(!entry->bitmap);
1348 return entry;
1349 } else if (entry) {
1350 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001351 /*
Josef Bacik96303082009-07-13 21:29:25 -04001352 * if previous extent entry covers the offset,
1353 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001354 */
Miao Xiede6c4112012-10-18 08:18:01 +00001355 n = rb_prev(&entry->offset_index);
1356 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001357 prev = rb_entry(n, struct btrfs_free_space,
1358 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001359 if (!prev->bitmap &&
1360 prev->offset + prev->bytes > offset)
1361 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001362 }
Josef Bacik96303082009-07-13 21:29:25 -04001363 }
1364 return entry;
1365 }
1366
1367 if (!prev)
1368 return NULL;
1369
1370 /* find last entry before the 'offset' */
1371 entry = prev;
1372 if (entry->offset > offset) {
1373 n = rb_prev(&entry->offset_index);
1374 if (n) {
1375 entry = rb_entry(n, struct btrfs_free_space,
1376 offset_index);
Josef Bacikb12d6862013-08-26 17:14:08 -04001377 ASSERT(entry->offset <= offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001378 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001379 if (fuzzy)
1380 return entry;
1381 else
1382 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001383 }
1384 }
1385
Josef Bacik96303082009-07-13 21:29:25 -04001386 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001387 n = rb_prev(&entry->offset_index);
1388 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001389 prev = rb_entry(n, struct btrfs_free_space,
1390 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001391 if (!prev->bitmap &&
1392 prev->offset + prev->bytes > offset)
1393 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001394 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001395 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001396 return entry;
1397 } else if (entry->offset + entry->bytes > offset)
1398 return entry;
1399
1400 if (!fuzzy)
1401 return NULL;
1402
1403 while (1) {
1404 if (entry->bitmap) {
1405 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001406 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001407 break;
1408 } else {
1409 if (entry->offset + entry->bytes > offset)
1410 break;
1411 }
1412
1413 n = rb_next(&entry->offset_index);
1414 if (!n)
1415 return NULL;
1416 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1417 }
1418 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001419}
1420
Li Zefanf333adb2010-11-09 14:57:39 +08001421static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001422__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001423 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001424{
Li Zefan34d52cb2011-03-29 13:46:06 +08001425 rb_erase(&info->offset_index, &ctl->free_space_offset);
1426 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001427}
1428
Li Zefan34d52cb2011-03-29 13:46:06 +08001429static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001430 struct btrfs_free_space *info)
1431{
Li Zefan34d52cb2011-03-29 13:46:06 +08001432 __unlink_free_space(ctl, info);
1433 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001434}
1435
Li Zefan34d52cb2011-03-29 13:46:06 +08001436static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001437 struct btrfs_free_space *info)
1438{
1439 int ret = 0;
1440
Josef Bacikb12d6862013-08-26 17:14:08 -04001441 ASSERT(info->bytes || info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001442 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001443 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001444 if (ret)
1445 return ret;
1446
Li Zefan34d52cb2011-03-29 13:46:06 +08001447 ctl->free_space += info->bytes;
1448 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001449 return ret;
1450}
1451
Li Zefan34d52cb2011-03-29 13:46:06 +08001452static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001453{
Li Zefan34d52cb2011-03-29 13:46:06 +08001454 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001455 u64 max_bytes;
1456 u64 bitmap_bytes;
1457 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001458 u64 size = block_group->key.offset;
Wang Sheng-Hui96009762012-11-30 06:30:14 +00001459 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001460 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1461
Josef Bacikdde57402013-02-12 14:07:51 -05001462 max_bitmaps = max(max_bitmaps, 1);
1463
Josef Bacikb12d6862013-08-26 17:14:08 -04001464 ASSERT(ctl->total_bitmaps <= max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001465
1466 /*
1467 * The goal is to keep the total amount of memory used per 1gb of space
1468 * at or below 32k, so we need to adjust how much memory we allow to be
1469 * used by extent based free space tracking
1470 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001471 if (size < 1024 * 1024 * 1024)
1472 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1473 else
1474 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1475 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001476
Josef Bacik25891f72009-09-11 16:11:20 -04001477 /*
1478 * we want to account for 1 more bitmap than what we have so we can make
1479 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1480 * we add more bitmaps.
1481 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001482 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001483
Josef Bacik25891f72009-09-11 16:11:20 -04001484 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001485 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001486 return;
Josef Bacik96303082009-07-13 21:29:25 -04001487 }
Josef Bacik25891f72009-09-11 16:11:20 -04001488
1489 /*
1490 * we want the extent entry threshold to always be at most 1/2 the maxw
1491 * bytes we can have, or whatever is less than that.
1492 */
1493 extent_bytes = max_bytes - bitmap_bytes;
1494 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1495
Li Zefan34d52cb2011-03-29 13:46:06 +08001496 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001497 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001498}
1499
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001500static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1501 struct btrfs_free_space *info,
1502 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001503{
Li Zefanf38b6e72011-03-14 13:40:51 +08001504 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001505
Li Zefan34d52cb2011-03-29 13:46:06 +08001506 start = offset_to_bit(info->offset, ctl->unit, offset);
1507 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001508 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001509
Li Zefanf38b6e72011-03-14 13:40:51 +08001510 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001511
1512 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001513}
1514
1515static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1516 struct btrfs_free_space *info, u64 offset,
1517 u64 bytes)
1518{
1519 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001520 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001521}
1522
Li Zefan34d52cb2011-03-29 13:46:06 +08001523static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001524 struct btrfs_free_space *info, u64 offset,
1525 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001526{
Li Zefanf38b6e72011-03-14 13:40:51 +08001527 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001528
Li Zefan34d52cb2011-03-29 13:46:06 +08001529 start = offset_to_bit(info->offset, ctl->unit, offset);
1530 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001531 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001532
Li Zefanf38b6e72011-03-14 13:40:51 +08001533 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001534
1535 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001536 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001537}
1538
Miao Xiea4820392013-09-09 13:19:42 +08001539/*
1540 * If we can not find suitable extent, we will use bytes to record
1541 * the size of the max extent.
1542 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001543static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001544 struct btrfs_free_space *bitmap_info, u64 *offset,
1545 u64 *bytes)
1546{
1547 unsigned long found_bits = 0;
Miao Xiea4820392013-09-09 13:19:42 +08001548 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001549 unsigned long bits, i;
1550 unsigned long next_zero;
Miao Xiea4820392013-09-09 13:19:42 +08001551 unsigned long extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001552
Li Zefan34d52cb2011-03-29 13:46:06 +08001553 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001554 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001555 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001556
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001557 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04001558 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1559 BITS_PER_BITMAP, i);
Miao Xiea4820392013-09-09 13:19:42 +08001560 extent_bits = next_zero - i;
1561 if (extent_bits >= bits) {
1562 found_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001563 break;
Miao Xiea4820392013-09-09 13:19:42 +08001564 } else if (extent_bits > max_bits) {
1565 max_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001566 }
1567 i = next_zero;
1568 }
1569
1570 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001571 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1572 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001573 return 0;
1574 }
1575
Miao Xiea4820392013-09-09 13:19:42 +08001576 *bytes = (u64)(max_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001577 return -1;
1578}
1579
Miao Xiea4820392013-09-09 13:19:42 +08001580/* Cache the size of the max extent in bytes */
Li Zefan34d52cb2011-03-29 13:46:06 +08001581static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001582find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
Miao Xiea4820392013-09-09 13:19:42 +08001583 unsigned long align, u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04001584{
1585 struct btrfs_free_space *entry;
1586 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001587 u64 tmp;
1588 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001589 int ret;
1590
Li Zefan34d52cb2011-03-29 13:46:06 +08001591 if (!ctl->free_space_offset.rb_node)
Miao Xiea4820392013-09-09 13:19:42 +08001592 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001593
Li Zefan34d52cb2011-03-29 13:46:06 +08001594 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001595 if (!entry)
Miao Xiea4820392013-09-09 13:19:42 +08001596 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001597
1598 for (node = &entry->offset_index; node; node = rb_next(node)) {
1599 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Miao Xiea4820392013-09-09 13:19:42 +08001600 if (entry->bytes < *bytes) {
1601 if (entry->bytes > *max_extent_size)
1602 *max_extent_size = entry->bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001603 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001604 }
Josef Bacik96303082009-07-13 21:29:25 -04001605
David Woodhouse53b381b2013-01-29 18:40:14 -05001606 /* make sure the space returned is big enough
1607 * to match our requested alignment
1608 */
1609 if (*bytes >= align) {
Miao Xiea4820392013-09-09 13:19:42 +08001610 tmp = entry->offset - ctl->start + align - 1;
David Woodhouse53b381b2013-01-29 18:40:14 -05001611 do_div(tmp, align);
1612 tmp = tmp * align + ctl->start;
1613 align_off = tmp - entry->offset;
1614 } else {
1615 align_off = 0;
1616 tmp = entry->offset;
1617 }
1618
Miao Xiea4820392013-09-09 13:19:42 +08001619 if (entry->bytes < *bytes + align_off) {
1620 if (entry->bytes > *max_extent_size)
1621 *max_extent_size = entry->bytes;
David Woodhouse53b381b2013-01-29 18:40:14 -05001622 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001623 }
David Woodhouse53b381b2013-01-29 18:40:14 -05001624
Josef Bacik96303082009-07-13 21:29:25 -04001625 if (entry->bitmap) {
Miao Xiea4820392013-09-09 13:19:42 +08001626 u64 size = *bytes;
1627
1628 ret = search_bitmap(ctl, entry, &tmp, &size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001629 if (!ret) {
1630 *offset = tmp;
Miao Xiea4820392013-09-09 13:19:42 +08001631 *bytes = size;
Josef Bacik96303082009-07-13 21:29:25 -04001632 return entry;
Miao Xiea4820392013-09-09 13:19:42 +08001633 } else if (size > *max_extent_size) {
1634 *max_extent_size = size;
David Woodhouse53b381b2013-01-29 18:40:14 -05001635 }
Josef Bacik96303082009-07-13 21:29:25 -04001636 continue;
1637 }
1638
David Woodhouse53b381b2013-01-29 18:40:14 -05001639 *offset = tmp;
1640 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001641 return entry;
1642 }
Miao Xiea4820392013-09-09 13:19:42 +08001643out:
Josef Bacik96303082009-07-13 21:29:25 -04001644 return NULL;
1645}
1646
Li Zefan34d52cb2011-03-29 13:46:06 +08001647static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001648 struct btrfs_free_space *info, u64 offset)
1649{
Li Zefan34d52cb2011-03-29 13:46:06 +08001650 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001651 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001652 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001653 link_free_space(ctl, info);
1654 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001655
Li Zefan34d52cb2011-03-29 13:46:06 +08001656 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001657}
1658
Li Zefan34d52cb2011-03-29 13:46:06 +08001659static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001660 struct btrfs_free_space *bitmap_info)
1661{
Li Zefan34d52cb2011-03-29 13:46:06 +08001662 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001663 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001664 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001665 ctl->total_bitmaps--;
1666 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001667}
1668
Li Zefan34d52cb2011-03-29 13:46:06 +08001669static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001670 struct btrfs_free_space *bitmap_info,
1671 u64 *offset, u64 *bytes)
1672{
1673 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001674 u64 search_start, search_bytes;
1675 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001676
1677again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001678 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001679
Josef Bacik6606bb92009-07-31 11:03:58 -04001680 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001681 * We need to search for bits in this bitmap. We could only cover some
1682 * of the extent in this bitmap thanks to how we add space, so we need
1683 * to search for as much as it as we can and clear that amount, and then
1684 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001685 */
1686 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001687 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001688 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001689 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001690 if (ret < 0 || search_start != *offset)
1691 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001692
Josef Bacikbdb7d302012-06-27 15:10:56 -04001693 /* We may have found more bits than what we need */
1694 search_bytes = min(search_bytes, *bytes);
1695
1696 /* Cannot clear past the end of the bitmap */
1697 search_bytes = min(search_bytes, end - search_start + 1);
1698
1699 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1700 *offset += search_bytes;
1701 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001702
1703 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001704 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001705 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001706 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001707
Josef Bacik6606bb92009-07-31 11:03:58 -04001708 /*
1709 * no entry after this bitmap, but we still have bytes to
1710 * remove, so something has gone wrong.
1711 */
1712 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001713 return -EINVAL;
1714
Josef Bacik6606bb92009-07-31 11:03:58 -04001715 bitmap_info = rb_entry(next, struct btrfs_free_space,
1716 offset_index);
1717
1718 /*
1719 * if the next entry isn't a bitmap we need to return to let the
1720 * extent stuff do its work.
1721 */
Josef Bacik96303082009-07-13 21:29:25 -04001722 if (!bitmap_info->bitmap)
1723 return -EAGAIN;
1724
Josef Bacik6606bb92009-07-31 11:03:58 -04001725 /*
1726 * Ok the next item is a bitmap, but it may not actually hold
1727 * the information for the rest of this free space stuff, so
1728 * look for it, and if we don't find it return so we can try
1729 * everything over again.
1730 */
1731 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001732 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001733 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001734 &search_bytes);
1735 if (ret < 0 || search_start != *offset)
1736 return -EAGAIN;
1737
Josef Bacik96303082009-07-13 21:29:25 -04001738 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001739 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001740 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001741
1742 return 0;
1743}
1744
Josef Bacik2cdc3422011-05-27 14:07:49 -04001745static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1746 struct btrfs_free_space *info, u64 offset,
1747 u64 bytes)
1748{
1749 u64 bytes_to_set = 0;
1750 u64 end;
1751
1752 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1753
1754 bytes_to_set = min(end - offset, bytes);
1755
1756 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1757
1758 return bytes_to_set;
1759
1760}
1761
Li Zefan34d52cb2011-03-29 13:46:06 +08001762static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1763 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001764{
Li Zefan34d52cb2011-03-29 13:46:06 +08001765 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001766
1767 /*
1768 * If we are below the extents threshold then we can add this as an
1769 * extent, and don't have to deal with the bitmap
1770 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001771 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001772 /*
1773 * If this block group has some small extents we don't want to
1774 * use up all of our free slots in the cache with them, we want
1775 * to reserve them to larger extents, however if we have plent
1776 * of cache left then go ahead an dadd them, no sense in adding
1777 * the overhead of a bitmap if we don't have to.
1778 */
1779 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001780 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1781 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001782 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001783 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001784 }
1785 }
Josef Bacik96303082009-07-13 21:29:25 -04001786
1787 /*
Josef Bacikdde57402013-02-12 14:07:51 -05001788 * The original block groups from mkfs can be really small, like 8
1789 * megabytes, so don't bother with a bitmap for those entries. However
1790 * some block groups can be smaller than what a bitmap would cover but
1791 * are still large enough that they could overflow the 32k memory limit,
1792 * so allow those block groups to still be allowed to have a bitmap
1793 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04001794 */
Josef Bacikdde57402013-02-12 14:07:51 -05001795 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001796 return false;
1797
1798 return true;
1799}
1800
Josef Bacik2cdc3422011-05-27 14:07:49 -04001801static struct btrfs_free_space_op free_space_op = {
1802 .recalc_thresholds = recalculate_thresholds,
1803 .use_bitmap = use_bitmap,
1804};
1805
Li Zefan34d52cb2011-03-29 13:46:06 +08001806static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1807 struct btrfs_free_space *info)
1808{
1809 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001810 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08001811 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001812 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08001813 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001814
1815 bytes = info->bytes;
1816 offset = info->offset;
1817
Li Zefan34d52cb2011-03-29 13:46:06 +08001818 if (!ctl->op->use_bitmap(ctl, info))
1819 return 0;
1820
Josef Bacik2cdc3422011-05-27 14:07:49 -04001821 if (ctl->op == &free_space_op)
1822 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001823again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001824 /*
1825 * Since we link bitmaps right into the cluster we need to see if we
1826 * have a cluster here, and if so and it has our bitmap we need to add
1827 * the free space to that bitmap.
1828 */
1829 if (block_group && !list_empty(&block_group->cluster_list)) {
1830 struct btrfs_free_cluster *cluster;
1831 struct rb_node *node;
1832 struct btrfs_free_space *entry;
1833
1834 cluster = list_entry(block_group->cluster_list.next,
1835 struct btrfs_free_cluster,
1836 block_group_list);
1837 spin_lock(&cluster->lock);
1838 node = rb_first(&cluster->root);
1839 if (!node) {
1840 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001841 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001842 }
1843
1844 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1845 if (!entry->bitmap) {
1846 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001847 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001848 }
1849
1850 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1851 bytes_added = add_bytes_to_bitmap(ctl, entry,
1852 offset, bytes);
1853 bytes -= bytes_added;
1854 offset += bytes_added;
1855 }
1856 spin_unlock(&cluster->lock);
1857 if (!bytes) {
1858 ret = 1;
1859 goto out;
1860 }
1861 }
Chris Mason38e87882011-06-10 16:36:57 -04001862
1863no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08001864 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001865 1, 0);
1866 if (!bitmap_info) {
Josef Bacikb12d6862013-08-26 17:14:08 -04001867 ASSERT(added == 0);
Josef Bacik96303082009-07-13 21:29:25 -04001868 goto new_bitmap;
1869 }
1870
Josef Bacik2cdc3422011-05-27 14:07:49 -04001871 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1872 bytes -= bytes_added;
1873 offset += bytes_added;
1874 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001875
1876 if (!bytes) {
1877 ret = 1;
1878 goto out;
1879 } else
1880 goto again;
1881
1882new_bitmap:
1883 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001884 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001885 added = 1;
1886 info = NULL;
1887 goto again;
1888 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001889 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001890
1891 /* no pre-allocated info, allocate a new one */
1892 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001893 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1894 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001895 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001896 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001897 ret = -ENOMEM;
1898 goto out;
1899 }
1900 }
1901
1902 /* allocate the bitmap */
1903 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001904 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001905 if (!info->bitmap) {
1906 ret = -ENOMEM;
1907 goto out;
1908 }
1909 goto again;
1910 }
1911
1912out:
1913 if (info) {
1914 if (info->bitmap)
1915 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001916 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001917 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001918
1919 return ret;
1920}
1921
Chris Mason945d8962011-05-22 12:33:42 -04001922static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001923 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001924{
Li Zefan120d66e2010-11-09 14:56:50 +08001925 struct btrfs_free_space *left_info;
1926 struct btrfs_free_space *right_info;
1927 bool merged = false;
1928 u64 offset = info->offset;
1929 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001930
Josef Bacik0f9dd462008-09-23 13:14:11 -04001931 /*
1932 * first we want to see if there is free space adjacent to the range we
1933 * are adding, if there is remove that struct and add a new one to
1934 * cover the entire range
1935 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001936 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001937 if (right_info && rb_prev(&right_info->offset_index))
1938 left_info = rb_entry(rb_prev(&right_info->offset_index),
1939 struct btrfs_free_space, offset_index);
1940 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001941 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001942
Josef Bacik96303082009-07-13 21:29:25 -04001943 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001944 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001945 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001946 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001947 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001948 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001949 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001950 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001951 }
1952
Josef Bacik96303082009-07-13 21:29:25 -04001953 if (left_info && !left_info->bitmap &&
1954 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001955 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001956 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001957 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001958 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001959 info->offset = left_info->offset;
1960 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001961 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001962 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001963 }
1964
Li Zefan120d66e2010-11-09 14:56:50 +08001965 return merged;
1966}
1967
Li Zefan581bb052011-04-20 10:06:11 +08001968int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1969 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001970{
1971 struct btrfs_free_space *info;
1972 int ret = 0;
1973
Josef Bacikdc89e982011-01-28 17:05:48 -05001974 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001975 if (!info)
1976 return -ENOMEM;
1977
1978 info->offset = offset;
1979 info->bytes = bytes;
1980
Li Zefan34d52cb2011-03-29 13:46:06 +08001981 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001982
Li Zefan34d52cb2011-03-29 13:46:06 +08001983 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001984 goto link;
1985
1986 /*
1987 * There was no extent directly to the left or right of this new
1988 * extent then we know we're going to have to allocate a new extent, so
1989 * before we do that see if we need to drop this into a bitmap
1990 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001991 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001992 if (ret < 0) {
1993 goto out;
1994 } else if (ret) {
1995 ret = 0;
1996 goto out;
1997 }
1998link:
Li Zefan34d52cb2011-03-29 13:46:06 +08001999 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002000 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05002001 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002002out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002003 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002004
Josef Bacik0f9dd462008-09-23 13:14:11 -04002005 if (ret) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002006 printk(KERN_CRIT "BTRFS: unable to add free space :%d\n", ret);
Josef Bacikb12d6862013-08-26 17:14:08 -04002007 ASSERT(ret != -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002008 }
2009
Josef Bacik0f9dd462008-09-23 13:14:11 -04002010 return ret;
2011}
2012
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002013int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
2014 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002015{
Li Zefan34d52cb2011-03-29 13:46:06 +08002016 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002017 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05002018 int ret;
2019 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002020
Li Zefan34d52cb2011-03-29 13:46:06 +08002021 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002022
Josef Bacik96303082009-07-13 21:29:25 -04002023again:
Josef Bacikb0175112012-12-18 11:39:19 -05002024 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002025 if (!bytes)
2026 goto out_lock;
2027
Li Zefan34d52cb2011-03-29 13:46:06 +08002028 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002029 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04002030 /*
2031 * oops didn't find an extent that matched the space we wanted
2032 * to remove, look for a bitmap instead
2033 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002034 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04002035 1, 0);
2036 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05002037 /*
2038 * If we found a partial bit of our free space in a
2039 * bitmap but then couldn't find the other part this may
2040 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05002041 */
Josef Bacikb0175112012-12-18 11:39:19 -05002042 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04002043 goto out_lock;
2044 }
Josef Bacik96303082009-07-13 21:29:25 -04002045 }
2046
Josef Bacikb0175112012-12-18 11:39:19 -05002047 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002048 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002049 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04002050 if (offset == info->offset) {
2051 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002052
Josef Bacikbdb7d302012-06-27 15:10:56 -04002053 info->bytes -= to_free;
2054 info->offset += to_free;
2055 if (info->bytes) {
2056 ret = link_free_space(ctl, info);
2057 WARN_ON(ret);
2058 } else {
2059 kmem_cache_free(btrfs_free_space_cachep, info);
2060 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002061
Josef Bacikbdb7d302012-06-27 15:10:56 -04002062 offset += to_free;
2063 bytes -= to_free;
2064 goto again;
2065 } else {
2066 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04002067
Josef Bacikbdb7d302012-06-27 15:10:56 -04002068 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002069 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04002070 WARN_ON(ret);
2071 if (ret)
2072 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04002073
Josef Bacikbdb7d302012-06-27 15:10:56 -04002074 /* Not enough bytes in this entry to satisfy us */
2075 if (old_end < offset + bytes) {
2076 bytes -= old_end - offset;
2077 offset = old_end;
2078 goto again;
2079 } else if (old_end == offset + bytes) {
2080 /* all done */
2081 goto out_lock;
2082 }
2083 spin_unlock(&ctl->tree_lock);
2084
2085 ret = btrfs_add_free_space(block_group, offset + bytes,
2086 old_end - (offset + bytes));
2087 WARN_ON(ret);
2088 goto out;
2089 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002090 }
Josef Bacik96303082009-07-13 21:29:25 -04002091
Li Zefan34d52cb2011-03-29 13:46:06 +08002092 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05002093 if (ret == -EAGAIN) {
2094 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04002095 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05002096 }
Josef Bacik96303082009-07-13 21:29:25 -04002097out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08002098 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002099out:
Josef Bacik25179202008-10-29 14:49:05 -04002100 return ret;
2101}
2102
Josef Bacik0f9dd462008-09-23 13:14:11 -04002103void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
2104 u64 bytes)
2105{
Li Zefan34d52cb2011-03-29 13:46:06 +08002106 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002107 struct btrfs_free_space *info;
2108 struct rb_node *n;
2109 int count = 0;
2110
Li Zefan34d52cb2011-03-29 13:46:06 +08002111 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04002112 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06002113 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002114 count++;
Frank Holtonefe120a2013-12-20 11:37:06 -05002115 btrfs_crit(block_group->fs_info,
2116 "entry offset %llu, bytes %llu, bitmap %s",
2117 info->offset, info->bytes,
Josef Bacik96303082009-07-13 21:29:25 -04002118 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002119 }
Frank Holtonefe120a2013-12-20 11:37:06 -05002120 btrfs_info(block_group->fs_info, "block group has cluster?: %s",
Josef Bacik96303082009-07-13 21:29:25 -04002121 list_empty(&block_group->cluster_list) ? "no" : "yes");
Frank Holtonefe120a2013-12-20 11:37:06 -05002122 btrfs_info(block_group->fs_info,
2123 "%d blocks of free space at or bigger than bytes is", count);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002124}
2125
Li Zefan34d52cb2011-03-29 13:46:06 +08002126void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002127{
Li Zefan34d52cb2011-03-29 13:46:06 +08002128 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002129
Li Zefan34d52cb2011-03-29 13:46:06 +08002130 spin_lock_init(&ctl->tree_lock);
2131 ctl->unit = block_group->sectorsize;
2132 ctl->start = block_group->key.objectid;
2133 ctl->private = block_group;
2134 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002135
Li Zefan34d52cb2011-03-29 13:46:06 +08002136 /*
2137 * we only want to have 32k of ram per block group for keeping
2138 * track of free space, and if we pass 1/2 of that we want to
2139 * start converting things over to using bitmaps
2140 */
2141 ctl->extents_thresh = ((1024 * 32) / 2) /
2142 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002143}
2144
Chris Masonfa9c0d792009-04-03 09:47:43 -04002145/*
2146 * for a given cluster, put all of its extents back into the free
2147 * space cache. If the block group passed doesn't match the block group
2148 * pointed to by the cluster, someone else raced in and freed the
2149 * cluster already. In that case, we just return without changing anything
2150 */
2151static int
2152__btrfs_return_cluster_to_free_space(
2153 struct btrfs_block_group_cache *block_group,
2154 struct btrfs_free_cluster *cluster)
2155{
Li Zefan34d52cb2011-03-29 13:46:06 +08002156 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002157 struct btrfs_free_space *entry;
2158 struct rb_node *node;
2159
2160 spin_lock(&cluster->lock);
2161 if (cluster->block_group != block_group)
2162 goto out;
2163
Josef Bacik96303082009-07-13 21:29:25 -04002164 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002165 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002166 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002167
Chris Masonfa9c0d792009-04-03 09:47:43 -04002168 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002169 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002170 bool bitmap;
2171
Chris Masonfa9c0d792009-04-03 09:47:43 -04002172 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2173 node = rb_next(&entry->offset_index);
2174 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04002175
2176 bitmap = (entry->bitmap != NULL);
2177 if (!bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08002178 try_merge_free_space(ctl, entry, false);
2179 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002180 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002181 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002182 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002183
Chris Masonfa9c0d792009-04-03 09:47:43 -04002184out:
2185 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002186 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002187 return 0;
2188}
2189
Eric Sandeen48a3b632013-04-25 20:41:01 +00002190static void __btrfs_remove_free_space_cache_locked(
2191 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002192{
2193 struct btrfs_free_space *info;
2194 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002195
Li Zefan581bb052011-04-20 10:06:11 +08002196 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2197 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002198 if (!info->bitmap) {
2199 unlink_free_space(ctl, info);
2200 kmem_cache_free(btrfs_free_space_cachep, info);
2201 } else {
2202 free_bitmap(ctl, info);
2203 }
Li Zefan581bb052011-04-20 10:06:11 +08002204 if (need_resched()) {
2205 spin_unlock(&ctl->tree_lock);
2206 cond_resched();
2207 spin_lock(&ctl->tree_lock);
2208 }
2209 }
Chris Mason09655372011-05-21 09:27:38 -04002210}
2211
2212void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2213{
2214 spin_lock(&ctl->tree_lock);
2215 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002216 spin_unlock(&ctl->tree_lock);
2217}
2218
Josef Bacik0f9dd462008-09-23 13:14:11 -04002219void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2220{
Li Zefan34d52cb2011-03-29 13:46:06 +08002221 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002222 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002223 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002224
Li Zefan34d52cb2011-03-29 13:46:06 +08002225 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002226 while ((head = block_group->cluster_list.next) !=
2227 &block_group->cluster_list) {
2228 cluster = list_entry(head, struct btrfs_free_cluster,
2229 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002230
2231 WARN_ON(cluster->block_group != block_group);
2232 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04002233 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002234 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002235 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08002236 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002237 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002238 }
Chris Mason09655372011-05-21 09:27:38 -04002239 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002240 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002241
Josef Bacik0f9dd462008-09-23 13:14:11 -04002242}
2243
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002244u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
Miao Xiea4820392013-09-09 13:19:42 +08002245 u64 offset, u64 bytes, u64 empty_size,
2246 u64 *max_extent_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002247{
Li Zefan34d52cb2011-03-29 13:46:06 +08002248 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002249 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002250 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002251 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002252 u64 align_gap = 0;
2253 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002254
Li Zefan34d52cb2011-03-29 13:46:06 +08002255 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002256 entry = find_free_space(ctl, &offset, &bytes_search,
Miao Xiea4820392013-09-09 13:19:42 +08002257 block_group->full_stripe_len, max_extent_size);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002258 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002259 goto out;
2260
2261 ret = offset;
2262 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002263 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002264 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002265 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002266 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002267 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002268 align_gap_len = offset - entry->offset;
2269 align_gap = entry->offset;
2270
2271 entry->offset = offset + bytes;
2272 WARN_ON(entry->bytes < bytes + align_gap_len);
2273
2274 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002275 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002276 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002277 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002278 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002279 }
Josef Bacik96303082009-07-13 21:29:25 -04002280out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002281 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002282
David Woodhouse53b381b2013-01-29 18:40:14 -05002283 if (align_gap_len)
2284 __btrfs_add_free_space(ctl, align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002285 return ret;
2286}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002287
2288/*
2289 * given a cluster, put all of its extents back into the free space
2290 * cache. If a block group is passed, this function will only free
2291 * a cluster that belongs to the passed block group.
2292 *
2293 * Otherwise, it'll get a reference on the block group pointed to by the
2294 * cluster and remove the cluster from it.
2295 */
2296int btrfs_return_cluster_to_free_space(
2297 struct btrfs_block_group_cache *block_group,
2298 struct btrfs_free_cluster *cluster)
2299{
Li Zefan34d52cb2011-03-29 13:46:06 +08002300 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002301 int ret;
2302
2303 /* first, get a safe pointer to the block group */
2304 spin_lock(&cluster->lock);
2305 if (!block_group) {
2306 block_group = cluster->block_group;
2307 if (!block_group) {
2308 spin_unlock(&cluster->lock);
2309 return 0;
2310 }
2311 } else if (cluster->block_group != block_group) {
2312 /* someone else has already freed it don't redo their work */
2313 spin_unlock(&cluster->lock);
2314 return 0;
2315 }
2316 atomic_inc(&block_group->count);
2317 spin_unlock(&cluster->lock);
2318
Li Zefan34d52cb2011-03-29 13:46:06 +08002319 ctl = block_group->free_space_ctl;
2320
Chris Masonfa9c0d792009-04-03 09:47:43 -04002321 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002322 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002323 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002324 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002325
2326 /* finally drop our ref */
2327 btrfs_put_block_group(block_group);
2328 return ret;
2329}
2330
Josef Bacik96303082009-07-13 21:29:25 -04002331static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2332 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002333 struct btrfs_free_space *entry,
Miao Xiea4820392013-09-09 13:19:42 +08002334 u64 bytes, u64 min_start,
2335 u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04002336{
Li Zefan34d52cb2011-03-29 13:46:06 +08002337 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002338 int err;
2339 u64 search_start = cluster->window_start;
2340 u64 search_bytes = bytes;
2341 u64 ret = 0;
2342
Josef Bacik96303082009-07-13 21:29:25 -04002343 search_start = min_start;
2344 search_bytes = bytes;
2345
Li Zefan34d52cb2011-03-29 13:46:06 +08002346 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Miao Xiea4820392013-09-09 13:19:42 +08002347 if (err) {
2348 if (search_bytes > *max_extent_size)
2349 *max_extent_size = search_bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002350 return 0;
Miao Xiea4820392013-09-09 13:19:42 +08002351 }
Josef Bacik96303082009-07-13 21:29:25 -04002352
2353 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002354 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002355
2356 return ret;
2357}
2358
Chris Masonfa9c0d792009-04-03 09:47:43 -04002359/*
2360 * given a cluster, try to allocate 'bytes' from it, returns 0
2361 * if it couldn't find anything suitably large, or a logical disk offset
2362 * if things worked out
2363 */
2364u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2365 struct btrfs_free_cluster *cluster, u64 bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002366 u64 min_start, u64 *max_extent_size)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002367{
Li Zefan34d52cb2011-03-29 13:46:06 +08002368 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002369 struct btrfs_free_space *entry = NULL;
2370 struct rb_node *node;
2371 u64 ret = 0;
2372
2373 spin_lock(&cluster->lock);
2374 if (bytes > cluster->max_size)
2375 goto out;
2376
2377 if (cluster->block_group != block_group)
2378 goto out;
2379
2380 node = rb_first(&cluster->root);
2381 if (!node)
2382 goto out;
2383
2384 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302385 while (1) {
Miao Xiea4820392013-09-09 13:19:42 +08002386 if (entry->bytes < bytes && entry->bytes > *max_extent_size)
2387 *max_extent_size = entry->bytes;
2388
Josef Bacik4e69b592011-03-21 10:11:24 -04002389 if (entry->bytes < bytes ||
2390 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002391 node = rb_next(&entry->offset_index);
2392 if (!node)
2393 break;
2394 entry = rb_entry(node, struct btrfs_free_space,
2395 offset_index);
2396 continue;
2397 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002398
Josef Bacik4e69b592011-03-21 10:11:24 -04002399 if (entry->bitmap) {
2400 ret = btrfs_alloc_from_bitmap(block_group,
2401 cluster, entry, bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002402 cluster->window_start,
2403 max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002404 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002405 node = rb_next(&entry->offset_index);
2406 if (!node)
2407 break;
2408 entry = rb_entry(node, struct btrfs_free_space,
2409 offset_index);
2410 continue;
2411 }
Josef Bacik9b230622012-01-26 15:01:12 -05002412 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002413 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002414 ret = entry->offset;
2415
2416 entry->offset += bytes;
2417 entry->bytes -= bytes;
2418 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002419
Li Zefan5e71b5d2010-11-09 14:55:34 +08002420 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002421 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002422 break;
2423 }
2424out:
2425 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002426
Li Zefan5e71b5d2010-11-09 14:55:34 +08002427 if (!ret)
2428 return 0;
2429
Li Zefan34d52cb2011-03-29 13:46:06 +08002430 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002431
Li Zefan34d52cb2011-03-29 13:46:06 +08002432 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002433 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002434 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002435 if (entry->bitmap) {
2436 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002437 ctl->total_bitmaps--;
2438 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002439 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002440 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002441 }
2442
Li Zefan34d52cb2011-03-29 13:46:06 +08002443 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002444
Chris Masonfa9c0d792009-04-03 09:47:43 -04002445 return ret;
2446}
2447
Josef Bacik96303082009-07-13 21:29:25 -04002448static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2449 struct btrfs_free_space *entry,
2450 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002451 u64 offset, u64 bytes,
2452 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002453{
Li Zefan34d52cb2011-03-29 13:46:06 +08002454 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002455 unsigned long next_zero;
2456 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002457 unsigned long want_bits;
2458 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002459 unsigned long found_bits;
2460 unsigned long start = 0;
2461 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002462 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002463
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002464 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002465 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002466 want_bits = bytes_to_bits(bytes, ctl->unit);
2467 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002468
2469again:
2470 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002471 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002472 next_zero = find_next_zero_bit(entry->bitmap,
2473 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002474 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002475 found_bits = next_zero - i;
2476 break;
2477 }
2478 i = next_zero;
2479 }
2480
2481 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002482 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002483
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002484 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002485 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002486 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002487 }
2488
2489 total_found += found_bits;
2490
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002491 if (cluster->max_size < found_bits * ctl->unit)
2492 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002493
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002494 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2495 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002496 goto again;
2497 }
2498
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002499 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002500 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002501 ret = tree_insert_offset(&cluster->root, entry->offset,
2502 &entry->offset_index, 1);
Josef Bacikb12d6862013-08-26 17:14:08 -04002503 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002504
Josef Bacik3f7de032011-11-10 08:29:20 -05002505 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002506 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002507 return 0;
2508}
2509
Chris Masonfa9c0d792009-04-03 09:47:43 -04002510/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002511 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002512 * Try to find a cluster with at least bytes total bytes, at least one
2513 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002514 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002515static noinline int
2516setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2517 struct btrfs_free_cluster *cluster,
2518 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002519 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002520{
Li Zefan34d52cb2011-03-29 13:46:06 +08002521 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002522 struct btrfs_free_space *first = NULL;
2523 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002524 struct btrfs_free_space *last;
2525 struct rb_node *node;
Josef Bacik4e69b592011-03-21 10:11:24 -04002526 u64 window_free;
2527 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002528 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002529
Li Zefan34d52cb2011-03-29 13:46:06 +08002530 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002531 if (!entry)
2532 return -ENOSPC;
2533
2534 /*
2535 * We don't want bitmaps, so just move along until we find a normal
2536 * extent entry.
2537 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002538 while (entry->bitmap || entry->bytes < min_bytes) {
2539 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002540 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002541 node = rb_next(&entry->offset_index);
2542 if (!node)
2543 return -ENOSPC;
2544 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2545 }
2546
Josef Bacik4e69b592011-03-21 10:11:24 -04002547 window_free = entry->bytes;
2548 max_extent = entry->bytes;
2549 first = entry;
2550 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002551
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002552 for (node = rb_next(&entry->offset_index); node;
2553 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002554 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2555
Josef Bacik86d4a772011-05-25 13:03:16 -04002556 if (entry->bitmap) {
2557 if (list_empty(&entry->list))
2558 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002559 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002560 }
2561
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002562 if (entry->bytes < min_bytes)
2563 continue;
2564
2565 last = entry;
2566 window_free += entry->bytes;
2567 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002568 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002569 }
2570
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002571 if (window_free < bytes || max_extent < cont1_bytes)
2572 return -ENOSPC;
2573
Josef Bacik4e69b592011-03-21 10:11:24 -04002574 cluster->window_start = first->offset;
2575
2576 node = &first->offset_index;
2577
2578 /*
2579 * now we've found our entries, pull them out of the free space
2580 * cache and put them into the cluster rbtree
2581 */
2582 do {
2583 int ret;
2584
2585 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2586 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002587 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002588 continue;
2589
Li Zefan34d52cb2011-03-29 13:46:06 +08002590 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002591 ret = tree_insert_offset(&cluster->root, entry->offset,
2592 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002593 total_size += entry->bytes;
Josef Bacikb12d6862013-08-26 17:14:08 -04002594 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002595 } while (node && entry != last);
2596
2597 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002598 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002599 return 0;
2600}
2601
2602/*
2603 * This specifically looks for bitmaps that may work in the cluster, we assume
2604 * that we have already failed to find extents that will work.
2605 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002606static noinline int
2607setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2608 struct btrfs_free_cluster *cluster,
2609 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002610 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002611{
Li Zefan34d52cb2011-03-29 13:46:06 +08002612 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002613 struct btrfs_free_space *entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002614 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002615 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002616
Li Zefan34d52cb2011-03-29 13:46:06 +08002617 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002618 return -ENOSPC;
2619
Josef Bacik86d4a772011-05-25 13:03:16 -04002620 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05002621 * The bitmap that covers offset won't be in the list unless offset
2622 * is just its start offset.
2623 */
2624 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
2625 if (entry->offset != bitmap_offset) {
2626 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
2627 if (entry && list_empty(&entry->list))
2628 list_add(&entry->list, bitmaps);
2629 }
2630
Josef Bacik86d4a772011-05-25 13:03:16 -04002631 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05002632 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04002633 continue;
2634 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002635 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002636 if (!ret)
2637 return 0;
2638 }
2639
2640 /*
Li Zefan52621cb2011-11-20 07:33:38 -05002641 * The bitmaps list has all the bitmaps that record free space
2642 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04002643 */
Li Zefan52621cb2011-11-20 07:33:38 -05002644 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04002645}
2646
2647/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002648 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002649 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04002650 * We might not find them all in one contiguous area.
2651 *
2652 * returns zero and sets up cluster if things worked out, otherwise
2653 * it returns -enospc
2654 */
Josef Bacik00361582013-08-14 14:02:47 -04002655int btrfs_find_space_cluster(struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002656 struct btrfs_block_group_cache *block_group,
2657 struct btrfs_free_cluster *cluster,
2658 u64 offset, u64 bytes, u64 empty_size)
2659{
Li Zefan34d52cb2011-03-29 13:46:06 +08002660 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002661 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05002662 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002663 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002664 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002665 int ret;
2666
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002667 /*
2668 * Choose the minimum extent size we'll require for this
2669 * cluster. For SSD_SPREAD, don't allow any fragmentation.
2670 * For metadata, allow allocates with smaller extents. For
2671 * data, keep it dense.
2672 */
Chris Mason451d7582009-06-09 20:28:34 -04002673 if (btrfs_test_opt(root, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002674 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04002675 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002676 cont1_bytes = bytes;
2677 min_bytes = block_group->sectorsize;
2678 } else {
2679 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
2680 min_bytes = block_group->sectorsize;
2681 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002682
Li Zefan34d52cb2011-03-29 13:46:06 +08002683 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002684
2685 /*
2686 * If we know we don't have enough space to make a cluster don't even
2687 * bother doing all the work to try and find one.
2688 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002689 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002690 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002691 return -ENOSPC;
2692 }
2693
Chris Masonfa9c0d792009-04-03 09:47:43 -04002694 spin_lock(&cluster->lock);
2695
2696 /* someone already found a cluster, hooray */
2697 if (cluster->block_group) {
2698 ret = 0;
2699 goto out;
2700 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002701
Josef Bacik3f7de032011-11-10 08:29:20 -05002702 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
2703 min_bytes);
2704
2705 INIT_LIST_HEAD(&bitmaps);
Josef Bacik86d4a772011-05-25 13:03:16 -04002706 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002707 bytes + empty_size,
2708 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002709 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002710 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002711 offset, bytes + empty_size,
2712 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002713
2714 /* Clear our temporary list */
2715 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2716 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002717
2718 if (!ret) {
2719 atomic_inc(&block_group->count);
2720 list_add_tail(&cluster->block_group_list,
2721 &block_group->cluster_list);
2722 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05002723 } else {
2724 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002725 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002726out:
2727 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002728 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002729
2730 return ret;
2731}
2732
2733/*
2734 * simple code to zero out a cluster
2735 */
2736void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2737{
2738 spin_lock_init(&cluster->lock);
2739 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002740 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002741 cluster->max_size = 0;
2742 INIT_LIST_HEAD(&cluster->block_group_list);
2743 cluster->block_group = NULL;
2744}
2745
Li Zefan7fe1e642011-12-29 14:47:27 +08002746static int do_trimming(struct btrfs_block_group_cache *block_group,
2747 u64 *total_trimmed, u64 start, u64 bytes,
2748 u64 reserved_start, u64 reserved_bytes)
2749{
2750 struct btrfs_space_info *space_info = block_group->space_info;
2751 struct btrfs_fs_info *fs_info = block_group->fs_info;
2752 int ret;
2753 int update = 0;
2754 u64 trimmed = 0;
2755
2756 spin_lock(&space_info->lock);
2757 spin_lock(&block_group->lock);
2758 if (!block_group->ro) {
2759 block_group->reserved += reserved_bytes;
2760 space_info->bytes_reserved += reserved_bytes;
2761 update = 1;
2762 }
2763 spin_unlock(&block_group->lock);
2764 spin_unlock(&space_info->lock);
2765
2766 ret = btrfs_error_discard_extent(fs_info->extent_root,
2767 start, bytes, &trimmed);
2768 if (!ret)
2769 *total_trimmed += trimmed;
2770
2771 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
2772
2773 if (update) {
2774 spin_lock(&space_info->lock);
2775 spin_lock(&block_group->lock);
2776 if (block_group->ro)
2777 space_info->bytes_readonly += reserved_bytes;
2778 block_group->reserved -= reserved_bytes;
2779 space_info->bytes_reserved -= reserved_bytes;
2780 spin_unlock(&space_info->lock);
2781 spin_unlock(&block_group->lock);
2782 }
2783
2784 return ret;
2785}
2786
2787static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
2788 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00002789{
Li Zefan34d52cb2011-03-29 13:46:06 +08002790 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08002791 struct btrfs_free_space *entry;
2792 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00002793 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08002794 u64 extent_start;
2795 u64 extent_bytes;
2796 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002797
2798 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002799 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002800
Li Zefan34d52cb2011-03-29 13:46:06 +08002801 if (ctl->free_space < minlen) {
2802 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002803 break;
2804 }
2805
Li Zefan34d52cb2011-03-29 13:46:06 +08002806 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08002807 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002808 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002809 break;
2810 }
2811
Li Zefan7fe1e642011-12-29 14:47:27 +08002812 /* skip bitmaps */
2813 while (entry->bitmap) {
2814 node = rb_next(&entry->offset_index);
2815 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002816 spin_unlock(&ctl->tree_lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08002817 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00002818 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002819 entry = rb_entry(node, struct btrfs_free_space,
2820 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00002821 }
2822
Li Zefan7fe1e642011-12-29 14:47:27 +08002823 if (entry->offset >= end) {
2824 spin_unlock(&ctl->tree_lock);
2825 break;
2826 }
2827
2828 extent_start = entry->offset;
2829 extent_bytes = entry->bytes;
2830 start = max(start, extent_start);
2831 bytes = min(extent_start + extent_bytes, end) - start;
2832 if (bytes < minlen) {
2833 spin_unlock(&ctl->tree_lock);
2834 goto next;
2835 }
2836
2837 unlink_free_space(ctl, entry);
2838 kmem_cache_free(btrfs_free_space_cachep, entry);
2839
Li Zefan34d52cb2011-03-29 13:46:06 +08002840 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002841
Li Zefan7fe1e642011-12-29 14:47:27 +08002842 ret = do_trimming(block_group, total_trimmed, start, bytes,
2843 extent_start, extent_bytes);
2844 if (ret)
2845 break;
2846next:
Li Dongyangf7039b12011-03-24 10:24:28 +00002847 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002848
2849 if (fatal_signal_pending(current)) {
2850 ret = -ERESTARTSYS;
2851 break;
2852 }
2853
2854 cond_resched();
2855 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002856out:
2857 return ret;
2858}
2859
2860static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
2861 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
2862{
2863 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
2864 struct btrfs_free_space *entry;
2865 int ret = 0;
2866 int ret2;
2867 u64 bytes;
2868 u64 offset = offset_to_bitmap(ctl, start);
2869
2870 while (offset < end) {
2871 bool next_bitmap = false;
2872
2873 spin_lock(&ctl->tree_lock);
2874
2875 if (ctl->free_space < minlen) {
2876 spin_unlock(&ctl->tree_lock);
2877 break;
2878 }
2879
2880 entry = tree_search_offset(ctl, offset, 1, 0);
2881 if (!entry) {
2882 spin_unlock(&ctl->tree_lock);
2883 next_bitmap = true;
2884 goto next;
2885 }
2886
2887 bytes = minlen;
2888 ret2 = search_bitmap(ctl, entry, &start, &bytes);
2889 if (ret2 || start >= end) {
2890 spin_unlock(&ctl->tree_lock);
2891 next_bitmap = true;
2892 goto next;
2893 }
2894
2895 bytes = min(bytes, end - start);
2896 if (bytes < minlen) {
2897 spin_unlock(&ctl->tree_lock);
2898 goto next;
2899 }
2900
2901 bitmap_clear_bits(ctl, entry, start, bytes);
2902 if (entry->bytes == 0)
2903 free_bitmap(ctl, entry);
2904
2905 spin_unlock(&ctl->tree_lock);
2906
2907 ret = do_trimming(block_group, total_trimmed, start, bytes,
2908 start, bytes);
2909 if (ret)
2910 break;
2911next:
2912 if (next_bitmap) {
2913 offset += BITS_PER_BITMAP * ctl->unit;
2914 } else {
2915 start += bytes;
2916 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
2917 offset += BITS_PER_BITMAP * ctl->unit;
2918 }
2919
2920 if (fatal_signal_pending(current)) {
2921 ret = -ERESTARTSYS;
2922 break;
2923 }
2924
2925 cond_resched();
2926 }
2927
2928 return ret;
2929}
2930
2931int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2932 u64 *trimmed, u64 start, u64 end, u64 minlen)
2933{
2934 int ret;
2935
2936 *trimmed = 0;
2937
2938 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
2939 if (ret)
2940 return ret;
2941
2942 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
Li Dongyangf7039b12011-03-24 10:24:28 +00002943
2944 return ret;
2945}
Li Zefan581bb052011-04-20 10:06:11 +08002946
2947/*
2948 * Find the left-most item in the cache tree, and then return the
2949 * smallest inode number in the item.
2950 *
2951 * Note: the returned inode number may not be the smallest one in
2952 * the tree, if the left-most item is a bitmap.
2953 */
2954u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2955{
2956 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2957 struct btrfs_free_space *entry = NULL;
2958 u64 ino = 0;
2959
2960 spin_lock(&ctl->tree_lock);
2961
2962 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2963 goto out;
2964
2965 entry = rb_entry(rb_first(&ctl->free_space_offset),
2966 struct btrfs_free_space, offset_index);
2967
2968 if (!entry->bitmap) {
2969 ino = entry->offset;
2970
2971 unlink_free_space(ctl, entry);
2972 entry->offset++;
2973 entry->bytes--;
2974 if (!entry->bytes)
2975 kmem_cache_free(btrfs_free_space_cachep, entry);
2976 else
2977 link_free_space(ctl, entry);
2978 } else {
2979 u64 offset = 0;
2980 u64 count = 1;
2981 int ret;
2982
2983 ret = search_bitmap(ctl, entry, &offset, &count);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002984 /* Logic error; Should be empty if it can't find anything */
Josef Bacikb12d6862013-08-26 17:14:08 -04002985 ASSERT(!ret);
Li Zefan581bb052011-04-20 10:06:11 +08002986
2987 ino = offset;
2988 bitmap_clear_bits(ctl, entry, offset, 1);
2989 if (entry->bytes == 0)
2990 free_bitmap(ctl, entry);
2991 }
2992out:
2993 spin_unlock(&ctl->tree_lock);
2994
2995 return ino;
2996}
Li Zefan82d59022011-04-20 10:33:24 +08002997
2998struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2999 struct btrfs_path *path)
3000{
3001 struct inode *inode = NULL;
3002
3003 spin_lock(&root->cache_lock);
3004 if (root->cache_inode)
3005 inode = igrab(root->cache_inode);
3006 spin_unlock(&root->cache_lock);
3007 if (inode)
3008 return inode;
3009
3010 inode = __lookup_free_space_inode(root, path, 0);
3011 if (IS_ERR(inode))
3012 return inode;
3013
3014 spin_lock(&root->cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02003015 if (!btrfs_fs_closing(root->fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08003016 root->cache_inode = igrab(inode);
3017 spin_unlock(&root->cache_lock);
3018
3019 return inode;
3020}
3021
3022int create_free_ino_inode(struct btrfs_root *root,
3023 struct btrfs_trans_handle *trans,
3024 struct btrfs_path *path)
3025{
3026 return __create_free_space_inode(root, trans, path,
3027 BTRFS_FREE_INO_OBJECTID, 0);
3028}
3029
3030int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
3031{
3032 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
3033 struct btrfs_path *path;
3034 struct inode *inode;
3035 int ret = 0;
3036 u64 root_gen = btrfs_root_generation(&root->root_item);
3037
Chris Mason4b9465c2011-06-03 09:36:29 -04003038 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
3039 return 0;
3040
Li Zefan82d59022011-04-20 10:33:24 +08003041 /*
3042 * If we're unmounting then just return, since this does a search on the
3043 * normal root and not the commit root and we could deadlock.
3044 */
David Sterba7841cb22011-05-31 18:07:27 +02003045 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08003046 return 0;
3047
3048 path = btrfs_alloc_path();
3049 if (!path)
3050 return 0;
3051
3052 inode = lookup_free_ino_inode(root, path);
3053 if (IS_ERR(inode))
3054 goto out;
3055
3056 if (root_gen != BTRFS_I(inode)->generation)
3057 goto out_put;
3058
3059 ret = __load_free_space_cache(root, inode, ctl, path, 0);
3060
3061 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003062 btrfs_err(fs_info,
3063 "failed to load free ino cache for root %llu",
3064 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08003065out_put:
3066 iput(inode);
3067out:
3068 btrfs_free_path(path);
3069 return ret;
3070}
3071
3072int btrfs_write_out_ino_cache(struct btrfs_root *root,
3073 struct btrfs_trans_handle *trans,
Filipe David Borba Manana53645a92013-09-20 14:43:28 +01003074 struct btrfs_path *path,
3075 struct inode *inode)
Li Zefan82d59022011-04-20 10:33:24 +08003076{
3077 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
Li Zefan82d59022011-04-20 10:33:24 +08003078 int ret;
3079
Chris Mason4b9465c2011-06-03 09:36:29 -04003080 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
3081 return 0;
3082
Li Zefan82d59022011-04-20 10:33:24 +08003083 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
Josef Bacikc09544e2011-08-30 10:19:10 -04003084 if (ret) {
3085 btrfs_delalloc_release_metadata(inode, inode->i_size);
3086#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003087 btrfs_err(root->fs_info,
3088 "failed to write free ino cache for root %llu",
3089 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04003090#endif
3091 }
Li Zefan82d59022011-04-20 10:33:24 +08003092
Li Zefan82d59022011-04-20 10:33:24 +08003093 return ret;
3094}
Josef Bacik74255aa2013-03-15 09:47:08 -04003095
3096#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003097/*
3098 * Use this if you need to make a bitmap or extent entry specifically, it
3099 * doesn't do any of the merging that add_free_space does, this acts a lot like
3100 * how the free space cache loading stuff works, so you can get really weird
3101 * configurations.
3102 */
3103int test_add_free_space_entry(struct btrfs_block_group_cache *cache,
3104 u64 offset, u64 bytes, bool bitmap)
Josef Bacik74255aa2013-03-15 09:47:08 -04003105{
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003106 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3107 struct btrfs_free_space *info = NULL, *bitmap_info;
3108 void *map = NULL;
3109 u64 bytes_added;
3110 int ret;
Josef Bacik74255aa2013-03-15 09:47:08 -04003111
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003112again:
3113 if (!info) {
3114 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3115 if (!info)
3116 return -ENOMEM;
Josef Bacik74255aa2013-03-15 09:47:08 -04003117 }
3118
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003119 if (!bitmap) {
3120 spin_lock(&ctl->tree_lock);
3121 info->offset = offset;
3122 info->bytes = bytes;
3123 ret = link_free_space(ctl, info);
3124 spin_unlock(&ctl->tree_lock);
3125 if (ret)
3126 kmem_cache_free(btrfs_free_space_cachep, info);
3127 return ret;
3128 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003129
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003130 if (!map) {
3131 map = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
3132 if (!map) {
3133 kmem_cache_free(btrfs_free_space_cachep, info);
3134 return -ENOMEM;
3135 }
3136 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003137
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003138 spin_lock(&ctl->tree_lock);
3139 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3140 1, 0);
3141 if (!bitmap_info) {
3142 info->bitmap = map;
3143 map = NULL;
3144 add_new_bitmap(ctl, info, offset);
3145 bitmap_info = info;
3146 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003147
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003148 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
3149 bytes -= bytes_added;
3150 offset += bytes_added;
3151 spin_unlock(&ctl->tree_lock);
3152
3153 if (bytes)
3154 goto again;
3155
3156 if (map)
3157 kfree(map);
3158 return 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003159}
3160
3161/*
3162 * Checks to see if the given range is in the free space cache. This is really
3163 * just used to check the absence of space, so if there is free space in the
3164 * range at all we will return 1.
3165 */
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003166int test_check_exists(struct btrfs_block_group_cache *cache,
3167 u64 offset, u64 bytes)
Josef Bacik74255aa2013-03-15 09:47:08 -04003168{
3169 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3170 struct btrfs_free_space *info;
3171 int ret = 0;
3172
3173 spin_lock(&ctl->tree_lock);
3174 info = tree_search_offset(ctl, offset, 0, 0);
3175 if (!info) {
3176 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3177 1, 0);
3178 if (!info)
3179 goto out;
3180 }
3181
3182have_info:
3183 if (info->bitmap) {
3184 u64 bit_off, bit_bytes;
3185 struct rb_node *n;
3186 struct btrfs_free_space *tmp;
3187
3188 bit_off = offset;
3189 bit_bytes = ctl->unit;
3190 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes);
3191 if (!ret) {
3192 if (bit_off == offset) {
3193 ret = 1;
3194 goto out;
3195 } else if (bit_off > offset &&
3196 offset + bytes > bit_off) {
3197 ret = 1;
3198 goto out;
3199 }
3200 }
3201
3202 n = rb_prev(&info->offset_index);
3203 while (n) {
3204 tmp = rb_entry(n, struct btrfs_free_space,
3205 offset_index);
3206 if (tmp->offset + tmp->bytes < offset)
3207 break;
3208 if (offset + bytes < tmp->offset) {
3209 n = rb_prev(&info->offset_index);
3210 continue;
3211 }
3212 info = tmp;
3213 goto have_info;
3214 }
3215
3216 n = rb_next(&info->offset_index);
3217 while (n) {
3218 tmp = rb_entry(n, struct btrfs_free_space,
3219 offset_index);
3220 if (offset + bytes < tmp->offset)
3221 break;
3222 if (tmp->offset + tmp->bytes < offset) {
3223 n = rb_next(&info->offset_index);
3224 continue;
3225 }
3226 info = tmp;
3227 goto have_info;
3228 }
3229
3230 goto out;
3231 }
3232
3233 if (info->offset == offset) {
3234 ret = 1;
3235 goto out;
3236 }
3237
3238 if (offset > info->offset && offset < info->offset + info->bytes)
3239 ret = 1;
3240out:
3241 spin_unlock(&ctl->tree_lock);
3242 return ret;
3243}
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003244#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */