blob: 3f0ddfce96e6ff2bdaaef019ea7ee00f9af070af [file] [log] [blame]
Josef Bacik0f9dd462008-09-23 13:14:11 -04001/*
2 * Copyright (C) 2008 Red Hat. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Josef Bacik96303082009-07-13 21:29:25 -040019#include <linux/pagemap.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040020#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Josef Bacik96303082009-07-13 21:29:25 -040022#include <linux/math64.h>
Josef Bacik6ab60602011-08-08 08:24:46 -040023#include <linux/ratelimit.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040024#include "ctree.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040025#include "free-space-cache.h"
26#include "transaction.h"
Josef Bacik0af3d002010-06-21 14:48:16 -040027#include "disk-io.h"
Josef Bacik43be2142011-04-01 14:55:00 +000028#include "extent_io.h"
Li Zefan581bb052011-04-20 10:06:11 +080029#include "inode-map.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040030
Josef Bacik96303082009-07-13 21:29:25 -040031#define BITS_PER_BITMAP (PAGE_CACHE_SIZE * 8)
32#define MAX_CACHE_BYTES_PER_GIG (32 * 1024)
33
Li Zefan34d52cb2011-03-29 13:46:06 +080034static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040035 struct btrfs_free_space *info);
Josef Bacikcd023e72012-05-14 10:06:40 -040036static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
37 struct btrfs_free_space *info);
Josef Bacik0cb59c92010-07-02 12:14:14 -040038
Li Zefan0414efa2011-04-20 10:20:14 +080039static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
40 struct btrfs_path *path,
41 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040042{
43 struct btrfs_key key;
44 struct btrfs_key location;
45 struct btrfs_disk_key disk_key;
46 struct btrfs_free_space_header *header;
47 struct extent_buffer *leaf;
48 struct inode *inode = NULL;
49 int ret;
50
Josef Bacik0af3d002010-06-21 14:48:16 -040051 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080052 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040053 key.type = 0;
54
55 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
56 if (ret < 0)
57 return ERR_PTR(ret);
58 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020059 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040060 return ERR_PTR(-ENOENT);
61 }
62
63 leaf = path->nodes[0];
64 header = btrfs_item_ptr(leaf, path->slots[0],
65 struct btrfs_free_space_header);
66 btrfs_free_space_key(leaf, header, &disk_key);
67 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020068 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040069
70 inode = btrfs_iget(root->fs_info->sb, &location, root, NULL);
71 if (!inode)
72 return ERR_PTR(-ENOENT);
73 if (IS_ERR(inode))
74 return inode;
75 if (is_bad_inode(inode)) {
76 iput(inode);
77 return ERR_PTR(-ENOENT);
78 }
79
Al Viro528c0322012-04-13 11:03:55 -040080 mapping_set_gfp_mask(inode->i_mapping,
81 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
Miao Xieadae52b2011-03-31 09:43:23 +000082
Li Zefan0414efa2011-04-20 10:20:14 +080083 return inode;
84}
85
86struct inode *lookup_free_space_inode(struct btrfs_root *root,
87 struct btrfs_block_group_cache
88 *block_group, struct btrfs_path *path)
89{
90 struct inode *inode = NULL;
Josef Bacik5b0e95b2011-10-06 08:58:24 -040091 u32 flags = BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
Li Zefan0414efa2011-04-20 10:20:14 +080092
93 spin_lock(&block_group->lock);
94 if (block_group->inode)
95 inode = igrab(block_group->inode);
96 spin_unlock(&block_group->lock);
97 if (inode)
98 return inode;
99
100 inode = __lookup_free_space_inode(root, path,
101 block_group->key.objectid);
102 if (IS_ERR(inode))
103 return inode;
104
Josef Bacik0af3d002010-06-21 14:48:16 -0400105 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400106 if (!((BTRFS_I(inode)->flags & flags) == flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000107 btrfs_info(root->fs_info,
108 "Old style space inode found, converting.");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400109 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
110 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400111 block_group->disk_cache_state = BTRFS_DC_CLEAR;
112 }
113
Josef Bacik300e4f82011-08-29 14:06:00 -0400114 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400115 block_group->inode = igrab(inode);
116 block_group->iref = 1;
117 }
118 spin_unlock(&block_group->lock);
119
120 return inode;
121}
122
Eric Sandeen48a3b632013-04-25 20:41:01 +0000123static int __create_free_space_inode(struct btrfs_root *root,
124 struct btrfs_trans_handle *trans,
125 struct btrfs_path *path,
126 u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400127{
128 struct btrfs_key key;
129 struct btrfs_disk_key disk_key;
130 struct btrfs_free_space_header *header;
131 struct btrfs_inode_item *inode_item;
132 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400133 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400134 int ret;
135
Li Zefan0414efa2011-04-20 10:20:14 +0800136 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400137 if (ret)
138 return ret;
139
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400140 /* We inline crc's for the free disk space cache */
141 if (ino != BTRFS_FREE_INO_OBJECTID)
142 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
143
Josef Bacik0af3d002010-06-21 14:48:16 -0400144 leaf = path->nodes[0];
145 inode_item = btrfs_item_ptr(leaf, path->slots[0],
146 struct btrfs_inode_item);
147 btrfs_item_key(leaf, &disk_key, path->slots[0]);
148 memset_extent_buffer(leaf, 0, (unsigned long)inode_item,
149 sizeof(*inode_item));
150 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
151 btrfs_set_inode_size(leaf, inode_item, 0);
152 btrfs_set_inode_nbytes(leaf, inode_item, 0);
153 btrfs_set_inode_uid(leaf, inode_item, 0);
154 btrfs_set_inode_gid(leaf, inode_item, 0);
155 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400156 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400157 btrfs_set_inode_nlink(leaf, inode_item, 1);
158 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800159 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400160 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200161 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400162
163 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800164 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400165 key.type = 0;
166
167 ret = btrfs_insert_empty_item(trans, root, path, &key,
168 sizeof(struct btrfs_free_space_header));
169 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200170 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400171 return ret;
172 }
173 leaf = path->nodes[0];
174 header = btrfs_item_ptr(leaf, path->slots[0],
175 struct btrfs_free_space_header);
176 memset_extent_buffer(leaf, 0, (unsigned long)header, sizeof(*header));
177 btrfs_set_free_space_key(leaf, header, &disk_key);
178 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200179 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400180
181 return 0;
182}
183
Li Zefan0414efa2011-04-20 10:20:14 +0800184int create_free_space_inode(struct btrfs_root *root,
185 struct btrfs_trans_handle *trans,
186 struct btrfs_block_group_cache *block_group,
187 struct btrfs_path *path)
188{
189 int ret;
190 u64 ino;
191
192 ret = btrfs_find_free_objectid(root, &ino);
193 if (ret < 0)
194 return ret;
195
196 return __create_free_space_inode(root, trans, path, ino,
197 block_group->key.objectid);
198}
199
Miao Xie7b61cd92013-05-13 13:55:09 +0000200int btrfs_check_trunc_cache_free_space(struct btrfs_root *root,
201 struct btrfs_block_rsv *rsv)
Josef Bacik0af3d002010-06-21 14:48:16 -0400202{
Josef Bacikc8174312011-11-02 09:29:35 -0400203 u64 needed_bytes;
Miao Xie7b61cd92013-05-13 13:55:09 +0000204 int ret;
Josef Bacikc8174312011-11-02 09:29:35 -0400205
206 /* 1 for slack space, 1 for updating the inode */
207 needed_bytes = btrfs_calc_trunc_metadata_size(root, 1) +
208 btrfs_calc_trans_metadata_size(root, 1);
209
Miao Xie7b61cd92013-05-13 13:55:09 +0000210 spin_lock(&rsv->lock);
211 if (rsv->reserved < needed_bytes)
212 ret = -ENOSPC;
213 else
214 ret = 0;
215 spin_unlock(&rsv->lock);
Wei Yongjun4b286cd2013-05-21 02:39:21 +0000216 return ret;
Miao Xie7b61cd92013-05-13 13:55:09 +0000217}
218
219int btrfs_truncate_free_space_cache(struct btrfs_root *root,
220 struct btrfs_trans_handle *trans,
221 struct btrfs_path *path,
222 struct inode *inode)
223{
Miao Xie7b61cd92013-05-13 13:55:09 +0000224 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -0400225
Josef Bacik0af3d002010-06-21 14:48:16 -0400226 btrfs_i_size_write(inode, 0);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700227 truncate_pagecache(inode, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -0400228
229 /*
230 * We don't need an orphan item because truncating the free space cache
231 * will never be split across transactions.
232 */
233 ret = btrfs_truncate_inode_items(trans, root, inode,
234 0, BTRFS_EXTENT_DATA_KEY);
235 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100236 btrfs_abort_transaction(trans, root, ret);
Josef Bacik0af3d002010-06-21 14:48:16 -0400237 return ret;
238 }
239
Li Zefan82d59022011-04-20 10:33:24 +0800240 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100241 if (ret)
242 btrfs_abort_transaction(trans, root, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400243
Li Zefan82d59022011-04-20 10:33:24 +0800244 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400245}
246
Josef Bacik9d66e232010-08-25 16:54:15 -0400247static int readahead_cache(struct inode *inode)
248{
249 struct file_ra_state *ra;
250 unsigned long last_index;
251
252 ra = kzalloc(sizeof(*ra), GFP_NOFS);
253 if (!ra)
254 return -ENOMEM;
255
256 file_ra_state_init(ra, inode->i_mapping);
257 last_index = (i_size_read(inode) - 1) >> PAGE_CACHE_SHIFT;
258
259 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
260
261 kfree(ra);
262
263 return 0;
264}
265
Josef Bacika67509c2011-10-05 15:18:58 -0400266struct io_ctl {
267 void *cur, *orig;
268 struct page *page;
269 struct page **pages;
270 struct btrfs_root *root;
271 unsigned long size;
272 int index;
273 int num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400274 unsigned check_crcs:1;
Josef Bacika67509c2011-10-05 15:18:58 -0400275};
276
277static int io_ctl_init(struct io_ctl *io_ctl, struct inode *inode,
278 struct btrfs_root *root)
279{
280 memset(io_ctl, 0, sizeof(struct io_ctl));
281 io_ctl->num_pages = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
282 PAGE_CACHE_SHIFT;
283 io_ctl->pages = kzalloc(sizeof(struct page *) * io_ctl->num_pages,
284 GFP_NOFS);
285 if (!io_ctl->pages)
286 return -ENOMEM;
287 io_ctl->root = root;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400288 if (btrfs_ino(inode) != BTRFS_FREE_INO_OBJECTID)
289 io_ctl->check_crcs = 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400290 return 0;
291}
292
293static void io_ctl_free(struct io_ctl *io_ctl)
294{
295 kfree(io_ctl->pages);
296}
297
298static void io_ctl_unmap_page(struct io_ctl *io_ctl)
299{
300 if (io_ctl->cur) {
301 kunmap(io_ctl->page);
302 io_ctl->cur = NULL;
303 io_ctl->orig = NULL;
304 }
305}
306
307static void io_ctl_map_page(struct io_ctl *io_ctl, int clear)
308{
Josef Bacikb12d6862013-08-26 17:14:08 -0400309 ASSERT(io_ctl->index < io_ctl->num_pages);
Josef Bacika67509c2011-10-05 15:18:58 -0400310 io_ctl->page = io_ctl->pages[io_ctl->index++];
311 io_ctl->cur = kmap(io_ctl->page);
312 io_ctl->orig = io_ctl->cur;
313 io_ctl->size = PAGE_CACHE_SIZE;
314 if (clear)
315 memset(io_ctl->cur, 0, PAGE_CACHE_SIZE);
316}
317
318static void io_ctl_drop_pages(struct io_ctl *io_ctl)
319{
320 int i;
321
322 io_ctl_unmap_page(io_ctl);
323
324 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800325 if (io_ctl->pages[i]) {
326 ClearPageChecked(io_ctl->pages[i]);
327 unlock_page(io_ctl->pages[i]);
328 page_cache_release(io_ctl->pages[i]);
329 }
Josef Bacika67509c2011-10-05 15:18:58 -0400330 }
331}
332
333static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct inode *inode,
334 int uptodate)
335{
336 struct page *page;
337 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
338 int i;
339
340 for (i = 0; i < io_ctl->num_pages; i++) {
341 page = find_or_create_page(inode->i_mapping, i, mask);
342 if (!page) {
343 io_ctl_drop_pages(io_ctl);
344 return -ENOMEM;
345 }
346 io_ctl->pages[i] = page;
347 if (uptodate && !PageUptodate(page)) {
348 btrfs_readpage(NULL, page);
349 lock_page(page);
350 if (!PageUptodate(page)) {
351 printk(KERN_ERR "btrfs: error reading free "
352 "space cache\n");
353 io_ctl_drop_pages(io_ctl);
354 return -EIO;
355 }
356 }
357 }
358
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500359 for (i = 0; i < io_ctl->num_pages; i++) {
360 clear_page_dirty_for_io(io_ctl->pages[i]);
361 set_page_extent_mapped(io_ctl->pages[i]);
362 }
363
Josef Bacika67509c2011-10-05 15:18:58 -0400364 return 0;
365}
366
367static void io_ctl_set_generation(struct io_ctl *io_ctl, u64 generation)
368{
Al Viro528c0322012-04-13 11:03:55 -0400369 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400370
371 io_ctl_map_page(io_ctl, 1);
372
373 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400374 * Skip the csum areas. If we don't check crcs then we just have a
375 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400376 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400377 if (io_ctl->check_crcs) {
378 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
379 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
380 } else {
381 io_ctl->cur += sizeof(u64);
382 io_ctl->size -= sizeof(u64) * 2;
383 }
Josef Bacika67509c2011-10-05 15:18:58 -0400384
385 val = io_ctl->cur;
386 *val = cpu_to_le64(generation);
387 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400388}
389
390static int io_ctl_check_generation(struct io_ctl *io_ctl, u64 generation)
391{
Al Viro528c0322012-04-13 11:03:55 -0400392 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400393
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400394 /*
395 * Skip the crc area. If we don't check crcs then we just have a 64bit
396 * chunk at the front of the first page.
397 */
398 if (io_ctl->check_crcs) {
399 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
400 io_ctl->size -= sizeof(u64) +
401 (sizeof(u32) * io_ctl->num_pages);
402 } else {
403 io_ctl->cur += sizeof(u64);
404 io_ctl->size -= sizeof(u64) * 2;
405 }
Josef Bacika67509c2011-10-05 15:18:58 -0400406
Josef Bacika67509c2011-10-05 15:18:58 -0400407 gen = io_ctl->cur;
408 if (le64_to_cpu(*gen) != generation) {
409 printk_ratelimited(KERN_ERR "btrfs: space cache generation "
410 "(%Lu) does not match inode (%Lu)\n", *gen,
411 generation);
412 io_ctl_unmap_page(io_ctl);
413 return -EIO;
414 }
415 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400416 return 0;
417}
418
419static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
420{
421 u32 *tmp;
422 u32 crc = ~(u32)0;
423 unsigned offset = 0;
424
425 if (!io_ctl->check_crcs) {
426 io_ctl_unmap_page(io_ctl);
427 return;
428 }
429
430 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800431 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400432
Liu Bob0496682013-03-14 14:57:45 +0000433 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400434 PAGE_CACHE_SIZE - offset);
435 btrfs_csum_final(crc, (char *)&crc);
436 io_ctl_unmap_page(io_ctl);
437 tmp = kmap(io_ctl->pages[0]);
438 tmp += index;
439 *tmp = crc;
440 kunmap(io_ctl->pages[0]);
441}
442
443static int io_ctl_check_crc(struct io_ctl *io_ctl, int index)
444{
445 u32 *tmp, val;
446 u32 crc = ~(u32)0;
447 unsigned offset = 0;
448
449 if (!io_ctl->check_crcs) {
450 io_ctl_map_page(io_ctl, 0);
451 return 0;
452 }
453
454 if (index == 0)
455 offset = sizeof(u32) * io_ctl->num_pages;
456
457 tmp = kmap(io_ctl->pages[0]);
458 tmp += index;
459 val = *tmp;
460 kunmap(io_ctl->pages[0]);
461
462 io_ctl_map_page(io_ctl, 0);
Liu Bob0496682013-03-14 14:57:45 +0000463 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400464 PAGE_CACHE_SIZE - offset);
465 btrfs_csum_final(crc, (char *)&crc);
466 if (val != crc) {
467 printk_ratelimited(KERN_ERR "btrfs: csum mismatch on free "
468 "space cache\n");
469 io_ctl_unmap_page(io_ctl);
470 return -EIO;
471 }
472
Josef Bacika67509c2011-10-05 15:18:58 -0400473 return 0;
474}
475
476static int io_ctl_add_entry(struct io_ctl *io_ctl, u64 offset, u64 bytes,
477 void *bitmap)
478{
479 struct btrfs_free_space_entry *entry;
480
481 if (!io_ctl->cur)
482 return -ENOSPC;
483
484 entry = io_ctl->cur;
485 entry->offset = cpu_to_le64(offset);
486 entry->bytes = cpu_to_le64(bytes);
487 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
488 BTRFS_FREE_SPACE_EXTENT;
489 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
490 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
491
492 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
493 return 0;
494
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400495 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400496
497 /* No more pages to map */
498 if (io_ctl->index >= io_ctl->num_pages)
499 return 0;
500
501 /* map the next page */
502 io_ctl_map_page(io_ctl, 1);
503 return 0;
504}
505
506static int io_ctl_add_bitmap(struct io_ctl *io_ctl, void *bitmap)
507{
508 if (!io_ctl->cur)
509 return -ENOSPC;
510
511 /*
512 * If we aren't at the start of the current page, unmap this one and
513 * map the next one if there is any left.
514 */
515 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400516 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400517 if (io_ctl->index >= io_ctl->num_pages)
518 return -ENOSPC;
519 io_ctl_map_page(io_ctl, 0);
520 }
521
522 memcpy(io_ctl->cur, bitmap, PAGE_CACHE_SIZE);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400523 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400524 if (io_ctl->index < io_ctl->num_pages)
525 io_ctl_map_page(io_ctl, 0);
526 return 0;
527}
528
529static void io_ctl_zero_remaining_pages(struct io_ctl *io_ctl)
530{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400531 /*
532 * If we're not on the boundary we know we've modified the page and we
533 * need to crc the page.
534 */
535 if (io_ctl->cur != io_ctl->orig)
536 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
537 else
538 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400539
540 while (io_ctl->index < io_ctl->num_pages) {
541 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400542 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400543 }
544}
545
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400546static int io_ctl_read_entry(struct io_ctl *io_ctl,
547 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400548{
549 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500550 int ret;
551
552 if (!io_ctl->cur) {
553 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
554 if (ret)
555 return ret;
556 }
Josef Bacika67509c2011-10-05 15:18:58 -0400557
558 e = io_ctl->cur;
559 entry->offset = le64_to_cpu(e->offset);
560 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400561 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400562 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
563 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
564
565 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400566 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400567
568 io_ctl_unmap_page(io_ctl);
569
Josef Bacik2f120c02011-11-10 20:45:05 -0500570 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400571}
572
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400573static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
574 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400575{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400576 int ret;
577
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400578 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
579 if (ret)
580 return ret;
581
Josef Bacika67509c2011-10-05 15:18:58 -0400582 memcpy(entry->bitmap, io_ctl->cur, PAGE_CACHE_SIZE);
583 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400584
585 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400586}
587
Josef Bacikcd023e72012-05-14 10:06:40 -0400588/*
589 * Since we attach pinned extents after the fact we can have contiguous sections
590 * of free space that are split up in entries. This poses a problem with the
591 * tree logging stuff since it could have allocated across what appears to be 2
592 * entries since we would have merged the entries when adding the pinned extents
593 * back to the free space cache. So run through the space cache that we just
594 * loaded and merge contiguous entries. This will make the log replay stuff not
595 * blow up and it will make for nicer allocator behavior.
596 */
597static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
598{
599 struct btrfs_free_space *e, *prev = NULL;
600 struct rb_node *n;
601
602again:
603 spin_lock(&ctl->tree_lock);
604 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
605 e = rb_entry(n, struct btrfs_free_space, offset_index);
606 if (!prev)
607 goto next;
608 if (e->bitmap || prev->bitmap)
609 goto next;
610 if (prev->offset + prev->bytes == e->offset) {
611 unlink_free_space(ctl, prev);
612 unlink_free_space(ctl, e);
613 prev->bytes += e->bytes;
614 kmem_cache_free(btrfs_free_space_cachep, e);
615 link_free_space(ctl, prev);
616 prev = NULL;
617 spin_unlock(&ctl->tree_lock);
618 goto again;
619 }
620next:
621 prev = e;
622 }
623 spin_unlock(&ctl->tree_lock);
624}
625
Eric Sandeen48a3b632013-04-25 20:41:01 +0000626static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
627 struct btrfs_free_space_ctl *ctl,
628 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400629{
Josef Bacik9d66e232010-08-25 16:54:15 -0400630 struct btrfs_free_space_header *header;
631 struct extent_buffer *leaf;
Josef Bacika67509c2011-10-05 15:18:58 -0400632 struct io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400633 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400634 struct btrfs_free_space *e, *n;
Josef Bacik9d66e232010-08-25 16:54:15 -0400635 struct list_head bitmaps;
636 u64 num_entries;
637 u64 num_bitmaps;
638 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400639 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400640 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400641
642 INIT_LIST_HEAD(&bitmaps);
643
Josef Bacik9d66e232010-08-25 16:54:15 -0400644 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800645 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400646 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400647
648 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800649 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400650 key.type = 0;
651
652 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800653 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400654 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800655 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400656 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400657 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400658 }
659
Li Zefan0414efa2011-04-20 10:20:14 +0800660 ret = -1;
661
Josef Bacik9d66e232010-08-25 16:54:15 -0400662 leaf = path->nodes[0];
663 header = btrfs_item_ptr(leaf, path->slots[0],
664 struct btrfs_free_space_header);
665 num_entries = btrfs_free_space_entries(leaf, header);
666 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
667 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400668 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400669
670 if (BTRFS_I(inode)->generation != generation) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000671 btrfs_err(root->fs_info,
672 "free space inode generation (%llu) "
673 "did not match free space cache generation (%llu)",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200674 BTRFS_I(inode)->generation, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400675 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400676 }
677
678 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400679 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400680
Li Zefan706efc62012-01-09 14:36:28 +0800681 ret = io_ctl_init(&io_ctl, inode, root);
682 if (ret)
683 return ret;
684
Josef Bacik9d66e232010-08-25 16:54:15 -0400685 ret = readahead_cache(inode);
Li Zefan0414efa2011-04-20 10:20:14 +0800686 if (ret)
Josef Bacik9d66e232010-08-25 16:54:15 -0400687 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400688
Josef Bacika67509c2011-10-05 15:18:58 -0400689 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
690 if (ret)
691 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400692
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400693 ret = io_ctl_check_crc(&io_ctl, 0);
694 if (ret)
695 goto free_cache;
696
Josef Bacika67509c2011-10-05 15:18:58 -0400697 ret = io_ctl_check_generation(&io_ctl, generation);
698 if (ret)
699 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400700
Josef Bacika67509c2011-10-05 15:18:58 -0400701 while (num_entries) {
702 e = kmem_cache_zalloc(btrfs_free_space_cachep,
703 GFP_NOFS);
704 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400705 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400706
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400707 ret = io_ctl_read_entry(&io_ctl, e, &type);
708 if (ret) {
709 kmem_cache_free(btrfs_free_space_cachep, e);
710 goto free_cache;
711 }
712
Josef Bacika67509c2011-10-05 15:18:58 -0400713 if (!e->bytes) {
714 kmem_cache_free(btrfs_free_space_cachep, e);
715 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400716 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400717
Josef Bacika67509c2011-10-05 15:18:58 -0400718 if (type == BTRFS_FREE_SPACE_EXTENT) {
719 spin_lock(&ctl->tree_lock);
720 ret = link_free_space(ctl, e);
721 spin_unlock(&ctl->tree_lock);
722 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000723 btrfs_err(root->fs_info,
724 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500725 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400726 goto free_cache;
727 }
Josef Bacika67509c2011-10-05 15:18:58 -0400728 } else {
Josef Bacikb12d6862013-08-26 17:14:08 -0400729 ASSERT(num_bitmaps);
Josef Bacika67509c2011-10-05 15:18:58 -0400730 num_bitmaps--;
731 e->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
732 if (!e->bitmap) {
733 kmem_cache_free(
734 btrfs_free_space_cachep, e);
735 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400736 }
Josef Bacika67509c2011-10-05 15:18:58 -0400737 spin_lock(&ctl->tree_lock);
738 ret = link_free_space(ctl, e);
739 ctl->total_bitmaps++;
740 ctl->op->recalc_thresholds(ctl);
741 spin_unlock(&ctl->tree_lock);
742 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000743 btrfs_err(root->fs_info,
744 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400745 kmem_cache_free(btrfs_free_space_cachep, e);
746 goto free_cache;
747 }
748 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400749 }
750
Josef Bacika67509c2011-10-05 15:18:58 -0400751 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400752 }
753
Josef Bacik2f120c02011-11-10 20:45:05 -0500754 io_ctl_unmap_page(&io_ctl);
755
Josef Bacika67509c2011-10-05 15:18:58 -0400756 /*
757 * We add the bitmaps at the end of the entries in order that
758 * the bitmap entries are added to the cache.
759 */
760 list_for_each_entry_safe(e, n, &bitmaps, list) {
761 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400762 ret = io_ctl_read_bitmap(&io_ctl, e);
763 if (ret)
764 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400765 }
766
767 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400768 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400769 ret = 1;
770out:
Josef Bacika67509c2011-10-05 15:18:58 -0400771 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400772 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400773free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400774 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800775 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400776 goto out;
777}
778
Li Zefan0414efa2011-04-20 10:20:14 +0800779int load_free_space_cache(struct btrfs_fs_info *fs_info,
780 struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400781{
Li Zefan34d52cb2011-03-29 13:46:06 +0800782 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800783 struct btrfs_root *root = fs_info->tree_root;
784 struct inode *inode;
785 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400786 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800787 bool matched;
788 u64 used = btrfs_block_group_used(&block_group->item);
789
790 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800791 * If this block group has been marked to be cleared for one reason or
792 * another then we can't trust the on disk cache, so just return.
793 */
794 spin_lock(&block_group->lock);
795 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
796 spin_unlock(&block_group->lock);
797 return 0;
798 }
799 spin_unlock(&block_group->lock);
800
801 path = btrfs_alloc_path();
802 if (!path)
803 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400804 path->search_commit_root = 1;
805 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800806
807 inode = lookup_free_space_inode(root, block_group, path);
808 if (IS_ERR(inode)) {
809 btrfs_free_path(path);
810 return 0;
811 }
812
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400813 /* We may have converted the inode and made the cache invalid. */
814 spin_lock(&block_group->lock);
815 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
816 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900817 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400818 goto out;
819 }
820 spin_unlock(&block_group->lock);
821
Li Zefan0414efa2011-04-20 10:20:14 +0800822 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
823 path, block_group->key.objectid);
824 btrfs_free_path(path);
825 if (ret <= 0)
826 goto out;
827
828 spin_lock(&ctl->tree_lock);
829 matched = (ctl->free_space == (block_group->key.offset - used -
830 block_group->bytes_super));
831 spin_unlock(&ctl->tree_lock);
832
833 if (!matched) {
834 __btrfs_remove_free_space_cache(ctl);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000835 btrfs_err(fs_info, "block group %llu has wrong amount of free space",
836 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800837 ret = -1;
838 }
839out:
840 if (ret < 0) {
841 /* This cache is bogus, make sure it gets cleared */
842 spin_lock(&block_group->lock);
843 block_group->disk_cache_state = BTRFS_DC_CLEAR;
844 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800845 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800846
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000847 btrfs_err(fs_info, "failed to load free space cache for block group %llu",
848 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800849 }
850
851 iput(inode);
852 return ret;
853}
854
Josef Bacikc09544e2011-08-30 10:19:10 -0400855/**
856 * __btrfs_write_out_cache - write out cached info to an inode
857 * @root - the root the inode belongs to
858 * @ctl - the free space cache we are going to write out
859 * @block_group - the block_group for this cache if it belongs to a block_group
860 * @trans - the trans handle
861 * @path - the path to use
862 * @offset - the offset for the key we'll insert
863 *
864 * This function writes out a free space cache struct to disk for quick recovery
865 * on mount. This will return 0 if it was successfull in writing the cache out,
866 * and -1 if it was not.
867 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000868static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
869 struct btrfs_free_space_ctl *ctl,
870 struct btrfs_block_group_cache *block_group,
871 struct btrfs_trans_handle *trans,
872 struct btrfs_path *path, u64 offset)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400873{
874 struct btrfs_free_space_header *header;
875 struct extent_buffer *leaf;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400876 struct rb_node *node;
877 struct list_head *pos, *n;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400878 struct extent_state *cached_state = NULL;
Josef Bacik43be2142011-04-01 14:55:00 +0000879 struct btrfs_free_cluster *cluster = NULL;
880 struct extent_io_tree *unpin = NULL;
Josef Bacika67509c2011-10-05 15:18:58 -0400881 struct io_ctl io_ctl;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400882 struct list_head bitmap_list;
883 struct btrfs_key key;
Li Zefandb804f22012-01-10 16:41:01 +0800884 u64 start, extent_start, extent_end, len;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400885 int entries = 0;
886 int bitmaps = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -0400887 int ret;
888 int err = -1;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400889
Josef Bacik0cb59c92010-07-02 12:14:14 -0400890 INIT_LIST_HEAD(&bitmap_list);
891
Li Zefan0414efa2011-04-20 10:20:14 +0800892 if (!i_size_read(inode))
893 return -1;
Josef Bacik2b209822010-12-03 13:17:53 -0500894
Li Zefan706efc62012-01-09 14:36:28 +0800895 ret = io_ctl_init(&io_ctl, inode, root);
896 if (ret)
897 return -1;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400898
Josef Bacik43be2142011-04-01 14:55:00 +0000899 /* Get the cluster for this block_group if it exists */
Li Zefan0414efa2011-04-20 10:20:14 +0800900 if (block_group && !list_empty(&block_group->cluster_list))
Josef Bacik43be2142011-04-01 14:55:00 +0000901 cluster = list_entry(block_group->cluster_list.next,
902 struct btrfs_free_cluster,
903 block_group_list);
904
Josef Bacika67509c2011-10-05 15:18:58 -0400905 /* Lock all pages first so we can lock the extent safely. */
906 io_ctl_prepare_pages(&io_ctl, inode, 0);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400907
Josef Bacik0cb59c92010-07-02 12:14:14 -0400908 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100909 0, &cached_state);
Josef Bacik0cb59c92010-07-02 12:14:14 -0400910
Josef Bacikf75b1302011-10-05 10:00:18 -0400911 node = rb_first(&ctl->free_space_offset);
912 if (!node && cluster) {
913 node = rb_first(&cluster->root);
914 cluster = NULL;
915 }
916
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400917 /* Make sure we can fit our crcs into the first page */
918 if (io_ctl.check_crcs &&
Josef Bacik73e1e612013-05-08 16:44:57 -0400919 (io_ctl.num_pages * sizeof(u32)) >= PAGE_CACHE_SIZE)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400920 goto out_nospc;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400921
Josef Bacika67509c2011-10-05 15:18:58 -0400922 io_ctl_set_generation(&io_ctl, trans->transid);
923
Josef Bacik0cb59c92010-07-02 12:14:14 -0400924 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400925 while (node) {
926 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400927
Josef Bacika67509c2011-10-05 15:18:58 -0400928 e = rb_entry(node, struct btrfs_free_space, offset_index);
929 entries++;
Josef Bacik43be2142011-04-01 14:55:00 +0000930
Josef Bacika67509c2011-10-05 15:18:58 -0400931 ret = io_ctl_add_entry(&io_ctl, e->offset, e->bytes,
932 e->bitmap);
933 if (ret)
934 goto out_nospc;
935
936 if (e->bitmap) {
937 list_add_tail(&e->list, &bitmap_list);
938 bitmaps++;
939 }
940 node = rb_next(node);
941 if (!node && cluster) {
942 node = rb_first(&cluster->root);
943 cluster = NULL;
944 }
945 }
946
947 /*
948 * We want to add any pinned extents to our free space cache
949 * so we don't leak the space
950 */
Li Zefandb804f22012-01-10 16:41:01 +0800951
952 /*
953 * We shouldn't have switched the pinned extents yet so this is the
954 * right one
955 */
956 unpin = root->fs_info->pinned_extents;
957
958 if (block_group)
959 start = block_group->key.objectid;
960
Josef Bacika67509c2011-10-05 15:18:58 -0400961 while (block_group && (start < block_group->key.objectid +
962 block_group->key.offset)) {
Li Zefandb804f22012-01-10 16:41:01 +0800963 ret = find_first_extent_bit(unpin, start,
964 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400965 EXTENT_DIRTY, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400966 if (ret) {
967 ret = 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400968 break;
969 }
970
Josef Bacika67509c2011-10-05 15:18:58 -0400971 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +0800972 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -0400973 block_group->key.offset)
974 break;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400975
Li Zefandb804f22012-01-10 16:41:01 +0800976 extent_start = max(extent_start, start);
977 extent_end = min(block_group->key.objectid +
978 block_group->key.offset, extent_end + 1);
979 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400980
Josef Bacika67509c2011-10-05 15:18:58 -0400981 entries++;
Li Zefandb804f22012-01-10 16:41:01 +0800982 ret = io_ctl_add_entry(&io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -0400983 if (ret)
984 goto out_nospc;
Josef Bacik2f356122011-06-10 15:31:13 -0400985
Li Zefandb804f22012-01-10 16:41:01 +0800986 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -0400987 }
Josef Bacik0cb59c92010-07-02 12:14:14 -0400988
989 /* Write out the bitmaps */
990 list_for_each_safe(pos, n, &bitmap_list) {
Josef Bacik0cb59c92010-07-02 12:14:14 -0400991 struct btrfs_free_space *entry =
992 list_entry(pos, struct btrfs_free_space, list);
993
Josef Bacika67509c2011-10-05 15:18:58 -0400994 ret = io_ctl_add_bitmap(&io_ctl, entry->bitmap);
995 if (ret)
996 goto out_nospc;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400997 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400998 }
999
Josef Bacik0cb59c92010-07-02 12:14:14 -04001000 /* Zero out the rest of the pages just to make sure */
Josef Bacika67509c2011-10-05 15:18:58 -04001001 io_ctl_zero_remaining_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001002
Josef Bacika67509c2011-10-05 15:18:58 -04001003 ret = btrfs_dirty_pages(root, inode, io_ctl.pages, io_ctl.num_pages,
1004 0, i_size_read(inode), &cached_state);
1005 io_ctl_drop_pages(&io_ctl);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001006 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1007 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1008
Josef Bacikc09544e2011-08-30 10:19:10 -04001009 if (ret)
Josef Bacik2f356122011-06-10 15:31:13 -04001010 goto out;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001011
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001012
Josef Bacik5fd02042012-05-02 14:00:54 -04001013 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001014
1015 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +08001016 key.offset = offset;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001017 key.type = 0;
1018
Josef Bacika9b5fcd2011-08-19 12:06:12 -04001019 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001020 if (ret < 0) {
Josef Bacika67509c2011-10-05 15:18:58 -04001021 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001022 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL,
1023 GFP_NOFS);
Josef Bacik2f356122011-06-10 15:31:13 -04001024 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001025 }
1026 leaf = path->nodes[0];
1027 if (ret > 0) {
1028 struct btrfs_key found_key;
Josef Bacikb12d6862013-08-26 17:14:08 -04001029 ASSERT(path->slots[0]);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001030 path->slots[0]--;
1031 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1032 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
Li Zefan0414efa2011-04-20 10:20:14 +08001033 found_key.offset != offset) {
Josef Bacika67509c2011-10-05 15:18:58 -04001034 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
1035 inode->i_size - 1,
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001036 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
1037 NULL, GFP_NOFS);
David Sterbab3b4aa72011-04-21 01:20:15 +02001038 btrfs_release_path(path);
Josef Bacik2f356122011-06-10 15:31:13 -04001039 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001040 }
1041 }
Josef Bacik549b4fd2011-10-05 16:33:53 -04001042
1043 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001044 header = btrfs_item_ptr(leaf, path->slots[0],
1045 struct btrfs_free_space_header);
1046 btrfs_set_free_space_entries(leaf, header, entries);
1047 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
1048 btrfs_set_free_space_generation(leaf, header, trans->transid);
1049 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02001050 btrfs_release_path(path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001051
Josef Bacikc09544e2011-08-30 10:19:10 -04001052 err = 0;
Josef Bacik2f356122011-06-10 15:31:13 -04001053out:
Josef Bacika67509c2011-10-05 15:18:58 -04001054 io_ctl_free(&io_ctl);
Josef Bacikc09544e2011-08-30 10:19:10 -04001055 if (err) {
Josef Bacika67509c2011-10-05 15:18:58 -04001056 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001057 BTRFS_I(inode)->generation = 0;
1058 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001059 btrfs_update_inode(trans, root, inode);
Josef Bacikc09544e2011-08-30 10:19:10 -04001060 return err;
Josef Bacika67509c2011-10-05 15:18:58 -04001061
1062out_nospc:
1063 list_for_each_safe(pos, n, &bitmap_list) {
1064 struct btrfs_free_space *entry =
1065 list_entry(pos, struct btrfs_free_space, list);
1066 list_del_init(&entry->list);
1067 }
1068 io_ctl_drop_pages(&io_ctl);
1069 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
1070 i_size_read(inode) - 1, &cached_state, GFP_NOFS);
1071 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001072}
1073
1074int btrfs_write_out_cache(struct btrfs_root *root,
1075 struct btrfs_trans_handle *trans,
1076 struct btrfs_block_group_cache *block_group,
1077 struct btrfs_path *path)
1078{
1079 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1080 struct inode *inode;
1081 int ret = 0;
1082
1083 root = root->fs_info->tree_root;
1084
1085 spin_lock(&block_group->lock);
1086 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1087 spin_unlock(&block_group->lock);
1088 return 0;
1089 }
1090 spin_unlock(&block_group->lock);
1091
1092 inode = lookup_free_space_inode(root, block_group, path);
1093 if (IS_ERR(inode))
1094 return 0;
1095
1096 ret = __btrfs_write_out_cache(root, inode, ctl, block_group, trans,
1097 path, block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001098 if (ret) {
Li Zefan0414efa2011-04-20 10:20:14 +08001099 spin_lock(&block_group->lock);
1100 block_group->disk_cache_state = BTRFS_DC_ERROR;
1101 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +08001102 ret = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04001103#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00001104 btrfs_err(root->fs_info,
1105 "failed to write free space cache for block group %llu",
1106 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001107#endif
Li Zefan0414efa2011-04-20 10:20:14 +08001108 }
1109
Josef Bacik0cb59c92010-07-02 12:14:14 -04001110 iput(inode);
1111 return ret;
1112}
1113
Li Zefan34d52cb2011-03-29 13:46:06 +08001114static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001115 u64 offset)
1116{
Josef Bacikb12d6862013-08-26 17:14:08 -04001117 ASSERT(offset >= bitmap_start);
Josef Bacik96303082009-07-13 21:29:25 -04001118 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001119 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001120}
1121
Li Zefan34d52cb2011-03-29 13:46:06 +08001122static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001123{
Li Zefan34d52cb2011-03-29 13:46:06 +08001124 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001125}
1126
Li Zefan34d52cb2011-03-29 13:46:06 +08001127static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001128 u64 offset)
1129{
1130 u64 bitmap_start;
1131 u64 bytes_per_bitmap;
1132
Li Zefan34d52cb2011-03-29 13:46:06 +08001133 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1134 bitmap_start = offset - ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001135 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
1136 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001137 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001138
1139 return bitmap_start;
1140}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001141
1142static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001143 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001144{
1145 struct rb_node **p = &root->rb_node;
1146 struct rb_node *parent = NULL;
1147 struct btrfs_free_space *info;
1148
1149 while (*p) {
1150 parent = *p;
1151 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1152
Josef Bacik96303082009-07-13 21:29:25 -04001153 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001154 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001155 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001156 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001157 } else {
1158 /*
1159 * we could have a bitmap entry and an extent entry
1160 * share the same offset. If this is the case, we want
1161 * the extent entry to always be found first if we do a
1162 * linear search through the tree, since we want to have
1163 * the quickest allocation time, and allocating from an
1164 * extent is faster than allocating from a bitmap. So
1165 * if we're inserting a bitmap and we find an entry at
1166 * this offset, we want to go right, or after this entry
1167 * logically. If we are inserting an extent and we've
1168 * found a bitmap, we want to go left, or before
1169 * logically.
1170 */
1171 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001172 if (info->bitmap) {
1173 WARN_ON_ONCE(1);
1174 return -EEXIST;
1175 }
Josef Bacik96303082009-07-13 21:29:25 -04001176 p = &(*p)->rb_right;
1177 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001178 if (!info->bitmap) {
1179 WARN_ON_ONCE(1);
1180 return -EEXIST;
1181 }
Josef Bacik96303082009-07-13 21:29:25 -04001182 p = &(*p)->rb_left;
1183 }
1184 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001185 }
1186
1187 rb_link_node(node, parent, p);
1188 rb_insert_color(node, root);
1189
1190 return 0;
1191}
1192
1193/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001194 * searches the tree for the given offset.
1195 *
Josef Bacik96303082009-07-13 21:29:25 -04001196 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1197 * want a section that has at least bytes size and comes at or after the given
1198 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001199 */
Josef Bacik96303082009-07-13 21:29:25 -04001200static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001201tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001202 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001203{
Li Zefan34d52cb2011-03-29 13:46:06 +08001204 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001205 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001206
Josef Bacik96303082009-07-13 21:29:25 -04001207 /* find entry that is closest to the 'offset' */
1208 while (1) {
1209 if (!n) {
1210 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001211 break;
1212 }
Josef Bacik96303082009-07-13 21:29:25 -04001213
1214 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1215 prev = entry;
1216
1217 if (offset < entry->offset)
1218 n = n->rb_left;
1219 else if (offset > entry->offset)
1220 n = n->rb_right;
1221 else
1222 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001223 }
1224
Josef Bacik96303082009-07-13 21:29:25 -04001225 if (bitmap_only) {
1226 if (!entry)
1227 return NULL;
1228 if (entry->bitmap)
1229 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001230
Josef Bacik96303082009-07-13 21:29:25 -04001231 /*
1232 * bitmap entry and extent entry may share same offset,
1233 * in that case, bitmap entry comes after extent entry.
1234 */
1235 n = rb_next(n);
1236 if (!n)
1237 return NULL;
1238 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1239 if (entry->offset != offset)
1240 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001241
Josef Bacik96303082009-07-13 21:29:25 -04001242 WARN_ON(!entry->bitmap);
1243 return entry;
1244 } else if (entry) {
1245 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001246 /*
Josef Bacik96303082009-07-13 21:29:25 -04001247 * if previous extent entry covers the offset,
1248 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001249 */
Miao Xiede6c4112012-10-18 08:18:01 +00001250 n = rb_prev(&entry->offset_index);
1251 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001252 prev = rb_entry(n, struct btrfs_free_space,
1253 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001254 if (!prev->bitmap &&
1255 prev->offset + prev->bytes > offset)
1256 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001257 }
Josef Bacik96303082009-07-13 21:29:25 -04001258 }
1259 return entry;
1260 }
1261
1262 if (!prev)
1263 return NULL;
1264
1265 /* find last entry before the 'offset' */
1266 entry = prev;
1267 if (entry->offset > offset) {
1268 n = rb_prev(&entry->offset_index);
1269 if (n) {
1270 entry = rb_entry(n, struct btrfs_free_space,
1271 offset_index);
Josef Bacikb12d6862013-08-26 17:14:08 -04001272 ASSERT(entry->offset <= offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001273 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001274 if (fuzzy)
1275 return entry;
1276 else
1277 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001278 }
1279 }
1280
Josef Bacik96303082009-07-13 21:29:25 -04001281 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001282 n = rb_prev(&entry->offset_index);
1283 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001284 prev = rb_entry(n, struct btrfs_free_space,
1285 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001286 if (!prev->bitmap &&
1287 prev->offset + prev->bytes > offset)
1288 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001289 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001290 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001291 return entry;
1292 } else if (entry->offset + entry->bytes > offset)
1293 return entry;
1294
1295 if (!fuzzy)
1296 return NULL;
1297
1298 while (1) {
1299 if (entry->bitmap) {
1300 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001301 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001302 break;
1303 } else {
1304 if (entry->offset + entry->bytes > offset)
1305 break;
1306 }
1307
1308 n = rb_next(&entry->offset_index);
1309 if (!n)
1310 return NULL;
1311 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1312 }
1313 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001314}
1315
Li Zefanf333adb2010-11-09 14:57:39 +08001316static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001317__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001318 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001319{
Li Zefan34d52cb2011-03-29 13:46:06 +08001320 rb_erase(&info->offset_index, &ctl->free_space_offset);
1321 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001322}
1323
Li Zefan34d52cb2011-03-29 13:46:06 +08001324static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001325 struct btrfs_free_space *info)
1326{
Li Zefan34d52cb2011-03-29 13:46:06 +08001327 __unlink_free_space(ctl, info);
1328 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001329}
1330
Li Zefan34d52cb2011-03-29 13:46:06 +08001331static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001332 struct btrfs_free_space *info)
1333{
1334 int ret = 0;
1335
Josef Bacikb12d6862013-08-26 17:14:08 -04001336 ASSERT(info->bytes || info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001337 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001338 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001339 if (ret)
1340 return ret;
1341
Li Zefan34d52cb2011-03-29 13:46:06 +08001342 ctl->free_space += info->bytes;
1343 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001344 return ret;
1345}
1346
Li Zefan34d52cb2011-03-29 13:46:06 +08001347static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001348{
Li Zefan34d52cb2011-03-29 13:46:06 +08001349 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001350 u64 max_bytes;
1351 u64 bitmap_bytes;
1352 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001353 u64 size = block_group->key.offset;
Wang Sheng-Hui96009762012-11-30 06:30:14 +00001354 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001355 int max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
1356
Josef Bacikdde57402013-02-12 14:07:51 -05001357 max_bitmaps = max(max_bitmaps, 1);
1358
Josef Bacikb12d6862013-08-26 17:14:08 -04001359 ASSERT(ctl->total_bitmaps <= max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001360
1361 /*
1362 * The goal is to keep the total amount of memory used per 1gb of space
1363 * at or below 32k, so we need to adjust how much memory we allow to be
1364 * used by extent based free space tracking
1365 */
Li Zefan8eb2d822010-11-09 14:48:01 +08001366 if (size < 1024 * 1024 * 1024)
1367 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1368 else
1369 max_bytes = MAX_CACHE_BYTES_PER_GIG *
1370 div64_u64(size, 1024 * 1024 * 1024);
Josef Bacik96303082009-07-13 21:29:25 -04001371
Josef Bacik25891f72009-09-11 16:11:20 -04001372 /*
1373 * we want to account for 1 more bitmap than what we have so we can make
1374 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1375 * we add more bitmaps.
1376 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001377 bitmap_bytes = (ctl->total_bitmaps + 1) * PAGE_CACHE_SIZE;
Josef Bacik96303082009-07-13 21:29:25 -04001378
Josef Bacik25891f72009-09-11 16:11:20 -04001379 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001380 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001381 return;
Josef Bacik96303082009-07-13 21:29:25 -04001382 }
Josef Bacik25891f72009-09-11 16:11:20 -04001383
1384 /*
1385 * we want the extent entry threshold to always be at most 1/2 the maxw
1386 * bytes we can have, or whatever is less than that.
1387 */
1388 extent_bytes = max_bytes - bitmap_bytes;
1389 extent_bytes = min_t(u64, extent_bytes, div64_u64(max_bytes, 2));
1390
Li Zefan34d52cb2011-03-29 13:46:06 +08001391 ctl->extents_thresh =
Josef Bacik25891f72009-09-11 16:11:20 -04001392 div64_u64(extent_bytes, (sizeof(struct btrfs_free_space)));
Josef Bacik96303082009-07-13 21:29:25 -04001393}
1394
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001395static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1396 struct btrfs_free_space *info,
1397 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001398{
Li Zefanf38b6e72011-03-14 13:40:51 +08001399 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001400
Li Zefan34d52cb2011-03-29 13:46:06 +08001401 start = offset_to_bit(info->offset, ctl->unit, offset);
1402 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001403 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001404
Li Zefanf38b6e72011-03-14 13:40:51 +08001405 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001406
1407 info->bytes -= bytes;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001408}
1409
1410static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1411 struct btrfs_free_space *info, u64 offset,
1412 u64 bytes)
1413{
1414 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001415 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001416}
1417
Li Zefan34d52cb2011-03-29 13:46:06 +08001418static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001419 struct btrfs_free_space *info, u64 offset,
1420 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001421{
Li Zefanf38b6e72011-03-14 13:40:51 +08001422 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001423
Li Zefan34d52cb2011-03-29 13:46:06 +08001424 start = offset_to_bit(info->offset, ctl->unit, offset);
1425 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001426 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001427
Li Zefanf38b6e72011-03-14 13:40:51 +08001428 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001429
1430 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001431 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001432}
1433
Li Zefan34d52cb2011-03-29 13:46:06 +08001434static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001435 struct btrfs_free_space *bitmap_info, u64 *offset,
1436 u64 *bytes)
1437{
1438 unsigned long found_bits = 0;
1439 unsigned long bits, i;
1440 unsigned long next_zero;
1441
Li Zefan34d52cb2011-03-29 13:46:06 +08001442 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001443 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001444 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001445
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001446 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04001447 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1448 BITS_PER_BITMAP, i);
1449 if ((next_zero - i) >= bits) {
1450 found_bits = next_zero - i;
1451 break;
1452 }
1453 i = next_zero;
1454 }
1455
1456 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001457 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1458 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001459 return 0;
1460 }
1461
1462 return -1;
1463}
1464
Li Zefan34d52cb2011-03-29 13:46:06 +08001465static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001466find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
1467 unsigned long align)
Josef Bacik96303082009-07-13 21:29:25 -04001468{
1469 struct btrfs_free_space *entry;
1470 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001471 u64 ctl_off;
1472 u64 tmp;
1473 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001474 int ret;
1475
Li Zefan34d52cb2011-03-29 13:46:06 +08001476 if (!ctl->free_space_offset.rb_node)
Josef Bacik96303082009-07-13 21:29:25 -04001477 return NULL;
1478
Li Zefan34d52cb2011-03-29 13:46:06 +08001479 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001480 if (!entry)
1481 return NULL;
1482
1483 for (node = &entry->offset_index; node; node = rb_next(node)) {
1484 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1485 if (entry->bytes < *bytes)
1486 continue;
1487
David Woodhouse53b381b2013-01-29 18:40:14 -05001488 /* make sure the space returned is big enough
1489 * to match our requested alignment
1490 */
1491 if (*bytes >= align) {
1492 ctl_off = entry->offset - ctl->start;
1493 tmp = ctl_off + align - 1;;
1494 do_div(tmp, align);
1495 tmp = tmp * align + ctl->start;
1496 align_off = tmp - entry->offset;
1497 } else {
1498 align_off = 0;
1499 tmp = entry->offset;
1500 }
1501
1502 if (entry->bytes < *bytes + align_off)
1503 continue;
1504
Josef Bacik96303082009-07-13 21:29:25 -04001505 if (entry->bitmap) {
David Woodhouse53b381b2013-01-29 18:40:14 -05001506 ret = search_bitmap(ctl, entry, &tmp, bytes);
1507 if (!ret) {
1508 *offset = tmp;
Josef Bacik96303082009-07-13 21:29:25 -04001509 return entry;
David Woodhouse53b381b2013-01-29 18:40:14 -05001510 }
Josef Bacik96303082009-07-13 21:29:25 -04001511 continue;
1512 }
1513
David Woodhouse53b381b2013-01-29 18:40:14 -05001514 *offset = tmp;
1515 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001516 return entry;
1517 }
1518
1519 return NULL;
1520}
1521
Li Zefan34d52cb2011-03-29 13:46:06 +08001522static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001523 struct btrfs_free_space *info, u64 offset)
1524{
Li Zefan34d52cb2011-03-29 13:46:06 +08001525 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001526 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001527 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001528 link_free_space(ctl, info);
1529 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001530
Li Zefan34d52cb2011-03-29 13:46:06 +08001531 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001532}
1533
Li Zefan34d52cb2011-03-29 13:46:06 +08001534static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001535 struct btrfs_free_space *bitmap_info)
1536{
Li Zefan34d52cb2011-03-29 13:46:06 +08001537 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001538 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001539 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001540 ctl->total_bitmaps--;
1541 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001542}
1543
Li Zefan34d52cb2011-03-29 13:46:06 +08001544static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001545 struct btrfs_free_space *bitmap_info,
1546 u64 *offset, u64 *bytes)
1547{
1548 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001549 u64 search_start, search_bytes;
1550 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001551
1552again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001553 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001554
Josef Bacik6606bb92009-07-31 11:03:58 -04001555 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001556 * We need to search for bits in this bitmap. We could only cover some
1557 * of the extent in this bitmap thanks to how we add space, so we need
1558 * to search for as much as it as we can and clear that amount, and then
1559 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001560 */
1561 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001562 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001563 search_bytes = min(search_bytes, end - search_start + 1);
Li Zefan34d52cb2011-03-29 13:46:06 +08001564 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001565 if (ret < 0 || search_start != *offset)
1566 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001567
Josef Bacikbdb7d302012-06-27 15:10:56 -04001568 /* We may have found more bits than what we need */
1569 search_bytes = min(search_bytes, *bytes);
1570
1571 /* Cannot clear past the end of the bitmap */
1572 search_bytes = min(search_bytes, end - search_start + 1);
1573
1574 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1575 *offset += search_bytes;
1576 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001577
1578 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001579 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001580 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001581 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001582
Josef Bacik6606bb92009-07-31 11:03:58 -04001583 /*
1584 * no entry after this bitmap, but we still have bytes to
1585 * remove, so something has gone wrong.
1586 */
1587 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001588 return -EINVAL;
1589
Josef Bacik6606bb92009-07-31 11:03:58 -04001590 bitmap_info = rb_entry(next, struct btrfs_free_space,
1591 offset_index);
1592
1593 /*
1594 * if the next entry isn't a bitmap we need to return to let the
1595 * extent stuff do its work.
1596 */
Josef Bacik96303082009-07-13 21:29:25 -04001597 if (!bitmap_info->bitmap)
1598 return -EAGAIN;
1599
Josef Bacik6606bb92009-07-31 11:03:58 -04001600 /*
1601 * Ok the next item is a bitmap, but it may not actually hold
1602 * the information for the rest of this free space stuff, so
1603 * look for it, and if we don't find it return so we can try
1604 * everything over again.
1605 */
1606 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001607 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001608 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik6606bb92009-07-31 11:03:58 -04001609 &search_bytes);
1610 if (ret < 0 || search_start != *offset)
1611 return -EAGAIN;
1612
Josef Bacik96303082009-07-13 21:29:25 -04001613 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001614 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001615 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001616
1617 return 0;
1618}
1619
Josef Bacik2cdc3422011-05-27 14:07:49 -04001620static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1621 struct btrfs_free_space *info, u64 offset,
1622 u64 bytes)
1623{
1624 u64 bytes_to_set = 0;
1625 u64 end;
1626
1627 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1628
1629 bytes_to_set = min(end - offset, bytes);
1630
1631 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1632
1633 return bytes_to_set;
1634
1635}
1636
Li Zefan34d52cb2011-03-29 13:46:06 +08001637static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1638 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001639{
Li Zefan34d52cb2011-03-29 13:46:06 +08001640 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik96303082009-07-13 21:29:25 -04001641
1642 /*
1643 * If we are below the extents threshold then we can add this as an
1644 * extent, and don't have to deal with the bitmap
1645 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001646 if (ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04001647 /*
1648 * If this block group has some small extents we don't want to
1649 * use up all of our free slots in the cache with them, we want
1650 * to reserve them to larger extents, however if we have plent
1651 * of cache left then go ahead an dadd them, no sense in adding
1652 * the overhead of a bitmap if we don't have to.
1653 */
1654 if (info->bytes <= block_group->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001655 if (ctl->free_extents * 2 <= ctl->extents_thresh)
1656 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001657 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001658 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04001659 }
1660 }
Josef Bacik96303082009-07-13 21:29:25 -04001661
1662 /*
Josef Bacikdde57402013-02-12 14:07:51 -05001663 * The original block groups from mkfs can be really small, like 8
1664 * megabytes, so don't bother with a bitmap for those entries. However
1665 * some block groups can be smaller than what a bitmap would cover but
1666 * are still large enough that they could overflow the 32k memory limit,
1667 * so allow those block groups to still be allowed to have a bitmap
1668 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04001669 */
Josef Bacikdde57402013-02-12 14:07:51 -05001670 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08001671 return false;
1672
1673 return true;
1674}
1675
Josef Bacik2cdc3422011-05-27 14:07:49 -04001676static struct btrfs_free_space_op free_space_op = {
1677 .recalc_thresholds = recalculate_thresholds,
1678 .use_bitmap = use_bitmap,
1679};
1680
Li Zefan34d52cb2011-03-29 13:46:06 +08001681static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
1682 struct btrfs_free_space *info)
1683{
1684 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001685 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08001686 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001687 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08001688 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001689
1690 bytes = info->bytes;
1691 offset = info->offset;
1692
Li Zefan34d52cb2011-03-29 13:46:06 +08001693 if (!ctl->op->use_bitmap(ctl, info))
1694 return 0;
1695
Josef Bacik2cdc3422011-05-27 14:07:49 -04001696 if (ctl->op == &free_space_op)
1697 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04001698again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04001699 /*
1700 * Since we link bitmaps right into the cluster we need to see if we
1701 * have a cluster here, and if so and it has our bitmap we need to add
1702 * the free space to that bitmap.
1703 */
1704 if (block_group && !list_empty(&block_group->cluster_list)) {
1705 struct btrfs_free_cluster *cluster;
1706 struct rb_node *node;
1707 struct btrfs_free_space *entry;
1708
1709 cluster = list_entry(block_group->cluster_list.next,
1710 struct btrfs_free_cluster,
1711 block_group_list);
1712 spin_lock(&cluster->lock);
1713 node = rb_first(&cluster->root);
1714 if (!node) {
1715 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001716 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001717 }
1718
1719 entry = rb_entry(node, struct btrfs_free_space, offset_index);
1720 if (!entry->bitmap) {
1721 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04001722 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04001723 }
1724
1725 if (entry->offset == offset_to_bitmap(ctl, offset)) {
1726 bytes_added = add_bytes_to_bitmap(ctl, entry,
1727 offset, bytes);
1728 bytes -= bytes_added;
1729 offset += bytes_added;
1730 }
1731 spin_unlock(&cluster->lock);
1732 if (!bytes) {
1733 ret = 1;
1734 goto out;
1735 }
1736 }
Chris Mason38e87882011-06-10 16:36:57 -04001737
1738no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08001739 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04001740 1, 0);
1741 if (!bitmap_info) {
Josef Bacikb12d6862013-08-26 17:14:08 -04001742 ASSERT(added == 0);
Josef Bacik96303082009-07-13 21:29:25 -04001743 goto new_bitmap;
1744 }
1745
Josef Bacik2cdc3422011-05-27 14:07:49 -04001746 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
1747 bytes -= bytes_added;
1748 offset += bytes_added;
1749 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001750
1751 if (!bytes) {
1752 ret = 1;
1753 goto out;
1754 } else
1755 goto again;
1756
1757new_bitmap:
1758 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001759 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04001760 added = 1;
1761 info = NULL;
1762 goto again;
1763 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08001764 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001765
1766 /* no pre-allocated info, allocate a new one */
1767 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05001768 info = kmem_cache_zalloc(btrfs_free_space_cachep,
1769 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04001770 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001771 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001772 ret = -ENOMEM;
1773 goto out;
1774 }
1775 }
1776
1777 /* allocate the bitmap */
1778 info->bitmap = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08001779 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04001780 if (!info->bitmap) {
1781 ret = -ENOMEM;
1782 goto out;
1783 }
1784 goto again;
1785 }
1786
1787out:
1788 if (info) {
1789 if (info->bitmap)
1790 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001791 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001792 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001793
1794 return ret;
1795}
1796
Chris Mason945d8962011-05-22 12:33:42 -04001797static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001798 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001799{
Li Zefan120d66e2010-11-09 14:56:50 +08001800 struct btrfs_free_space *left_info;
1801 struct btrfs_free_space *right_info;
1802 bool merged = false;
1803 u64 offset = info->offset;
1804 u64 bytes = info->bytes;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001805
Josef Bacik0f9dd462008-09-23 13:14:11 -04001806 /*
1807 * first we want to see if there is free space adjacent to the range we
1808 * are adding, if there is remove that struct and add a new one to
1809 * cover the entire range
1810 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001811 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001812 if (right_info && rb_prev(&right_info->offset_index))
1813 left_info = rb_entry(rb_prev(&right_info->offset_index),
1814 struct btrfs_free_space, offset_index);
1815 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001816 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001817
Josef Bacik96303082009-07-13 21:29:25 -04001818 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08001819 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001820 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001821 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001822 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001823 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001824 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001825 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001826 }
1827
Josef Bacik96303082009-07-13 21:29:25 -04001828 if (left_info && !left_info->bitmap &&
1829 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08001830 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08001831 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08001832 else
Li Zefan34d52cb2011-03-29 13:46:06 +08001833 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001834 info->offset = left_info->offset;
1835 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05001836 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08001837 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001838 }
1839
Li Zefan120d66e2010-11-09 14:56:50 +08001840 return merged;
1841}
1842
Li Zefan581bb052011-04-20 10:06:11 +08001843int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
1844 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08001845{
1846 struct btrfs_free_space *info;
1847 int ret = 0;
1848
Josef Bacikdc89e982011-01-28 17:05:48 -05001849 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08001850 if (!info)
1851 return -ENOMEM;
1852
1853 info->offset = offset;
1854 info->bytes = bytes;
1855
Li Zefan34d52cb2011-03-29 13:46:06 +08001856 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08001857
Li Zefan34d52cb2011-03-29 13:46:06 +08001858 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08001859 goto link;
1860
1861 /*
1862 * There was no extent directly to the left or right of this new
1863 * extent then we know we're going to have to allocate a new extent, so
1864 * before we do that see if we need to drop this into a bitmap
1865 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001866 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08001867 if (ret < 0) {
1868 goto out;
1869 } else if (ret) {
1870 ret = 0;
1871 goto out;
1872 }
1873link:
Li Zefan34d52cb2011-03-29 13:46:06 +08001874 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001875 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05001876 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04001877out:
Li Zefan34d52cb2011-03-29 13:46:06 +08001878 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001879
Josef Bacik0f9dd462008-09-23 13:14:11 -04001880 if (ret) {
Josef Bacik96303082009-07-13 21:29:25 -04001881 printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret);
Josef Bacikb12d6862013-08-26 17:14:08 -04001882 ASSERT(ret != -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001883 }
1884
Josef Bacik0f9dd462008-09-23 13:14:11 -04001885 return ret;
1886}
1887
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001888int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1889 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001890{
Li Zefan34d52cb2011-03-29 13:46:06 +08001891 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001892 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05001893 int ret;
1894 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001895
Li Zefan34d52cb2011-03-29 13:46:06 +08001896 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04001897
Josef Bacik96303082009-07-13 21:29:25 -04001898again:
Josef Bacikb0175112012-12-18 11:39:19 -05001899 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001900 if (!bytes)
1901 goto out_lock;
1902
Li Zefan34d52cb2011-03-29 13:46:06 +08001903 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04001904 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001905 /*
1906 * oops didn't find an extent that matched the space we wanted
1907 * to remove, look for a bitmap instead
1908 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001909 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04001910 1, 0);
1911 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05001912 /*
1913 * If we found a partial bit of our free space in a
1914 * bitmap but then couldn't find the other part this may
1915 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05001916 */
Josef Bacikb0175112012-12-18 11:39:19 -05001917 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04001918 goto out_lock;
1919 }
Josef Bacik96303082009-07-13 21:29:25 -04001920 }
1921
Josef Bacikb0175112012-12-18 11:39:19 -05001922 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001923 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001924 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04001925 if (offset == info->offset) {
1926 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001927
Josef Bacikbdb7d302012-06-27 15:10:56 -04001928 info->bytes -= to_free;
1929 info->offset += to_free;
1930 if (info->bytes) {
1931 ret = link_free_space(ctl, info);
1932 WARN_ON(ret);
1933 } else {
1934 kmem_cache_free(btrfs_free_space_cachep, info);
1935 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001936
Josef Bacikbdb7d302012-06-27 15:10:56 -04001937 offset += to_free;
1938 bytes -= to_free;
1939 goto again;
1940 } else {
1941 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04001942
Josef Bacikbdb7d302012-06-27 15:10:56 -04001943 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08001944 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04001945 WARN_ON(ret);
1946 if (ret)
1947 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04001948
Josef Bacikbdb7d302012-06-27 15:10:56 -04001949 /* Not enough bytes in this entry to satisfy us */
1950 if (old_end < offset + bytes) {
1951 bytes -= old_end - offset;
1952 offset = old_end;
1953 goto again;
1954 } else if (old_end == offset + bytes) {
1955 /* all done */
1956 goto out_lock;
1957 }
1958 spin_unlock(&ctl->tree_lock);
1959
1960 ret = btrfs_add_free_space(block_group, offset + bytes,
1961 old_end - (offset + bytes));
1962 WARN_ON(ret);
1963 goto out;
1964 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001965 }
Josef Bacik96303082009-07-13 21:29:25 -04001966
Li Zefan34d52cb2011-03-29 13:46:06 +08001967 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05001968 if (ret == -EAGAIN) {
1969 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04001970 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05001971 }
Josef Bacik96303082009-07-13 21:29:25 -04001972out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08001973 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001974out:
Josef Bacik25179202008-10-29 14:49:05 -04001975 return ret;
1976}
1977
Josef Bacik0f9dd462008-09-23 13:14:11 -04001978void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1979 u64 bytes)
1980{
Li Zefan34d52cb2011-03-29 13:46:06 +08001981 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001982 struct btrfs_free_space *info;
1983 struct rb_node *n;
1984 int count = 0;
1985
Li Zefan34d52cb2011-03-29 13:46:06 +08001986 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001987 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06001988 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001989 count++;
Josef Bacik96303082009-07-13 21:29:25 -04001990 printk(KERN_CRIT "entry offset %llu, bytes %llu, bitmap %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001991 info->offset, info->bytes,
Josef Bacik96303082009-07-13 21:29:25 -04001992 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001993 }
Josef Bacik96303082009-07-13 21:29:25 -04001994 printk(KERN_INFO "block group has cluster?: %s\n",
1995 list_empty(&block_group->cluster_list) ? "no" : "yes");
Josef Bacik0f9dd462008-09-23 13:14:11 -04001996 printk(KERN_INFO "%d blocks of free space at or bigger than bytes is"
1997 "\n", count);
1998}
1999
Li Zefan34d52cb2011-03-29 13:46:06 +08002000void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002001{
Li Zefan34d52cb2011-03-29 13:46:06 +08002002 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002003
Li Zefan34d52cb2011-03-29 13:46:06 +08002004 spin_lock_init(&ctl->tree_lock);
2005 ctl->unit = block_group->sectorsize;
2006 ctl->start = block_group->key.objectid;
2007 ctl->private = block_group;
2008 ctl->op = &free_space_op;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002009
Li Zefan34d52cb2011-03-29 13:46:06 +08002010 /*
2011 * we only want to have 32k of ram per block group for keeping
2012 * track of free space, and if we pass 1/2 of that we want to
2013 * start converting things over to using bitmaps
2014 */
2015 ctl->extents_thresh = ((1024 * 32) / 2) /
2016 sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002017}
2018
Chris Masonfa9c0d792009-04-03 09:47:43 -04002019/*
2020 * for a given cluster, put all of its extents back into the free
2021 * space cache. If the block group passed doesn't match the block group
2022 * pointed to by the cluster, someone else raced in and freed the
2023 * cluster already. In that case, we just return without changing anything
2024 */
2025static int
2026__btrfs_return_cluster_to_free_space(
2027 struct btrfs_block_group_cache *block_group,
2028 struct btrfs_free_cluster *cluster)
2029{
Li Zefan34d52cb2011-03-29 13:46:06 +08002030 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002031 struct btrfs_free_space *entry;
2032 struct rb_node *node;
2033
2034 spin_lock(&cluster->lock);
2035 if (cluster->block_group != block_group)
2036 goto out;
2037
Josef Bacik96303082009-07-13 21:29:25 -04002038 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002039 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002040 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002041
Chris Masonfa9c0d792009-04-03 09:47:43 -04002042 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002043 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002044 bool bitmap;
2045
Chris Masonfa9c0d792009-04-03 09:47:43 -04002046 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2047 node = rb_next(&entry->offset_index);
2048 rb_erase(&entry->offset_index, &cluster->root);
Josef Bacik4e69b592011-03-21 10:11:24 -04002049
2050 bitmap = (entry->bitmap != NULL);
2051 if (!bitmap)
Li Zefan34d52cb2011-03-29 13:46:06 +08002052 try_merge_free_space(ctl, entry, false);
2053 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002054 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002055 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002056 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002057
Chris Masonfa9c0d792009-04-03 09:47:43 -04002058out:
2059 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002060 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002061 return 0;
2062}
2063
Eric Sandeen48a3b632013-04-25 20:41:01 +00002064static void __btrfs_remove_free_space_cache_locked(
2065 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002066{
2067 struct btrfs_free_space *info;
2068 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002069
Li Zefan581bb052011-04-20 10:06:11 +08002070 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2071 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002072 if (!info->bitmap) {
2073 unlink_free_space(ctl, info);
2074 kmem_cache_free(btrfs_free_space_cachep, info);
2075 } else {
2076 free_bitmap(ctl, info);
2077 }
Li Zefan581bb052011-04-20 10:06:11 +08002078 if (need_resched()) {
2079 spin_unlock(&ctl->tree_lock);
2080 cond_resched();
2081 spin_lock(&ctl->tree_lock);
2082 }
2083 }
Chris Mason09655372011-05-21 09:27:38 -04002084}
2085
2086void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2087{
2088 spin_lock(&ctl->tree_lock);
2089 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002090 spin_unlock(&ctl->tree_lock);
2091}
2092
Josef Bacik0f9dd462008-09-23 13:14:11 -04002093void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2094{
Li Zefan34d52cb2011-03-29 13:46:06 +08002095 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002096 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002097 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002098
Li Zefan34d52cb2011-03-29 13:46:06 +08002099 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002100 while ((head = block_group->cluster_list.next) !=
2101 &block_group->cluster_list) {
2102 cluster = list_entry(head, struct btrfs_free_cluster,
2103 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002104
2105 WARN_ON(cluster->block_group != block_group);
2106 __btrfs_return_cluster_to_free_space(block_group, cluster);
Josef Bacik96303082009-07-13 21:29:25 -04002107 if (need_resched()) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002108 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002109 cond_resched();
Li Zefan34d52cb2011-03-29 13:46:06 +08002110 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002111 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002112 }
Chris Mason09655372011-05-21 09:27:38 -04002113 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002114 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002115
Josef Bacik0f9dd462008-09-23 13:14:11 -04002116}
2117
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002118u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
2119 u64 offset, u64 bytes, u64 empty_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002120{
Li Zefan34d52cb2011-03-29 13:46:06 +08002121 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002122 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002123 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002124 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002125 u64 align_gap = 0;
2126 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002127
Li Zefan34d52cb2011-03-29 13:46:06 +08002128 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002129 entry = find_free_space(ctl, &offset, &bytes_search,
2130 block_group->full_stripe_len);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002131 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002132 goto out;
2133
2134 ret = offset;
2135 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002136 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002137 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002138 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002139 } else {
David Woodhouse53b381b2013-01-29 18:40:14 -05002140
Li Zefan34d52cb2011-03-29 13:46:06 +08002141 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002142 align_gap_len = offset - entry->offset;
2143 align_gap = entry->offset;
2144
2145 entry->offset = offset + bytes;
2146 WARN_ON(entry->bytes < bytes + align_gap_len);
2147
2148 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002149 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002150 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002151 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002152 link_free_space(ctl, entry);
Josef Bacik6226cb0a2009-04-03 10:14:18 -04002153 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002154
Josef Bacik96303082009-07-13 21:29:25 -04002155out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002156 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002157
David Woodhouse53b381b2013-01-29 18:40:14 -05002158 if (align_gap_len)
2159 __btrfs_add_free_space(ctl, align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002160 return ret;
2161}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002162
2163/*
2164 * given a cluster, put all of its extents back into the free space
2165 * cache. If a block group is passed, this function will only free
2166 * a cluster that belongs to the passed block group.
2167 *
2168 * Otherwise, it'll get a reference on the block group pointed to by the
2169 * cluster and remove the cluster from it.
2170 */
2171int btrfs_return_cluster_to_free_space(
2172 struct btrfs_block_group_cache *block_group,
2173 struct btrfs_free_cluster *cluster)
2174{
Li Zefan34d52cb2011-03-29 13:46:06 +08002175 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002176 int ret;
2177
2178 /* first, get a safe pointer to the block group */
2179 spin_lock(&cluster->lock);
2180 if (!block_group) {
2181 block_group = cluster->block_group;
2182 if (!block_group) {
2183 spin_unlock(&cluster->lock);
2184 return 0;
2185 }
2186 } else if (cluster->block_group != block_group) {
2187 /* someone else has already freed it don't redo their work */
2188 spin_unlock(&cluster->lock);
2189 return 0;
2190 }
2191 atomic_inc(&block_group->count);
2192 spin_unlock(&cluster->lock);
2193
Li Zefan34d52cb2011-03-29 13:46:06 +08002194 ctl = block_group->free_space_ctl;
2195
Chris Masonfa9c0d792009-04-03 09:47:43 -04002196 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002197 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002198 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002199 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002200
2201 /* finally drop our ref */
2202 btrfs_put_block_group(block_group);
2203 return ret;
2204}
2205
Josef Bacik96303082009-07-13 21:29:25 -04002206static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2207 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002208 struct btrfs_free_space *entry,
Josef Bacik96303082009-07-13 21:29:25 -04002209 u64 bytes, u64 min_start)
2210{
Li Zefan34d52cb2011-03-29 13:46:06 +08002211 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002212 int err;
2213 u64 search_start = cluster->window_start;
2214 u64 search_bytes = bytes;
2215 u64 ret = 0;
2216
Josef Bacik96303082009-07-13 21:29:25 -04002217 search_start = min_start;
2218 search_bytes = bytes;
2219
Li Zefan34d52cb2011-03-29 13:46:06 +08002220 err = search_bitmap(ctl, entry, &search_start, &search_bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002221 if (err)
Josef Bacik4e69b592011-03-21 10:11:24 -04002222 return 0;
Josef Bacik96303082009-07-13 21:29:25 -04002223
2224 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002225 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002226
2227 return ret;
2228}
2229
Chris Masonfa9c0d792009-04-03 09:47:43 -04002230/*
2231 * given a cluster, try to allocate 'bytes' from it, returns 0
2232 * if it couldn't find anything suitably large, or a logical disk offset
2233 * if things worked out
2234 */
2235u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2236 struct btrfs_free_cluster *cluster, u64 bytes,
2237 u64 min_start)
2238{
Li Zefan34d52cb2011-03-29 13:46:06 +08002239 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002240 struct btrfs_free_space *entry = NULL;
2241 struct rb_node *node;
2242 u64 ret = 0;
2243
2244 spin_lock(&cluster->lock);
2245 if (bytes > cluster->max_size)
2246 goto out;
2247
2248 if (cluster->block_group != block_group)
2249 goto out;
2250
2251 node = rb_first(&cluster->root);
2252 if (!node)
2253 goto out;
2254
2255 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002256 while(1) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002257 if (entry->bytes < bytes ||
2258 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002259 node = rb_next(&entry->offset_index);
2260 if (!node)
2261 break;
2262 entry = rb_entry(node, struct btrfs_free_space,
2263 offset_index);
2264 continue;
2265 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002266
Josef Bacik4e69b592011-03-21 10:11:24 -04002267 if (entry->bitmap) {
2268 ret = btrfs_alloc_from_bitmap(block_group,
2269 cluster, entry, bytes,
Josef Bacik0b4a9d22012-01-26 15:01:11 -05002270 cluster->window_start);
Josef Bacik4e69b592011-03-21 10:11:24 -04002271 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002272 node = rb_next(&entry->offset_index);
2273 if (!node)
2274 break;
2275 entry = rb_entry(node, struct btrfs_free_space,
2276 offset_index);
2277 continue;
2278 }
Josef Bacik9b230622012-01-26 15:01:12 -05002279 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002280 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002281 ret = entry->offset;
2282
2283 entry->offset += bytes;
2284 entry->bytes -= bytes;
2285 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002286
Li Zefan5e71b5d2010-11-09 14:55:34 +08002287 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002288 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002289 break;
2290 }
2291out:
2292 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002293
Li Zefan5e71b5d2010-11-09 14:55:34 +08002294 if (!ret)
2295 return 0;
2296
Li Zefan34d52cb2011-03-29 13:46:06 +08002297 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002298
Li Zefan34d52cb2011-03-29 13:46:06 +08002299 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002300 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002301 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002302 if (entry->bitmap) {
2303 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002304 ctl->total_bitmaps--;
2305 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002306 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002307 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002308 }
2309
Li Zefan34d52cb2011-03-29 13:46:06 +08002310 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002311
Chris Masonfa9c0d792009-04-03 09:47:43 -04002312 return ret;
2313}
2314
Josef Bacik96303082009-07-13 21:29:25 -04002315static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2316 struct btrfs_free_space *entry,
2317 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002318 u64 offset, u64 bytes,
2319 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002320{
Li Zefan34d52cb2011-03-29 13:46:06 +08002321 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002322 unsigned long next_zero;
2323 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002324 unsigned long want_bits;
2325 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002326 unsigned long found_bits;
2327 unsigned long start = 0;
2328 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002329 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002330
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002331 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002332 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002333 want_bits = bytes_to_bits(bytes, ctl->unit);
2334 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002335
2336again:
2337 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002338 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002339 next_zero = find_next_zero_bit(entry->bitmap,
2340 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002341 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002342 found_bits = next_zero - i;
2343 break;
2344 }
2345 i = next_zero;
2346 }
2347
2348 if (!found_bits)
Josef Bacik4e69b592011-03-21 10:11:24 -04002349 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002350
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002351 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002352 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002353 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002354 }
2355
2356 total_found += found_bits;
2357
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002358 if (cluster->max_size < found_bits * ctl->unit)
2359 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002360
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002361 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2362 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002363 goto again;
2364 }
2365
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002366 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002367 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002368 ret = tree_insert_offset(&cluster->root, entry->offset,
2369 &entry->offset_index, 1);
Josef Bacikb12d6862013-08-26 17:14:08 -04002370 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002371
Josef Bacik3f7de032011-11-10 08:29:20 -05002372 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002373 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002374 return 0;
2375}
2376
Chris Masonfa9c0d792009-04-03 09:47:43 -04002377/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002378 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002379 * Try to find a cluster with at least bytes total bytes, at least one
2380 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002381 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002382static noinline int
2383setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2384 struct btrfs_free_cluster *cluster,
2385 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002386 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002387{
Li Zefan34d52cb2011-03-29 13:46:06 +08002388 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002389 struct btrfs_free_space *first = NULL;
2390 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002391 struct btrfs_free_space *last;
2392 struct rb_node *node;
2393 u64 window_start;
2394 u64 window_free;
2395 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002396 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002397
Li Zefan34d52cb2011-03-29 13:46:06 +08002398 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002399 if (!entry)
2400 return -ENOSPC;
2401
2402 /*
2403 * We don't want bitmaps, so just move along until we find a normal
2404 * extent entry.
2405 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002406 while (entry->bitmap || entry->bytes < min_bytes) {
2407 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002408 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002409 node = rb_next(&entry->offset_index);
2410 if (!node)
2411 return -ENOSPC;
2412 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2413 }
2414
2415 window_start = entry->offset;
2416 window_free = entry->bytes;
2417 max_extent = entry->bytes;
2418 first = entry;
2419 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002420
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002421 for (node = rb_next(&entry->offset_index); node;
2422 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002423 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2424
Josef Bacik86d4a772011-05-25 13:03:16 -04002425 if (entry->bitmap) {
2426 if (list_empty(&entry->list))
2427 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002428 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002429 }
2430
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002431 if (entry->bytes < min_bytes)
2432 continue;
2433
2434 last = entry;
2435 window_free += entry->bytes;
2436 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002437 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002438 }
2439
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002440 if (window_free < bytes || max_extent < cont1_bytes)
2441 return -ENOSPC;
2442
Josef Bacik4e69b592011-03-21 10:11:24 -04002443 cluster->window_start = first->offset;
2444
2445 node = &first->offset_index;
2446
2447 /*
2448 * now we've found our entries, pull them out of the free space
2449 * cache and put them into the cluster rbtree
2450 */
2451 do {
2452 int ret;
2453
2454 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2455 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002456 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002457 continue;
2458
Li Zefan34d52cb2011-03-29 13:46:06 +08002459 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002460 ret = tree_insert_offset(&cluster->root, entry->offset,
2461 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002462 total_size += entry->bytes;
Josef Bacikb12d6862013-08-26 17:14:08 -04002463 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002464 } while (node && entry != last);
2465
2466 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002467 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002468 return 0;
2469}
2470
2471/*
2472 * This specifically looks for bitmaps that may work in the cluster, we assume
2473 * that we have already failed to find extents that will work.
2474 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002475static noinline int
2476setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2477 struct btrfs_free_cluster *cluster,
2478 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002479 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002480{
Li Zefan34d52cb2011-03-29 13:46:06 +08002481 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002482 struct btrfs_free_space *entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002483 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002484 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002485
Li Zefan34d52cb2011-03-29 13:46:06 +08002486 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04002487 return -ENOSPC;
2488
Josef Bacik86d4a772011-05-25 13:03:16 -04002489 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05002490 * The bitmap that covers offset won't be in the list unless offset
2491 * is just its start offset.
2492 */
2493 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
2494 if (entry->offset != bitmap_offset) {
2495 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
2496 if (entry && list_empty(&entry->list))
2497 list_add(&entry->list, bitmaps);
2498 }
2499
Josef Bacik86d4a772011-05-25 13:03:16 -04002500 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05002501 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04002502 continue;
2503 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002504 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002505 if (!ret)
2506 return 0;
2507 }
2508
2509 /*
Li Zefan52621cb2011-11-20 07:33:38 -05002510 * The bitmaps list has all the bitmaps that record free space
2511 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04002512 */
Li Zefan52621cb2011-11-20 07:33:38 -05002513 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04002514}
2515
2516/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04002517 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002518 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04002519 * We might not find them all in one contiguous area.
2520 *
2521 * returns zero and sets up cluster if things worked out, otherwise
2522 * it returns -enospc
2523 */
Josef Bacik00361582013-08-14 14:02:47 -04002524int btrfs_find_space_cluster(struct btrfs_root *root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04002525 struct btrfs_block_group_cache *block_group,
2526 struct btrfs_free_cluster *cluster,
2527 u64 offset, u64 bytes, u64 empty_size)
2528{
Li Zefan34d52cb2011-03-29 13:46:06 +08002529 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04002530 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05002531 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002532 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002533 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002534 int ret;
2535
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002536 /*
2537 * Choose the minimum extent size we'll require for this
2538 * cluster. For SSD_SPREAD, don't allow any fragmentation.
2539 * For metadata, allow allocates with smaller extents. For
2540 * data, keep it dense.
2541 */
Chris Mason451d7582009-06-09 20:28:34 -04002542 if (btrfs_test_opt(root, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002543 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04002544 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002545 cont1_bytes = bytes;
2546 min_bytes = block_group->sectorsize;
2547 } else {
2548 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
2549 min_bytes = block_group->sectorsize;
2550 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002551
Li Zefan34d52cb2011-03-29 13:46:06 +08002552 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002553
2554 /*
2555 * If we know we don't have enough space to make a cluster don't even
2556 * bother doing all the work to try and find one.
2557 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002558 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002559 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04002560 return -ENOSPC;
2561 }
2562
Chris Masonfa9c0d792009-04-03 09:47:43 -04002563 spin_lock(&cluster->lock);
2564
2565 /* someone already found a cluster, hooray */
2566 if (cluster->block_group) {
2567 ret = 0;
2568 goto out;
2569 }
Josef Bacik4e69b592011-03-21 10:11:24 -04002570
Josef Bacik3f7de032011-11-10 08:29:20 -05002571 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
2572 min_bytes);
2573
2574 INIT_LIST_HEAD(&bitmaps);
Josef Bacik86d4a772011-05-25 13:03:16 -04002575 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002576 bytes + empty_size,
2577 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04002578 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04002579 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002580 offset, bytes + empty_size,
2581 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04002582
2583 /* Clear our temporary list */
2584 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
2585 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04002586
2587 if (!ret) {
2588 atomic_inc(&block_group->count);
2589 list_add_tail(&cluster->block_group_list,
2590 &block_group->cluster_list);
2591 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05002592 } else {
2593 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002594 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002595out:
2596 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002597 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002598
2599 return ret;
2600}
2601
2602/*
2603 * simple code to zero out a cluster
2604 */
2605void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
2606{
2607 spin_lock_init(&cluster->lock);
2608 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00002609 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002610 cluster->max_size = 0;
2611 INIT_LIST_HEAD(&cluster->block_group_list);
2612 cluster->block_group = NULL;
2613}
2614
Li Zefan7fe1e642011-12-29 14:47:27 +08002615static int do_trimming(struct btrfs_block_group_cache *block_group,
2616 u64 *total_trimmed, u64 start, u64 bytes,
2617 u64 reserved_start, u64 reserved_bytes)
2618{
2619 struct btrfs_space_info *space_info = block_group->space_info;
2620 struct btrfs_fs_info *fs_info = block_group->fs_info;
2621 int ret;
2622 int update = 0;
2623 u64 trimmed = 0;
2624
2625 spin_lock(&space_info->lock);
2626 spin_lock(&block_group->lock);
2627 if (!block_group->ro) {
2628 block_group->reserved += reserved_bytes;
2629 space_info->bytes_reserved += reserved_bytes;
2630 update = 1;
2631 }
2632 spin_unlock(&block_group->lock);
2633 spin_unlock(&space_info->lock);
2634
2635 ret = btrfs_error_discard_extent(fs_info->extent_root,
2636 start, bytes, &trimmed);
2637 if (!ret)
2638 *total_trimmed += trimmed;
2639
2640 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
2641
2642 if (update) {
2643 spin_lock(&space_info->lock);
2644 spin_lock(&block_group->lock);
2645 if (block_group->ro)
2646 space_info->bytes_readonly += reserved_bytes;
2647 block_group->reserved -= reserved_bytes;
2648 space_info->bytes_reserved -= reserved_bytes;
2649 spin_unlock(&space_info->lock);
2650 spin_unlock(&block_group->lock);
2651 }
2652
2653 return ret;
2654}
2655
2656static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
2657 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00002658{
Li Zefan34d52cb2011-03-29 13:46:06 +08002659 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08002660 struct btrfs_free_space *entry;
2661 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00002662 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08002663 u64 extent_start;
2664 u64 extent_bytes;
2665 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002666
2667 while (start < end) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002668 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002669
Li Zefan34d52cb2011-03-29 13:46:06 +08002670 if (ctl->free_space < minlen) {
2671 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002672 break;
2673 }
2674
Li Zefan34d52cb2011-03-29 13:46:06 +08002675 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08002676 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002677 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002678 break;
2679 }
2680
Li Zefan7fe1e642011-12-29 14:47:27 +08002681 /* skip bitmaps */
2682 while (entry->bitmap) {
2683 node = rb_next(&entry->offset_index);
2684 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002685 spin_unlock(&ctl->tree_lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08002686 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00002687 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002688 entry = rb_entry(node, struct btrfs_free_space,
2689 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00002690 }
2691
Li Zefan7fe1e642011-12-29 14:47:27 +08002692 if (entry->offset >= end) {
2693 spin_unlock(&ctl->tree_lock);
2694 break;
2695 }
2696
2697 extent_start = entry->offset;
2698 extent_bytes = entry->bytes;
2699 start = max(start, extent_start);
2700 bytes = min(extent_start + extent_bytes, end) - start;
2701 if (bytes < minlen) {
2702 spin_unlock(&ctl->tree_lock);
2703 goto next;
2704 }
2705
2706 unlink_free_space(ctl, entry);
2707 kmem_cache_free(btrfs_free_space_cachep, entry);
2708
Li Zefan34d52cb2011-03-29 13:46:06 +08002709 spin_unlock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00002710
Li Zefan7fe1e642011-12-29 14:47:27 +08002711 ret = do_trimming(block_group, total_trimmed, start, bytes,
2712 extent_start, extent_bytes);
2713 if (ret)
2714 break;
2715next:
Li Dongyangf7039b12011-03-24 10:24:28 +00002716 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00002717
2718 if (fatal_signal_pending(current)) {
2719 ret = -ERESTARTSYS;
2720 break;
2721 }
2722
2723 cond_resched();
2724 }
Li Zefan7fe1e642011-12-29 14:47:27 +08002725out:
2726 return ret;
2727}
2728
2729static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
2730 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
2731{
2732 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
2733 struct btrfs_free_space *entry;
2734 int ret = 0;
2735 int ret2;
2736 u64 bytes;
2737 u64 offset = offset_to_bitmap(ctl, start);
2738
2739 while (offset < end) {
2740 bool next_bitmap = false;
2741
2742 spin_lock(&ctl->tree_lock);
2743
2744 if (ctl->free_space < minlen) {
2745 spin_unlock(&ctl->tree_lock);
2746 break;
2747 }
2748
2749 entry = tree_search_offset(ctl, offset, 1, 0);
2750 if (!entry) {
2751 spin_unlock(&ctl->tree_lock);
2752 next_bitmap = true;
2753 goto next;
2754 }
2755
2756 bytes = minlen;
2757 ret2 = search_bitmap(ctl, entry, &start, &bytes);
2758 if (ret2 || start >= end) {
2759 spin_unlock(&ctl->tree_lock);
2760 next_bitmap = true;
2761 goto next;
2762 }
2763
2764 bytes = min(bytes, end - start);
2765 if (bytes < minlen) {
2766 spin_unlock(&ctl->tree_lock);
2767 goto next;
2768 }
2769
2770 bitmap_clear_bits(ctl, entry, start, bytes);
2771 if (entry->bytes == 0)
2772 free_bitmap(ctl, entry);
2773
2774 spin_unlock(&ctl->tree_lock);
2775
2776 ret = do_trimming(block_group, total_trimmed, start, bytes,
2777 start, bytes);
2778 if (ret)
2779 break;
2780next:
2781 if (next_bitmap) {
2782 offset += BITS_PER_BITMAP * ctl->unit;
2783 } else {
2784 start += bytes;
2785 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
2786 offset += BITS_PER_BITMAP * ctl->unit;
2787 }
2788
2789 if (fatal_signal_pending(current)) {
2790 ret = -ERESTARTSYS;
2791 break;
2792 }
2793
2794 cond_resched();
2795 }
2796
2797 return ret;
2798}
2799
2800int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
2801 u64 *trimmed, u64 start, u64 end, u64 minlen)
2802{
2803 int ret;
2804
2805 *trimmed = 0;
2806
2807 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
2808 if (ret)
2809 return ret;
2810
2811 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
Li Dongyangf7039b12011-03-24 10:24:28 +00002812
2813 return ret;
2814}
Li Zefan581bb052011-04-20 10:06:11 +08002815
2816/*
2817 * Find the left-most item in the cache tree, and then return the
2818 * smallest inode number in the item.
2819 *
2820 * Note: the returned inode number may not be the smallest one in
2821 * the tree, if the left-most item is a bitmap.
2822 */
2823u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
2824{
2825 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
2826 struct btrfs_free_space *entry = NULL;
2827 u64 ino = 0;
2828
2829 spin_lock(&ctl->tree_lock);
2830
2831 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
2832 goto out;
2833
2834 entry = rb_entry(rb_first(&ctl->free_space_offset),
2835 struct btrfs_free_space, offset_index);
2836
2837 if (!entry->bitmap) {
2838 ino = entry->offset;
2839
2840 unlink_free_space(ctl, entry);
2841 entry->offset++;
2842 entry->bytes--;
2843 if (!entry->bytes)
2844 kmem_cache_free(btrfs_free_space_cachep, entry);
2845 else
2846 link_free_space(ctl, entry);
2847 } else {
2848 u64 offset = 0;
2849 u64 count = 1;
2850 int ret;
2851
2852 ret = search_bitmap(ctl, entry, &offset, &count);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002853 /* Logic error; Should be empty if it can't find anything */
Josef Bacikb12d6862013-08-26 17:14:08 -04002854 ASSERT(!ret);
Li Zefan581bb052011-04-20 10:06:11 +08002855
2856 ino = offset;
2857 bitmap_clear_bits(ctl, entry, offset, 1);
2858 if (entry->bytes == 0)
2859 free_bitmap(ctl, entry);
2860 }
2861out:
2862 spin_unlock(&ctl->tree_lock);
2863
2864 return ino;
2865}
Li Zefan82d59022011-04-20 10:33:24 +08002866
2867struct inode *lookup_free_ino_inode(struct btrfs_root *root,
2868 struct btrfs_path *path)
2869{
2870 struct inode *inode = NULL;
2871
2872 spin_lock(&root->cache_lock);
2873 if (root->cache_inode)
2874 inode = igrab(root->cache_inode);
2875 spin_unlock(&root->cache_lock);
2876 if (inode)
2877 return inode;
2878
2879 inode = __lookup_free_space_inode(root, path, 0);
2880 if (IS_ERR(inode))
2881 return inode;
2882
2883 spin_lock(&root->cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02002884 if (!btrfs_fs_closing(root->fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002885 root->cache_inode = igrab(inode);
2886 spin_unlock(&root->cache_lock);
2887
2888 return inode;
2889}
2890
2891int create_free_ino_inode(struct btrfs_root *root,
2892 struct btrfs_trans_handle *trans,
2893 struct btrfs_path *path)
2894{
2895 return __create_free_space_inode(root, trans, path,
2896 BTRFS_FREE_INO_OBJECTID, 0);
2897}
2898
2899int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
2900{
2901 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2902 struct btrfs_path *path;
2903 struct inode *inode;
2904 int ret = 0;
2905 u64 root_gen = btrfs_root_generation(&root->root_item);
2906
Chris Mason4b9465c2011-06-03 09:36:29 -04002907 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2908 return 0;
2909
Li Zefan82d59022011-04-20 10:33:24 +08002910 /*
2911 * If we're unmounting then just return, since this does a search on the
2912 * normal root and not the commit root and we could deadlock.
2913 */
David Sterba7841cb22011-05-31 18:07:27 +02002914 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08002915 return 0;
2916
2917 path = btrfs_alloc_path();
2918 if (!path)
2919 return 0;
2920
2921 inode = lookup_free_ino_inode(root, path);
2922 if (IS_ERR(inode))
2923 goto out;
2924
2925 if (root_gen != BTRFS_I(inode)->generation)
2926 goto out_put;
2927
2928 ret = __load_free_space_cache(root, inode, ctl, path, 0);
2929
2930 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002931 btrfs_err(fs_info,
2932 "failed to load free ino cache for root %llu",
2933 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08002934out_put:
2935 iput(inode);
2936out:
2937 btrfs_free_path(path);
2938 return ret;
2939}
2940
2941int btrfs_write_out_ino_cache(struct btrfs_root *root,
2942 struct btrfs_trans_handle *trans,
2943 struct btrfs_path *path)
2944{
2945 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
2946 struct inode *inode;
2947 int ret;
2948
Chris Mason4b9465c2011-06-03 09:36:29 -04002949 if (!btrfs_test_opt(root, INODE_MAP_CACHE))
2950 return 0;
2951
Li Zefan82d59022011-04-20 10:33:24 +08002952 inode = lookup_free_ino_inode(root, path);
2953 if (IS_ERR(inode))
2954 return 0;
2955
2956 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, trans, path, 0);
Josef Bacikc09544e2011-08-30 10:19:10 -04002957 if (ret) {
2958 btrfs_delalloc_release_metadata(inode, inode->i_size);
2959#ifdef DEBUG
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002960 btrfs_err(root->fs_info,
2961 "failed to write free ino cache for root %llu",
2962 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04002963#endif
2964 }
Li Zefan82d59022011-04-20 10:33:24 +08002965
2966 iput(inode);
2967 return ret;
2968}
Josef Bacik74255aa2013-03-15 09:47:08 -04002969
2970#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04002971/*
2972 * Use this if you need to make a bitmap or extent entry specifically, it
2973 * doesn't do any of the merging that add_free_space does, this acts a lot like
2974 * how the free space cache loading stuff works, so you can get really weird
2975 * configurations.
2976 */
2977int test_add_free_space_entry(struct btrfs_block_group_cache *cache,
2978 u64 offset, u64 bytes, bool bitmap)
Josef Bacik74255aa2013-03-15 09:47:08 -04002979{
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04002980 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
2981 struct btrfs_free_space *info = NULL, *bitmap_info;
2982 void *map = NULL;
2983 u64 bytes_added;
2984 int ret;
Josef Bacik74255aa2013-03-15 09:47:08 -04002985
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04002986again:
2987 if (!info) {
2988 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
2989 if (!info)
2990 return -ENOMEM;
Josef Bacik74255aa2013-03-15 09:47:08 -04002991 }
2992
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04002993 if (!bitmap) {
2994 spin_lock(&ctl->tree_lock);
2995 info->offset = offset;
2996 info->bytes = bytes;
2997 ret = link_free_space(ctl, info);
2998 spin_unlock(&ctl->tree_lock);
2999 if (ret)
3000 kmem_cache_free(btrfs_free_space_cachep, info);
3001 return ret;
3002 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003003
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003004 if (!map) {
3005 map = kzalloc(PAGE_CACHE_SIZE, GFP_NOFS);
3006 if (!map) {
3007 kmem_cache_free(btrfs_free_space_cachep, info);
3008 return -ENOMEM;
3009 }
3010 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003011
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003012 spin_lock(&ctl->tree_lock);
3013 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3014 1, 0);
3015 if (!bitmap_info) {
3016 info->bitmap = map;
3017 map = NULL;
3018 add_new_bitmap(ctl, info, offset);
3019 bitmap_info = info;
3020 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003021
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003022 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
3023 bytes -= bytes_added;
3024 offset += bytes_added;
3025 spin_unlock(&ctl->tree_lock);
3026
3027 if (bytes)
3028 goto again;
3029
3030 if (map)
3031 kfree(map);
3032 return 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003033}
3034
3035/*
3036 * Checks to see if the given range is in the free space cache. This is really
3037 * just used to check the absence of space, so if there is free space in the
3038 * range at all we will return 1.
3039 */
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003040int test_check_exists(struct btrfs_block_group_cache *cache,
3041 u64 offset, u64 bytes)
Josef Bacik74255aa2013-03-15 09:47:08 -04003042{
3043 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3044 struct btrfs_free_space *info;
3045 int ret = 0;
3046
3047 spin_lock(&ctl->tree_lock);
3048 info = tree_search_offset(ctl, offset, 0, 0);
3049 if (!info) {
3050 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3051 1, 0);
3052 if (!info)
3053 goto out;
3054 }
3055
3056have_info:
3057 if (info->bitmap) {
3058 u64 bit_off, bit_bytes;
3059 struct rb_node *n;
3060 struct btrfs_free_space *tmp;
3061
3062 bit_off = offset;
3063 bit_bytes = ctl->unit;
3064 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes);
3065 if (!ret) {
3066 if (bit_off == offset) {
3067 ret = 1;
3068 goto out;
3069 } else if (bit_off > offset &&
3070 offset + bytes > bit_off) {
3071 ret = 1;
3072 goto out;
3073 }
3074 }
3075
3076 n = rb_prev(&info->offset_index);
3077 while (n) {
3078 tmp = rb_entry(n, struct btrfs_free_space,
3079 offset_index);
3080 if (tmp->offset + tmp->bytes < offset)
3081 break;
3082 if (offset + bytes < tmp->offset) {
3083 n = rb_prev(&info->offset_index);
3084 continue;
3085 }
3086 info = tmp;
3087 goto have_info;
3088 }
3089
3090 n = rb_next(&info->offset_index);
3091 while (n) {
3092 tmp = rb_entry(n, struct btrfs_free_space,
3093 offset_index);
3094 if (offset + bytes < tmp->offset)
3095 break;
3096 if (tmp->offset + tmp->bytes < offset) {
3097 n = rb_next(&info->offset_index);
3098 continue;
3099 }
3100 info = tmp;
3101 goto have_info;
3102 }
3103
3104 goto out;
3105 }
3106
3107 if (info->offset == offset) {
3108 ret = 1;
3109 goto out;
3110 }
3111
3112 if (offset > info->offset && offset < info->offset + info->bytes)
3113 ret = 1;
3114out:
3115 spin_unlock(&ctl->tree_lock);
3116 return ret;
3117}
Josef Bacikdc11dd5d2013-08-14 15:05:12 -04003118#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */