extent-tree.c 40.4 KB
Newer Older
C
Chris Mason 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

Z
Zach Brown 已提交
19
#include <linux/sched.h>
20 21 22
#include "ctree.h"
#include "disk-io.h"
#include "print-tree.h"
23
#include "transaction.h"
24

25 26
static int finish_current_insert(struct btrfs_trans_handle *trans, struct
				 btrfs_root *extent_root);
C
Chris Mason 已提交
27 28
static int del_pending_extents(struct btrfs_trans_handle *trans, struct
			       btrfs_root *extent_root);
29

30 31 32 33 34 35 36 37 38 39 40 41
static int cache_block_group(struct btrfs_root *root,
			     struct btrfs_block_group_cache *block_group)
{
	struct btrfs_path *path;
	int ret;
	struct btrfs_key key;
	struct btrfs_leaf *leaf;
	struct radix_tree_root *extent_radix;
	int slot;
	u64 i;
	u64 last = 0;
	u64 hole_size;
42
	u64 limit;
43 44 45 46 47 48 49 50 51 52 53 54
	int found = 0;

	root = root->fs_info->extent_root;
	extent_radix = &root->fs_info->extent_map_radix;

	if (block_group->cached)
		return 0;
	if (block_group->data)
		return 0;
	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;
55
	path->reada = 1;
56 57 58 59 60 61 62 63 64
	key.objectid = block_group->key.objectid;
	key.flags = 0;
	key.offset = 0;
	btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
	if (ret < 0)
		return ret;
	if (ret && path->slots[0] > 0)
		path->slots[0]--;
65
	limit = block_group->key.objectid + block_group->key.offset;
66 67 68 69 70
	while(1) {
		leaf = btrfs_buffer_leaf(path->nodes[0]);
		slot = path->slots[0];
		if (slot >= btrfs_header_nritems(&leaf->header)) {
			ret = btrfs_next_leaf(root, path);
71 72
			if (ret < 0)
				goto err;
73
			if (ret == 0) {
74
				continue;
75
			} else {
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
				if (found) {
					hole_size = block_group->key.objectid +
						block_group->key.offset - last;
				} else {
					last = block_group->key.objectid;
					hole_size = block_group->key.offset;
				}
				for (i = 0; i < hole_size; i++) {
					set_radix_bit(extent_radix,
						      last + i);
				}
				break;
			}
		}
		btrfs_disk_key_to_cpu(&key, &leaf->items[slot].key);
		if (key.objectid >= block_group->key.objectid +
		    block_group->key.offset) {
			if (found) {
				hole_size = block_group->key.objectid +
					block_group->key.offset - last;
			} else {
				last = block_group->key.objectid;
				hole_size = block_group->key.offset;
			}
			for (i = 0; i < hole_size; i++) {
				set_radix_bit(extent_radix, last + i);
			}
			break;
		}
		if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
			if (!found) {
				last = key.objectid + key.offset;
				found = 1;
			} else {
				hole_size = key.objectid - last;
				for (i = 0; i < hole_size; i++) {
					set_radix_bit(extent_radix, last + i);
				}
				last = key.objectid + key.offset;
			}
		}
		path->slots[0]++;
	}

	block_group->cached = 1;
121
err:
122 123 124 125
	btrfs_free_path(path);
	return 0;
}

126 127 128
struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
							 btrfs_fs_info *info,
							 u64 blocknr)
C
Chris Mason 已提交
129 130 131 132 133 134 135 136
{
	struct btrfs_block_group_cache *block_group;
	int ret;

	ret = radix_tree_gang_lookup(&info->block_group_radix,
				     (void **)&block_group,
				     blocknr, 1);
	if (ret) {
C
Chris Mason 已提交
137
		if (block_group->key.objectid <= blocknr && blocknr <=
C
Chris Mason 已提交
138 139 140 141 142 143 144
		    block_group->key.objectid + block_group->key.offset)
			return block_group;
	}
	ret = radix_tree_gang_lookup(&info->block_group_data_radix,
				     (void **)&block_group,
				     blocknr, 1);
	if (ret) {
C
Chris Mason 已提交
145
		if (block_group->key.objectid <= blocknr && blocknr <=
C
Chris Mason 已提交
146 147 148 149 150 151
		    block_group->key.objectid + block_group->key.offset)
			return block_group;
	}
	return NULL;
}

152 153 154
static u64 leaf_range(struct btrfs_root *root)
{
	u64 size = BTRFS_LEAF_DATA_SIZE(root);
C
Chris Mason 已提交
155 156
	do_div(size, sizeof(struct btrfs_extent_item) +
		sizeof(struct btrfs_item));
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
	return size;
}

static u64 find_search_start(struct btrfs_root *root,
			     struct btrfs_block_group_cache **cache_ret,
			     u64 search_start, int num)
{
	unsigned long gang[8];
	int ret;
	struct btrfs_block_group_cache *cache = *cache_ret;
	u64 last = max(search_start, cache->key.objectid);

	if (cache->data)
		goto out;
again:
172 173 174
	ret = cache_block_group(root, cache);
	if (ret)
		goto out;
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
	while(1) {
		ret = find_first_radix_bit(&root->fs_info->extent_map_radix,
					   gang, last, ARRAY_SIZE(gang));
		if (!ret)
			goto out;
		last = gang[ret-1] + 1;
		if (num > 1) {
			if (ret != ARRAY_SIZE(gang)) {
				goto new_group;
			}
			if (gang[ret-1] - gang[0] > leaf_range(root)) {
				continue;
			}
		}
		if (gang[0] >= cache->key.objectid + cache->key.offset) {
			goto new_group;
		}
		return gang[0];
	}
out:
	return max(cache->last_alloc, search_start);

new_group:
198 199
	cache = btrfs_lookup_block_group(root->fs_info,
					 last + cache->key.offset - 1);
200 201 202 203
	if (!cache) {
		return max((*cache_ret)->last_alloc, search_start);
	}
	cache = btrfs_find_block_group(root, cache,
204
				       last + cache->key.offset - 1, 0, 0);
205 206 207 208
	*cache_ret = cache;
	goto again;
}

C
Chris Mason 已提交
209 210 211 212 213 214 215
static u64 div_factor(u64 num, int factor)
{
	num *= factor;
	do_div(num, 10);
	return num;
}

216 217
struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
						 struct btrfs_block_group_cache
C
Chris Mason 已提交
218
						 *hint, u64 search_start,
219
						 int data, int owner)
C
Chris Mason 已提交
220 221
{
	struct btrfs_block_group_cache *cache[8];
222
	struct btrfs_block_group_cache *found_group = NULL;
C
Chris Mason 已提交
223
	struct btrfs_fs_info *info = root->fs_info;
C
Chris Mason 已提交
224
	struct radix_tree_root *radix;
C
Chris Mason 已提交
225
	struct radix_tree_root *swap_radix;
C
Chris Mason 已提交
226
	u64 used;
227 228
	u64 last = 0;
	u64 hint_last;
C
Chris Mason 已提交
229 230
	int i;
	int ret;
231
	int full_search = 0;
232
	int factor = 8;
C
Chris Mason 已提交
233
	int data_swap = 0;
234 235 236

	if (!owner)
		factor = 5;
C
Chris Mason 已提交
237

C
Chris Mason 已提交
238
	if (data) {
C
Chris Mason 已提交
239
		radix = &info->block_group_data_radix;
C
Chris Mason 已提交
240 241
		swap_radix = &info->block_group_radix;
	} else {
C
Chris Mason 已提交
242
		radix = &info->block_group_radix;
C
Chris Mason 已提交
243 244
		swap_radix = &info->block_group_data_radix;
	}
C
Chris Mason 已提交
245 246 247

	if (search_start) {
		struct btrfs_block_group_cache *shint;
248
		shint = btrfs_lookup_block_group(info, search_start);
C
Chris Mason 已提交
249 250 251
		if (shint->data == data) {
			used = btrfs_block_group_used(&shint->item);
			if (used + shint->pinned <
C
Chris Mason 已提交
252
			    div_factor(shint->key.offset, factor)) {
C
Chris Mason 已提交
253 254 255 256 257
				return shint;
			}
		}
	}
	if (hint && hint->data == data) {
258
		used = btrfs_block_group_used(&hint->item);
C
Chris Mason 已提交
259 260
		if (used + hint->pinned <
		    div_factor(hint->key.offset, factor)) {
261 262
			return hint;
		}
C
Chris Mason 已提交
263
		if (used >= div_factor(hint->key.offset, 8)) {
C
Chris Mason 已提交
264 265 266 267 268
			radix_tree_tag_clear(radix,
					     hint->key.objectid +
					     hint->key.offset - 1,
					     BTRFS_BLOCK_GROUP_AVAIL);
		}
269
		last = hint->key.offset * 3;
C
Chris Mason 已提交
270
		if (hint->key.objectid >= last)
271 272
			last = max(search_start + hint->key.offset - 1,
				   hint->key.objectid - last);
C
Chris Mason 已提交
273 274
		else
			last = hint->key.objectid + hint->key.offset;
275 276
		hint_last = last;
	} else {
277 278 279 280 281 282
		if (hint)
			hint_last = max(hint->key.objectid, search_start);
		else
			hint_last = search_start;

		last = hint_last;
283
	}
C
Chris Mason 已提交
284
	while(1) {
C
Chris Mason 已提交
285
		ret = radix_tree_gang_lookup_tag(radix, (void **)cache,
C
Chris Mason 已提交
286
						 last, ARRAY_SIZE(cache),
287
						 BTRFS_BLOCK_GROUP_AVAIL);
C
Chris Mason 已提交
288 289 290
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
C
Chris Mason 已提交
291 292
			last = cache[i]->key.objectid +
				cache[i]->key.offset;
C
Chris Mason 已提交
293
			used = btrfs_block_group_used(&cache[i]->item);
C
Chris Mason 已提交
294
			if (used + cache[i]->pinned <
C
Chris Mason 已提交
295
			    div_factor(cache[i]->key.offset, factor)) {
296 297
				found_group = cache[i];
				goto found;
C
Chris Mason 已提交
298
			}
C
Chris Mason 已提交
299
			if (used >= div_factor(cache[i]->key.offset, 8)) {
C
Chris Mason 已提交
300 301 302 303 304
				radix_tree_tag_clear(radix,
						     cache[i]->key.objectid +
						     cache[i]->key.offset - 1,
						     BTRFS_BLOCK_GROUP_AVAIL);
			}
C
Chris Mason 已提交
305
		}
306
		cond_resched();
C
Chris Mason 已提交
307
	}
308 309
	last = hint_last;
again:
C
Chris Mason 已提交
310
	while(1) {
C
Chris Mason 已提交
311 312
		ret = radix_tree_gang_lookup(radix, (void **)cache,
					     last, ARRAY_SIZE(cache));
C
Chris Mason 已提交
313 314 315
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
C
Chris Mason 已提交
316 317
			last = cache[i]->key.objectid +
				cache[i]->key.offset;
C
Chris Mason 已提交
318
			used = btrfs_block_group_used(&cache[i]->item);
C
Chris Mason 已提交
319
			if (used + cache[i]->pinned < cache[i]->key.offset) {
320 321
				found_group = cache[i];
				goto found;
C
Chris Mason 已提交
322
			}
C
Chris Mason 已提交
323 324 325 326 327 328
			if (used >= cache[i]->key.offset) {
				radix_tree_tag_clear(radix,
						     cache[i]->key.objectid +
						     cache[i]->key.offset - 1,
						     BTRFS_BLOCK_GROUP_AVAIL);
			}
C
Chris Mason 已提交
329
		}
330
		cond_resched();
C
Chris Mason 已提交
331
	}
332
	if (!full_search) {
C
Chris Mason 已提交
333
		last = search_start;
334 335 336
		full_search = 1;
		goto again;
	}
C
Chris Mason 已提交
337 338 339 340 341 342 343 344
	if (!data_swap) {
		struct radix_tree_root *tmp = radix;
		data_swap = 1;
		radix = swap_radix;
		swap_radix = tmp;
		last = search_start;
		goto again;
	}
345
	if (!found_group) {
C
Chris Mason 已提交
346
		ret = radix_tree_gang_lookup(radix,
347
					     (void **)&found_group, 0, 1);
C
Chris Mason 已提交
348 349 350 351 352
		if (ret == 0) {
			ret = radix_tree_gang_lookup(swap_radix,
						     (void **)&found_group,
						     0, 1);
		}
353 354
		BUG_ON(ret != 1);
	}
C
Chris Mason 已提交
355
found:
356
	return found_group;
C
Chris Mason 已提交
357 358
}

C
Chris Mason 已提交
359 360 361
int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
				struct btrfs_root *root,
				u64 blocknr, u64 num_blocks)
C
Chris Mason 已提交
362
{
363
	struct btrfs_path *path;
C
Chris Mason 已提交
364
	int ret;
C
Chris Mason 已提交
365
	struct btrfs_key key;
C
Chris Mason 已提交
366 367
	struct btrfs_leaf *l;
	struct btrfs_extent_item *item;
C
Chris Mason 已提交
368
	u32 refs;
C
Chris Mason 已提交
369

370
	path = btrfs_alloc_path();
371 372
	if (!path)
		return -ENOMEM;
373

C
Chris Mason 已提交
374 375
	key.objectid = blocknr;
	key.flags = 0;
376
	btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
377
	key.offset = num_blocks;
378
	ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
379
				0, 1);
380 381
	if (ret < 0)
		return ret;
382
	if (ret != 0) {
383
		BUG();
384
	}
C
Chris Mason 已提交
385
	BUG_ON(ret != 0);
386 387
	l = btrfs_buffer_leaf(path->nodes[0]);
	item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
C
Chris Mason 已提交
388 389
	refs = btrfs_extent_refs(item);
	btrfs_set_extent_refs(item, refs + 1);
390
	btrfs_mark_buffer_dirty(path->nodes[0]);
391

392 393
	btrfs_release_path(root->fs_info->extent_root, path);
	btrfs_free_path(path);
394
	finish_current_insert(trans, root->fs_info->extent_root);
C
Chris Mason 已提交
395
	del_pending_extents(trans, root->fs_info->extent_root);
C
Chris Mason 已提交
396 397 398
	return 0;
}

C
Chris Mason 已提交
399 400 401
static int lookup_extent_ref(struct btrfs_trans_handle *trans,
			     struct btrfs_root *root, u64 blocknr,
			     u64 num_blocks, u32 *refs)
402
{
403
	struct btrfs_path *path;
404
	int ret;
C
Chris Mason 已提交
405
	struct btrfs_key key;
C
Chris Mason 已提交
406 407
	struct btrfs_leaf *l;
	struct btrfs_extent_item *item;
408 409

	path = btrfs_alloc_path();
410
	key.objectid = blocknr;
411
	key.offset = num_blocks;
412 413
	key.flags = 0;
	btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
414
	ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
415
				0, 0);
416 417
	if (ret < 0)
		goto out;
418 419
	if (ret != 0)
		BUG();
420 421
	l = btrfs_buffer_leaf(path->nodes[0]);
	item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
C
Chris Mason 已提交
422
	*refs = btrfs_extent_refs(item);
423
out:
424
	btrfs_free_path(path);
425 426 427
	return 0;
}

C
Chris Mason 已提交
428 429 430
int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
		       struct btrfs_root *root)
{
C
Chris Mason 已提交
431
	return btrfs_inc_extent_ref(trans, root, bh_blocknr(root->node), 1);
C
Chris Mason 已提交
432 433
}

434
int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
C
Chris Mason 已提交
435
		  struct buffer_head *buf)
C
Chris Mason 已提交
436 437
{
	u64 blocknr;
C
Chris Mason 已提交
438
	struct btrfs_node *buf_node;
439 440 441
	struct btrfs_leaf *buf_leaf;
	struct btrfs_disk_key *key;
	struct btrfs_file_extent_item *fi;
C
Chris Mason 已提交
442
	int i;
443 444
	int leaf;
	int ret;
445 446
	int faili;
	int err;
447

448
	if (!root->ref_cows)
449
		return 0;
C
Chris Mason 已提交
450
	buf_node = btrfs_buffer_node(buf);
451 452
	leaf = btrfs_is_leaf(buf_node);
	buf_leaf = btrfs_buffer_leaf(buf);
C
Chris Mason 已提交
453
	for (i = 0; i < btrfs_header_nritems(&buf_node->header); i++) {
454
		if (leaf) {
C
Chris Mason 已提交
455
			u64 disk_blocknr;
456 457 458 459 460
			key = &buf_leaf->items[i].key;
			if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
				continue;
			fi = btrfs_item_ptr(buf_leaf, i,
					    struct btrfs_file_extent_item);
461 462 463
			if (btrfs_file_extent_type(fi) ==
			    BTRFS_FILE_EXTENT_INLINE)
				continue;
C
Chris Mason 已提交
464 465 466 467
			disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
			if (disk_blocknr == 0)
				continue;
			ret = btrfs_inc_extent_ref(trans, root, disk_blocknr,
468
				    btrfs_file_extent_disk_num_blocks(fi));
469 470 471 472
			if (ret) {
				faili = i;
				goto fail;
			}
473 474
		} else {
			blocknr = btrfs_node_blockptr(buf_node, i);
C
Chris Mason 已提交
475
			ret = btrfs_inc_extent_ref(trans, root, blocknr, 1);
476 477 478 479
			if (ret) {
				faili = i;
				goto fail;
			}
480
		}
C
Chris Mason 已提交
481 482
	}
	return 0;
483
fail:
C
Chris Mason 已提交
484
	WARN_ON(1);
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
	for (i =0; i < faili; i++) {
		if (leaf) {
			u64 disk_blocknr;
			key = &buf_leaf->items[i].key;
			if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
				continue;
			fi = btrfs_item_ptr(buf_leaf, i,
					    struct btrfs_file_extent_item);
			if (btrfs_file_extent_type(fi) ==
			    BTRFS_FILE_EXTENT_INLINE)
				continue;
			disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
			if (disk_blocknr == 0)
				continue;
			err = btrfs_free_extent(trans, root, disk_blocknr,
				    btrfs_file_extent_disk_num_blocks(fi), 0);
			BUG_ON(err);
		} else {
			blocknr = btrfs_node_blockptr(buf_node, i);
			err = btrfs_free_extent(trans, root, blocknr, 1, 0);
			BUG_ON(err);
		}
	}
	return ret;
C
Chris Mason 已提交
509 510
}

C
Chris Mason 已提交
511 512 513 514 515 516 517 518 519 520 521
static int write_one_cache_group(struct btrfs_trans_handle *trans,
				 struct btrfs_root *root,
				 struct btrfs_path *path,
				 struct btrfs_block_group_cache *cache)
{
	int ret;
	int pending_ret;
	struct btrfs_root *extent_root = root->fs_info->extent_root;
	struct btrfs_block_group_item *bi;

	ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
522 523
	if (ret < 0)
		goto fail;
C
Chris Mason 已提交
524 525 526 527
	BUG_ON(ret);
	bi = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
			    struct btrfs_block_group_item);
	memcpy(bi, &cache->item, sizeof(*bi));
C
Chris Mason 已提交
528
	btrfs_mark_buffer_dirty(path->nodes[0]);
C
Chris Mason 已提交
529
	btrfs_release_path(extent_root, path);
530
fail:
C
Chris Mason 已提交
531 532 533 534 535 536
	finish_current_insert(trans, extent_root);
	pending_ret = del_pending_extents(trans, extent_root);
	if (ret)
		return ret;
	if (pending_ret)
		return pending_ret;
C
Chris Mason 已提交
537 538
	if (cache->data)
		cache->last_alloc = cache->first_free;
C
Chris Mason 已提交
539 540 541 542
	return 0;

}

C
Chris Mason 已提交
543 544 545
static int write_dirty_block_radix(struct btrfs_trans_handle *trans,
				   struct btrfs_root *root,
				   struct radix_tree_root *radix)
C
Chris Mason 已提交
546 547 548 549 550 551 552
{
	struct btrfs_block_group_cache *cache[8];
	int ret;
	int err = 0;
	int werr = 0;
	int i;
	struct btrfs_path *path;
553
	unsigned long off = 0;
C
Chris Mason 已提交
554 555 556 557 558 559 560

	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

	while(1) {
		ret = radix_tree_gang_lookup_tag(radix, (void **)cache,
561
						 off, ARRAY_SIZE(cache),
C
Chris Mason 已提交
562 563 564 565 566 567
						 BTRFS_BLOCK_GROUP_DIRTY);
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
			err = write_one_cache_group(trans, root,
						    path, cache[i]);
568 569 570 571 572 573
			/*
			 * if we fail to write the cache group, we want
			 * to keep it marked dirty in hopes that a later
			 * write will work
			 */
			if (err) {
C
Chris Mason 已提交
574
				werr = err;
575 576 577 578 579 580 581 582
				off = cache[i]->key.objectid +
					cache[i]->key.offset;
				continue;
			}

			radix_tree_tag_clear(radix, cache[i]->key.objectid +
					     cache[i]->key.offset - 1,
					     BTRFS_BLOCK_GROUP_DIRTY);
C
Chris Mason 已提交
583 584 585 586 587 588
		}
	}
	btrfs_free_path(path);
	return werr;
}

C
Chris Mason 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
				   struct btrfs_root *root)
{
	int ret;
	int ret2;
	ret = write_dirty_block_radix(trans, root,
				      &root->fs_info->block_group_radix);
	ret2 = write_dirty_block_radix(trans, root,
				      &root->fs_info->block_group_data_radix);
	if (ret)
		return ret;
	if (ret2)
		return ret2;
	return 0;
}

C
Chris Mason 已提交
605 606
static int update_block_group(struct btrfs_trans_handle *trans,
			      struct btrfs_root *root,
C
Chris Mason 已提交
607 608
			      u64 blocknr, u64 num, int alloc, int mark_free,
			      int data)
C
Chris Mason 已提交
609 610 611 612 613 614
{
	struct btrfs_block_group_cache *cache;
	struct btrfs_fs_info *info = root->fs_info;
	u64 total = num;
	u64 old_val;
	u64 block_in_group;
615
	u64 i;
C
Chris Mason 已提交
616
	int ret;
C
Chris Mason 已提交
617

C
Chris Mason 已提交
618
	while(total) {
619
		cache = btrfs_lookup_block_group(info, blocknr);
C
Chris Mason 已提交
620
		if (!cache) {
C
Chris Mason 已提交
621
			return -1;
C
Chris Mason 已提交
622
		}
C
Chris Mason 已提交
623 624
		block_in_group = blocknr - cache->key.objectid;
		WARN_ON(block_in_group > cache->key.offset);
C
Chris Mason 已提交
625
		radix_tree_tag_set(cache->radix, cache->key.objectid +
C
Chris Mason 已提交
626
				   cache->key.offset - 1,
C
Chris Mason 已提交
627 628 629 630
				   BTRFS_BLOCK_GROUP_DIRTY);

		old_val = btrfs_block_group_used(&cache->item);
		num = min(total, cache->key.offset - block_in_group);
C
Chris Mason 已提交
631 632 633
		if (alloc) {
			if (blocknr > cache->last_alloc)
				cache->last_alloc = blocknr;
634 635 636 637 638 639
			if (!cache->data) {
				for (i = 0; i < num; i++) {
					clear_radix_bit(&info->extent_map_radix,
						        blocknr + i);
				}
			}
C
Chris Mason 已提交
640
			if (cache->data != data &&
C
Chris Mason 已提交
641
			    old_val < (cache->key.offset >> 1)) {
C
Chris Mason 已提交
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662
				cache->data = data;
				radix_tree_delete(cache->radix,
						  cache->key.objectid +
						  cache->key.offset - 1);

				if (data) {
					cache->radix =
						&info->block_group_data_radix;
					cache->item.flags |=
						BTRFS_BLOCK_GROUP_DATA;
				} else {
					cache->radix = &info->block_group_radix;
					cache->item.flags &=
						~BTRFS_BLOCK_GROUP_DATA;
				}
				ret = radix_tree_insert(cache->radix,
							cache->key.objectid +
							cache->key.offset - 1,
							(void *)cache);
			}
			old_val += num;
C
Chris Mason 已提交
663
		} else {
C
Chris Mason 已提交
664
			old_val -= num;
C
Chris Mason 已提交
665 666
			if (blocknr < cache->first_free)
				cache->first_free = blocknr;
667 668 669 670 671 672
			if (!cache->data && mark_free) {
				for (i = 0; i < num; i++) {
					set_radix_bit(&info->extent_map_radix,
						      blocknr + i);
				}
			}
C
Chris Mason 已提交
673 674
			if (old_val < (cache->key.offset >> 1) &&
			    old_val + num >= (cache->key.offset >> 1)) {
675 676 677 678 679
				radix_tree_tag_set(cache->radix,
						   cache->key.objectid +
						   cache->key.offset - 1,
						   BTRFS_BLOCK_GROUP_AVAIL);
			}
C
Chris Mason 已提交
680
		}
C
Chris Mason 已提交
681
		btrfs_set_block_group_used(&cache->item, old_val);
682 683
		total -= num;
		blocknr += num;
C
Chris Mason 已提交
684 685 686 687
	}
	return 0;
}

C
Chris Mason 已提交
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
int btrfs_copy_pinned(struct btrfs_root *root, struct radix_tree_root *copy)
{
	unsigned long gang[8];
	u64 last = 0;
	struct radix_tree_root *pinned_radix = &root->fs_info->pinned_radix;
	int ret;
	int i;

	while(1) {
		ret = find_first_radix_bit(pinned_radix, gang, last,
					   ARRAY_SIZE(gang));
		if (!ret)
			break;
		for (i = 0 ; i < ret; i++) {
			set_radix_bit(copy, gang[i]);
			last = gang[i] + 1;
		}
	}
706 707 708
	ret = find_first_radix_bit(&root->fs_info->extent_ins_radix, gang, 0,
				   ARRAY_SIZE(gang));
	WARN_ON(ret);
C
Chris Mason 已提交
709 710 711 712 713 714
	return 0;
}

int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
			       struct btrfs_root *root,
			       struct radix_tree_root *unpin_radix)
715
{
C
Chris Mason 已提交
716
	unsigned long gang[8];
C
Chris Mason 已提交
717
	struct btrfs_block_group_cache *block_group;
718
	u64 first = 0;
719 720
	int ret;
	int i;
C
Chris Mason 已提交
721
	struct radix_tree_root *pinned_radix = &root->fs_info->pinned_radix;
722
	struct radix_tree_root *extent_radix = &root->fs_info->extent_map_radix;
723 724

	while(1) {
C
Chris Mason 已提交
725
		ret = find_first_radix_bit(unpin_radix, gang, 0,
C
Chris Mason 已提交
726
					   ARRAY_SIZE(gang));
727 728
		if (!ret)
			break;
729
		if (!first)
C
Chris Mason 已提交
730
			first = gang[0];
731
		for (i = 0; i < ret; i++) {
C
Chris Mason 已提交
732
			clear_radix_bit(pinned_radix, gang[i]);
C
Chris Mason 已提交
733
			clear_radix_bit(unpin_radix, gang[i]);
734 735
			block_group = btrfs_lookup_block_group(root->fs_info,
							       gang[i]);
C
Chris Mason 已提交
736 737 738 739 740
			if (block_group) {
				WARN_ON(block_group->pinned == 0);
				block_group->pinned--;
				if (gang[i] < block_group->last_alloc)
					block_group->last_alloc = gang[i];
741 742
				if (!block_group->data)
					set_radix_bit(extent_radix, gang[i]);
C
Chris Mason 已提交
743
			}
744
		}
745 746 747 748
	}
	return 0;
}

749 750
static int finish_current_insert(struct btrfs_trans_handle *trans, struct
				 btrfs_root *extent_root)
C
Chris Mason 已提交
751
{
C
Chris Mason 已提交
752
	struct btrfs_key ins;
C
Chris Mason 已提交
753
	struct btrfs_extent_item extent_item;
C
Chris Mason 已提交
754 755
	int i;
	int ret;
756 757
	int err;
	unsigned long gang[8];
758
	struct btrfs_fs_info *info = extent_root->fs_info;
C
Chris Mason 已提交
759

C
Chris Mason 已提交
760
	btrfs_set_extent_refs(&extent_item, 1);
C
Chris Mason 已提交
761 762
	ins.offset = 1;
	ins.flags = 0;
763
	btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
764
	btrfs_set_extent_owner(&extent_item, extent_root->root_key.objectid);
C
Chris Mason 已提交
765

766 767 768 769 770 771 772 773 774 775 776 777 778 779
	while(1) {
		ret = find_first_radix_bit(&info->extent_ins_radix, gang, 0,
					   ARRAY_SIZE(gang));
		if (!ret)
			break;

		for (i = 0; i < ret; i++) {
			ins.objectid = gang[i];
			err = btrfs_insert_item(trans, extent_root, &ins,
						&extent_item,
						sizeof(extent_item));
			clear_radix_bit(&info->extent_ins_radix, gang[i]);
			WARN_ON(err);
		}
C
Chris Mason 已提交
780 781 782 783
	}
	return 0;
}

C
Chris Mason 已提交
784
static int pin_down_block(struct btrfs_root *root, u64 blocknr, int pending)
C
Chris Mason 已提交
785 786
{
	int err;
C
Chris Mason 已提交
787
	struct btrfs_header *header;
C
Chris Mason 已提交
788 789
	struct buffer_head *bh;

C
Chris Mason 已提交
790
	if (!pending) {
791
		bh = btrfs_find_tree_block(root, blocknr);
C
Chris Mason 已提交
792 793 794 795 796 797 798 799 800 801
		if (bh) {
			if (buffer_uptodate(bh)) {
				u64 transid =
				    root->fs_info->running_transaction->transid;
				header = btrfs_buffer_header(bh);
				if (btrfs_header_generation(header) ==
				    transid) {
					btrfs_block_release(root, bh);
					return 0;
				}
C
Chris Mason 已提交
802
			}
C
Chris Mason 已提交
803
			btrfs_block_release(root, bh);
C
Chris Mason 已提交
804 805
		}
		err = set_radix_bit(&root->fs_info->pinned_radix, blocknr);
C
Chris Mason 已提交
806 807
		if (!err) {
			struct btrfs_block_group_cache *cache;
808 809
			cache = btrfs_lookup_block_group(root->fs_info,
							 blocknr);
C
Chris Mason 已提交
810 811 812
			if (cache)
				cache->pinned++;
		}
C
Chris Mason 已提交
813 814 815
	} else {
		err = set_radix_bit(&root->fs_info->pending_del_radix, blocknr);
	}
C
Chris Mason 已提交
816
	BUG_ON(err < 0);
C
Chris Mason 已提交
817 818 819
	return 0;
}

820
/*
821
 * remove an extent from the root, returns 0 on success
822
 */
823
static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
824 825
			 *root, u64 blocknr, u64 num_blocks, int pin,
			 int mark_free)
826
{
827
	struct btrfs_path *path;
C
Chris Mason 已提交
828
	struct btrfs_key key;
829 830
	struct btrfs_fs_info *info = root->fs_info;
	struct btrfs_root *extent_root = info->extent_root;
831
	int ret;
C
Chris Mason 已提交
832
	struct btrfs_extent_item *ei;
C
Chris Mason 已提交
833
	u32 refs;
C
Chris Mason 已提交
834

835 836
	key.objectid = blocknr;
	key.flags = 0;
837
	btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
838 839
	key.offset = num_blocks;

840
	path = btrfs_alloc_path();
841 842
	if (!path)
		return -ENOMEM;
843

844 845 846 847
	ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
	if (ret < 0)
		return ret;
	BUG_ON(ret);
848
	ei = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
C
Chris Mason 已提交
849
			    struct btrfs_extent_item);
850
	BUG_ON(ei->refs == 0);
C
Chris Mason 已提交
851 852
	refs = btrfs_extent_refs(ei) - 1;
	btrfs_set_extent_refs(ei, refs);
853
	btrfs_mark_buffer_dirty(path->nodes[0]);
C
Chris Mason 已提交
854
	if (refs == 0) {
855
		u64 super_blocks_used;
C
Chris Mason 已提交
856 857

		if (pin) {
C
Chris Mason 已提交
858
			ret = pin_down_block(root, blocknr, 0);
C
Chris Mason 已提交
859 860 861
			BUG_ON(ret);
		}

862 863
		super_blocks_used = btrfs_super_blocks_used(&info->super_copy);
		btrfs_set_super_blocks_used(&info->super_copy,
864
					    super_blocks_used - num_blocks);
865
		ret = btrfs_del_item(trans, extent_root, path);
866 867 868
		if (ret) {
			return ret;
		}
869
		ret = update_block_group(trans, root, blocknr, num_blocks, 0,
C
Chris Mason 已提交
870
					 mark_free, 0);
C
Chris Mason 已提交
871
		BUG_ON(ret);
872
	}
873
	btrfs_free_path(path);
874
	finish_current_insert(trans, extent_root);
875 876 877 878 879 880 881
	return ret;
}

/*
 * find all the blocks marked as pending in the radix tree and remove
 * them from the extent map
 */
882 883
static int del_pending_extents(struct btrfs_trans_handle *trans, struct
			       btrfs_root *extent_root)
884 885
{
	int ret;
C
Chris Mason 已提交
886 887
	int wret;
	int err = 0;
C
Chris Mason 已提交
888
	unsigned long gang[4];
889
	int i;
C
Chris Mason 已提交
890 891
	struct radix_tree_root *pending_radix;
	struct radix_tree_root *pinned_radix;
C
Chris Mason 已提交
892
	struct btrfs_block_group_cache *cache;
C
Chris Mason 已提交
893 894 895

	pending_radix = &extent_root->fs_info->pending_del_radix;
	pinned_radix = &extent_root->fs_info->pinned_radix;
896 897

	while(1) {
898
		ret = find_first_radix_bit(pending_radix, gang, 0,
C
Chris Mason 已提交
899
					   ARRAY_SIZE(gang));
900 901 902
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
C
Chris Mason 已提交
903
			wret = set_radix_bit(pinned_radix, gang[i]);
C
Chris Mason 已提交
904
			if (wret == 0) {
905 906
				cache =
				  btrfs_lookup_block_group(extent_root->fs_info,
C
Chris Mason 已提交
907 908 909 910 911 912 913 914 915
							   gang[i]);
				if (cache)
					cache->pinned++;
			}
			if (wret < 0) {
				printk(KERN_CRIT "set_radix_bit, err %d\n",
				       wret);
				BUG_ON(wret < 0);
			}
C
Chris Mason 已提交
916 917
			wret = clear_radix_bit(pending_radix, gang[i]);
			BUG_ON(wret);
918
			wret = __free_extent(trans, extent_root,
919
					     gang[i], 1, 0, 0);
C
Chris Mason 已提交
920 921
			if (wret)
				err = wret;
922 923
		}
	}
C
Chris Mason 已提交
924
	return err;
925 926 927 928 929
}

/*
 * remove an extent from the root, returns 0 on success
 */
930 931
int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, u64 blocknr, u64 num_blocks, int pin)
932
{
933
	struct btrfs_root *extent_root = root->fs_info->extent_root;
934 935
	int pending_ret;
	int ret;
936

937
	if (root == extent_root) {
C
Chris Mason 已提交
938
		pin_down_block(root, blocknr, 1);
939 940
		return 0;
	}
941
	ret = __free_extent(trans, root, blocknr, num_blocks, pin, pin == 0);
C
Chris Mason 已提交
942
	pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
943 944 945 946 947 948 949
	return ret ? ret : pending_ret;
}

/*
 * walks the btree of allocated extents and find a hole of a given size.
 * The key ins is changed to record the hole:
 * ins->objectid == block start
950
 * ins->flags = BTRFS_EXTENT_ITEM_KEY
951 952 953
 * ins->offset == number of blocks
 * Any available blocks before search_start are skipped.
 */
954
static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
955 956
			    *orig_root, u64 num_blocks, u64 empty_size,
			    u64 search_start, u64 search_end, u64 hint_block,
957 958
			    struct btrfs_key *ins, u64 exclude_start,
			    u64 exclude_nr, int data)
959
{
960
	struct btrfs_path *path;
C
Chris Mason 已提交
961
	struct btrfs_key key;
962 963 964
	int ret;
	u64 hole_size = 0;
	int slot = 0;
C
Chris Mason 已提交
965
	u64 last_block = 0;
C
Chris Mason 已提交
966
	u64 test_block;
C
Chris Mason 已提交
967
	u64 orig_search_start = search_start;
968
	int start_found;
C
Chris Mason 已提交
969
	struct btrfs_leaf *l;
970
	struct btrfs_root * root = orig_root->fs_info->extent_root;
971
	struct btrfs_fs_info *info = root->fs_info;
972
	int total_needed = num_blocks;
C
Chris Mason 已提交
973
	int level;
C
Chris Mason 已提交
974
	struct btrfs_block_group_cache *block_group;
C
Chris Mason 已提交
975
	int full_scan = 0;
976
	int wrapped = 0;
977
	u64 limit;
978

979
	WARN_ON(num_blocks < 1);
980 981 982
	ins->flags = 0;
	btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);

C
Chris Mason 已提交
983
	level = btrfs_header_level(btrfs_buffer_header(root->node));
C
Chris Mason 已提交
984
	if (search_end == (u64)-1)
985
		search_end = btrfs_super_total_blocks(&info->super_copy);
986
	if (hint_block) {
987
		block_group = btrfs_lookup_block_group(info, hint_block);
C
Chris Mason 已提交
988
		block_group = btrfs_find_block_group(root, block_group,
989
						     hint_block, data, 1);
C
Chris Mason 已提交
990 991 992
	} else {
		block_group = btrfs_find_block_group(root,
						     trans->block_group, 0,
993
						     data, 1);
C
Chris Mason 已提交
994 995
	}

996
	total_needed += empty_size;
997 998
	path = btrfs_alloc_path();

C
Chris Mason 已提交
999
check_failed:
C
Chris Mason 已提交
1000
	if (!block_group->data)
1001 1002
		search_start = find_search_start(root, &block_group,
						 search_start, total_needed);
1003
	else if (!full_scan)
1004 1005
		search_start = max(block_group->last_alloc, search_start);

1006
	btrfs_init_path(path);
1007 1008 1009
	ins->objectid = search_start;
	ins->offset = 0;
	start_found = 0;
1010

1011
	ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
C
Chris Mason 已提交
1012 1013
	if (ret < 0)
		goto error;
C
Chris Mason 已提交
1014

1015
	if (path->slots[0] > 0) {
1016
		path->slots[0]--;
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
	}

	l = btrfs_buffer_leaf(path->nodes[0]);
	btrfs_disk_key_to_cpu(&key, &l->items[path->slots[0]].key);
	/*
	 * a rare case, go back one key if we hit a block group item
	 * instead of an extent item
	 */
	if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY &&
	    key.objectid + key.offset >= search_start) {
		ins->objectid = key.objectid;
		ins->offset = key.offset - 1;
		btrfs_release_path(root, path);
		ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
		if (ret < 0)
			goto error;

		if (path->slots[0] > 0) {
			path->slots[0]--;
		}
	}
1038

1039
	while (1) {
1040 1041
		l = btrfs_buffer_leaf(path->nodes[0]);
		slot = path->slots[0];
1042
		if (slot >= btrfs_header_nritems(&l->header)) {
1043 1044
			if (start_found)
				limit = last_block +
C
Chris Mason 已提交
1045
					(block_group->key.offset >> 1);
1046 1047
			else
				limit = search_start +
C
Chris Mason 已提交
1048
					(block_group->key.offset >> 1);
1049
			ret = btrfs_next_leaf(root, path);
1050 1051
			if (ret == 0)
				continue;
C
Chris Mason 已提交
1052 1053
			if (ret < 0)
				goto error;
1054 1055
			if (!start_found) {
				ins->objectid = search_start;
C
Chris Mason 已提交
1056
				ins->offset = search_end - search_start;
1057 1058 1059 1060 1061
				start_found = 1;
				goto check_pending;
			}
			ins->objectid = last_block > search_start ?
					last_block : search_start;
C
Chris Mason 已提交
1062
			ins->offset = search_end - ins->objectid;
1063 1064
			goto check_pending;
		}
1065

C
Chris Mason 已提交
1066
		btrfs_disk_key_to_cpu(&key, &l->items[slot].key);
1067 1068 1069 1070 1071 1072 1073 1074 1075
		if (key.objectid >= search_start && key.objectid > last_block &&
		    start_found) {
			if (last_block < search_start)
				last_block = search_start;
			hole_size = key.objectid - last_block;
			if (hole_size >= num_blocks) {
				ins->objectid = last_block;
				ins->offset = hole_size;
				goto check_pending;
1076
			}
1077
		}
1078 1079 1080 1081

		if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY)
			goto next;

1082
		start_found = 1;
C
Chris Mason 已提交
1083
		last_block = key.objectid + key.offset;
1084
		if (!full_scan && last_block >= block_group->key.objectid +
C
Chris Mason 已提交
1085 1086 1087 1088 1089 1090
		    block_group->key.offset) {
			btrfs_release_path(root, path);
			search_start = block_group->key.objectid +
				block_group->key.offset * 2;
			goto new_group;
		}
C
Chris Mason 已提交
1091
next:
1092
		path->slots[0]++;
1093
		cond_resched();
1094 1095 1096 1097 1098
	}
check_pending:
	/* we have to make sure we didn't find an extent that has already
	 * been allocated by the map tree or the original allocation
	 */
1099
	btrfs_release_path(root, path);
1100
	BUG_ON(ins->objectid < search_start);
1101

C
Chris Mason 已提交
1102
	if (ins->objectid + num_blocks >= search_end) {
1103 1104 1105 1106
		if (full_scan) {
			ret = -ENOSPC;
			goto error;
		}
C
Chris Mason 已提交
1107
		search_start = orig_search_start;
1108 1109 1110
		if (wrapped) {
			if (!full_scan)
				total_needed -= empty_size;
1111
			full_scan = 1;
1112
		} else
1113
			wrapped = 1;
C
Chris Mason 已提交
1114
		goto new_group;
1115
	}
C
Chris Mason 已提交
1116
	for (test_block = ins->objectid;
1117
	     test_block < ins->objectid + num_blocks; test_block++) {
1118 1119
		if (test_radix_bit(&info->pinned_radix, test_block) ||
		    test_radix_bit(&info->extent_ins_radix, test_block)) {
C
Chris Mason 已提交
1120
			search_start = test_block + 1;
C
Chris Mason 已提交
1121
			goto new_group;
1122 1123
		}
	}
1124 1125 1126 1127 1128
	if (exclude_nr > 0 && (ins->objectid + num_blocks > exclude_start &&
	    ins->objectid < exclude_start + exclude_nr)) {
		search_start = exclude_start + exclude_nr;
		goto new_group;
	}
1129
	if (!data) {
1130
		block_group = btrfs_lookup_block_group(info, ins->objectid);
1131 1132
		if (block_group)
			trans->block_group = block_group;
1133
	}
C
Chris Mason 已提交
1134
	ins->offset = num_blocks;
1135
	btrfs_free_path(path);
1136
	return 0;
C
Chris Mason 已提交
1137 1138

new_group:
C
Chris Mason 已提交
1139
	if (search_start + num_blocks >= search_end) {
C
Chris Mason 已提交
1140
		search_start = orig_search_start;
1141 1142 1143 1144
		if (full_scan) {
			ret = -ENOSPC;
			goto error;
		}
1145 1146 1147
		if (wrapped) {
			if (!full_scan)
				total_needed -= empty_size;
1148
			full_scan = 1;
1149
		} else
1150
			wrapped = 1;
C
Chris Mason 已提交
1151
	}
1152
	block_group = btrfs_lookup_block_group(info, search_start);
1153
	cond_resched();
C
Chris Mason 已提交
1154 1155
	if (!full_scan)
		block_group = btrfs_find_block_group(root, block_group,
1156
						     search_start, data, 0);
C
Chris Mason 已提交
1157 1158
	goto check_failed;

C
Chris Mason 已提交
1159
error:
1160 1161
	btrfs_release_path(root, path);
	btrfs_free_path(path);
C
Chris Mason 已提交
1162
	return ret;
1163 1164 1165 1166 1167 1168 1169 1170
}
/*
 * finds a free extent and does all the dirty work required for allocation
 * returns the key for the extent through ins, and a tree buffer for
 * the first block of the extent through buf.
 *
 * returns 0 if everything worked, non-zero otherwise.
 */
1171 1172
int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
		       struct btrfs_root *root, u64 owner,
1173
		       u64 num_blocks, u64 empty_size, u64 hint_block,
C
Chris Mason 已提交
1174
		       u64 search_end, struct btrfs_key *ins, int data)
1175 1176 1177
{
	int ret;
	int pending_ret;
1178
	u64 super_blocks_used;
1179
	u64 search_start = 0;
1180 1181
	struct btrfs_fs_info *info = root->fs_info;
	struct btrfs_root *extent_root = info->extent_root;
C
Chris Mason 已提交
1182
	struct btrfs_extent_item extent_item;
C
Chris Mason 已提交
1183

C
Chris Mason 已提交
1184
	btrfs_set_extent_refs(&extent_item, 1);
1185
	btrfs_set_extent_owner(&extent_item, owner);
1186

1187
	WARN_ON(num_blocks < 1);
1188 1189
	ret = find_free_extent(trans, root, num_blocks, empty_size,
			       search_start, search_end, hint_block, ins,
1190 1191
			       trans->alloc_exclude_start,
			       trans->alloc_exclude_nr, data);
C
Chris Mason 已提交
1192
	BUG_ON(ret);
1193 1194
	if (ret)
		return ret;
1195

1196 1197
	super_blocks_used = btrfs_super_blocks_used(&info->super_copy);
	btrfs_set_super_blocks_used(&info->super_copy, super_blocks_used +
1198
				    num_blocks);
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208

	if (root == extent_root) {
		BUG_ON(num_blocks != 1);
		set_radix_bit(&root->fs_info->extent_ins_radix, ins->objectid);
		goto update_block;
	}

	WARN_ON(trans->alloc_exclude_nr);
	trans->alloc_exclude_start = ins->objectid;
	trans->alloc_exclude_nr = ins->offset;
1209 1210
	ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
				sizeof(extent_item));
C
Chris Mason 已提交
1211

1212 1213 1214
	trans->alloc_exclude_start = 0;
	trans->alloc_exclude_nr = 0;

C
Chris Mason 已提交
1215
	BUG_ON(ret);
1216
	finish_current_insert(trans, extent_root);
C
Chris Mason 已提交
1217
	pending_ret = del_pending_extents(trans, extent_root);
1218
	if (ret) {
C
Chris Mason 已提交
1219
		return ret;
1220 1221
	}
	if (pending_ret) {
C
Chris Mason 已提交
1222
		return pending_ret;
1223
	}
1224 1225

update_block:
C
Chris Mason 已提交
1226 1227
	ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
				 data);
C
Chris Mason 已提交
1228
	BUG_ON(ret);
C
Chris Mason 已提交
1229
	return 0;
1230 1231 1232 1233 1234 1235
}

/*
 * helper function to allocate a block for a given tree
 * returns the tree buffer or NULL.
 */
C
Chris Mason 已提交
1236
struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1237 1238
					   struct btrfs_root *root, u64 hint,
					   u64 empty_size)
1239
{
C
Chris Mason 已提交
1240
	struct btrfs_key ins;
1241
	int ret;
C
Chris Mason 已提交
1242
	struct buffer_head *buf;
1243

1244
	ret = btrfs_alloc_extent(trans, root, root->root_key.objectid,
1245 1246
				 1, empty_size, hint,
				 (unsigned long)-1, &ins, 0);
1247
	if (ret) {
1248 1249
		BUG_ON(ret > 0);
		return ERR_PTR(ret);
1250
	}
1251
	buf = btrfs_find_create_tree_block(root, ins.objectid);
1252 1253 1254 1255
	if (!buf) {
		btrfs_free_extent(trans, root, ins.objectid, 1, 0);
		return ERR_PTR(-ENOMEM);
	}
1256
	WARN_ON(buffer_dirty(buf));
1257
	set_buffer_uptodate(buf);
C
Chris Mason 已提交
1258
	set_buffer_checked(buf);
1259
	set_radix_bit(&trans->transaction->dirty_pages, buf->b_page->index);
1260 1261
	return buf;
}
1262

1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
static int drop_leaf_ref(struct btrfs_trans_handle *trans,
			 struct btrfs_root *root, struct buffer_head *cur)
{
	struct btrfs_disk_key *key;
	struct btrfs_leaf *leaf;
	struct btrfs_file_extent_item *fi;
	int i;
	int nritems;
	int ret;

	BUG_ON(!btrfs_is_leaf(btrfs_buffer_node(cur)));
	leaf = btrfs_buffer_leaf(cur);
	nritems = btrfs_header_nritems(&leaf->header);
	for (i = 0; i < nritems; i++) {
C
Chris Mason 已提交
1277
		u64 disk_blocknr;
1278 1279 1280 1281
		key = &leaf->items[i].key;
		if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
			continue;
		fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
1282 1283
		if (btrfs_file_extent_type(fi) == BTRFS_FILE_EXTENT_INLINE)
			continue;
1284 1285 1286 1287
		/*
		 * FIXME make sure to insert a trans record that
		 * repeats the snapshot del on crash
		 */
C
Chris Mason 已提交
1288 1289 1290 1291
		disk_blocknr = btrfs_file_extent_disk_blocknr(fi);
		if (disk_blocknr == 0)
			continue;
		ret = btrfs_free_extent(trans, root, disk_blocknr,
1292 1293 1294 1295 1296 1297 1298
					btrfs_file_extent_disk_num_blocks(fi),
					0);
		BUG_ON(ret);
	}
	return 0;
}

1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
static void reada_walk_down(struct btrfs_root *root,
			    struct btrfs_node *node)
{
	int i;
	u32 nritems;
	u64 blocknr;
	int ret;
	u32 refs;

	nritems = btrfs_header_nritems(&node->header);
	for (i = 0; i < nritems; i++) {
		blocknr = btrfs_node_blockptr(node, i);
		ret = lookup_extent_ref(NULL, root, blocknr, 1, &refs);
		BUG_ON(ret);
		if (refs != 1)
			continue;
		ret = readahead_tree_block(root, blocknr);
		if (ret)
			break;
	}
}

C
Chris Mason 已提交
1321 1322 1323 1324
/*
 * helper function for drop_snapshot, this walks down the tree dropping ref
 * counts as it goes.
 */
1325 1326
static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
			  *root, struct btrfs_path *path, int *level)
C
Chris Mason 已提交
1327
{
C
Chris Mason 已提交
1328 1329
	struct buffer_head *next;
	struct buffer_head *cur;
C
Chris Mason 已提交
1330 1331 1332 1333
	u64 blocknr;
	int ret;
	u32 refs;

1334 1335
	WARN_ON(*level < 0);
	WARN_ON(*level >= BTRFS_MAX_LEVEL);
C
Chris Mason 已提交
1336
	ret = lookup_extent_ref(trans, root, bh_blocknr(path->nodes[*level]),
1337
			       1, &refs);
C
Chris Mason 已提交
1338 1339 1340
	BUG_ON(ret);
	if (refs > 1)
		goto out;
1341

C
Chris Mason 已提交
1342 1343 1344
	/*
	 * walk down to the last node level and free all the leaves
	 */
1345
	while(*level >= 0) {
1346 1347
		WARN_ON(*level < 0);
		WARN_ON(*level >= BTRFS_MAX_LEVEL);
C
Chris Mason 已提交
1348
		cur = path->nodes[*level];
1349 1350 1351 1352

		if (*level > 0 && path->slots[*level] == 0)
			reada_walk_down(root, btrfs_buffer_node(cur));

C
Chris Mason 已提交
1353 1354
		if (btrfs_header_level(btrfs_buffer_header(cur)) != *level)
			WARN_ON(1);
1355

1356
		if (path->slots[*level] >=
C
Chris Mason 已提交
1357
		    btrfs_header_nritems(btrfs_buffer_header(cur)))
C
Chris Mason 已提交
1358
			break;
1359 1360 1361 1362 1363
		if (*level == 0) {
			ret = drop_leaf_ref(trans, root, cur);
			BUG_ON(ret);
			break;
		}
C
Chris Mason 已提交
1364 1365
		blocknr = btrfs_node_blockptr(btrfs_buffer_node(cur),
					      path->slots[*level]);
C
Chris Mason 已提交
1366
		ret = lookup_extent_ref(trans, root, blocknr, 1, &refs);
1367 1368
		BUG_ON(ret);
		if (refs != 1) {
C
Chris Mason 已提交
1369
			path->slots[*level]++;
1370
			ret = btrfs_free_extent(trans, root, blocknr, 1, 1);
C
Chris Mason 已提交
1371 1372 1373 1374
			BUG_ON(ret);
			continue;
		}
		next = read_tree_block(root, blocknr);
1375
		WARN_ON(*level <= 0);
C
Chris Mason 已提交
1376
		if (path->nodes[*level-1])
C
Chris Mason 已提交
1377
			btrfs_block_release(root, path->nodes[*level-1]);
C
Chris Mason 已提交
1378
		path->nodes[*level-1] = next;
C
Chris Mason 已提交
1379
		*level = btrfs_header_level(btrfs_buffer_header(next));
C
Chris Mason 已提交
1380 1381 1382
		path->slots[*level] = 0;
	}
out:
1383 1384
	WARN_ON(*level < 0);
	WARN_ON(*level >= BTRFS_MAX_LEVEL);
1385
	ret = btrfs_free_extent(trans, root,
1386
				bh_blocknr(path->nodes[*level]), 1, 1);
C
Chris Mason 已提交
1387
	btrfs_block_release(root, path->nodes[*level]);
C
Chris Mason 已提交
1388 1389 1390 1391 1392 1393
	path->nodes[*level] = NULL;
	*level += 1;
	BUG_ON(ret);
	return 0;
}

C
Chris Mason 已提交
1394 1395 1396 1397 1398
/*
 * helper for dropping snapshots.  This walks back up the tree in the path
 * to find the first node higher up where we haven't yet gone through
 * all the slots
 */
1399 1400
static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
			*root, struct btrfs_path *path, int *level)
C
Chris Mason 已提交
1401 1402 1403 1404
{
	int i;
	int slot;
	int ret;
1405 1406
	struct btrfs_root_item *root_item = &root->root_item;

C
Chris Mason 已提交
1407
	for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
C
Chris Mason 已提交
1408
		slot = path->slots[i];
C
Chris Mason 已提交
1409 1410
		if (slot < btrfs_header_nritems(
		    btrfs_buffer_header(path->nodes[i])) - 1) {
1411 1412
			struct btrfs_node *node;
			node = btrfs_buffer_node(path->nodes[i]);
C
Chris Mason 已提交
1413 1414
			path->slots[i]++;
			*level = i;
1415 1416 1417 1418 1419
			WARN_ON(*level == 0);
			memcpy(&root_item->drop_progress,
			       &node->ptrs[path->slots[i]].key,
			       sizeof(root_item->drop_progress));
			root_item->drop_level = i;
C
Chris Mason 已提交
1420 1421
			return 0;
		} else {
1422
			ret = btrfs_free_extent(trans, root,
1423
						bh_blocknr(path->nodes[*level]),
1424
						1, 1);
1425
			BUG_ON(ret);
C
Chris Mason 已提交
1426
			btrfs_block_release(root, path->nodes[*level]);
C
Chris Mason 已提交
1427
			path->nodes[*level] = NULL;
C
Chris Mason 已提交
1428 1429 1430 1431 1432 1433
			*level = i + 1;
		}
	}
	return 1;
}

C
Chris Mason 已提交
1434 1435 1436 1437 1438
/*
 * drop the reference count on the tree rooted at 'snap'.  This traverses
 * the tree freeing any blocks that have a ref count of zero after being
 * decremented.
 */
1439
int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
1440
			*root)
C
Chris Mason 已提交
1441
{
1442
	int ret = 0;
C
Chris Mason 已提交
1443
	int wret;
C
Chris Mason 已提交
1444
	int level;
1445
	struct btrfs_path *path;
C
Chris Mason 已提交
1446 1447
	int i;
	int orig_level;
1448 1449
	int num_walks = 0;
	struct btrfs_root_item *root_item = &root->root_item;
C
Chris Mason 已提交
1450

1451 1452
	path = btrfs_alloc_path();
	BUG_ON(!path);
C
Chris Mason 已提交
1453

1454
	level = btrfs_header_level(btrfs_buffer_header(root->node));
C
Chris Mason 已提交
1455
	orig_level = level;
1456 1457 1458 1459 1460 1461 1462
	if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
		path->nodes[level] = root->node;
		path->slots[level] = 0;
	} else {
		struct btrfs_key key;
		struct btrfs_disk_key *found_key;
		struct btrfs_node *node;
1463

1464
		btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
1465 1466
		level = root_item->drop_level;
		path->lowest_level = level;
1467
		wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1468
		if (wret < 0) {
1469 1470 1471 1472 1473 1474 1475 1476
			ret = wret;
			goto out;
		}
		node = btrfs_buffer_node(path->nodes[level]);
		found_key = &node->ptrs[path->slots[level]].key;
		WARN_ON(memcmp(found_key, &root_item->drop_progress,
			       sizeof(*found_key)));
	}
C
Chris Mason 已提交
1477
	while(1) {
1478
		wret = walk_down_tree(trans, root, path, &level);
C
Chris Mason 已提交
1479
		if (wret > 0)
C
Chris Mason 已提交
1480
			break;
C
Chris Mason 已提交
1481 1482 1483
		if (wret < 0)
			ret = wret;

1484
		wret = walk_up_tree(trans, root, path, &level);
C
Chris Mason 已提交
1485
		if (wret > 0)
C
Chris Mason 已提交
1486
			break;
C
Chris Mason 已提交
1487 1488
		if (wret < 0)
			ret = wret;
1489
		num_walks++;
1490
		if (num_walks > 2) {
1491 1492 1493 1494
			ret = -EAGAIN;
			get_bh(root->node);
			break;
		}
C
Chris Mason 已提交
1495
	}
C
Chris Mason 已提交
1496
	for (i = 0; i <= orig_level; i++) {
1497 1498
		if (path->nodes[i]) {
			btrfs_block_release(root, path->nodes[i]);
1499
			path->nodes[i] = 0;
C
Chris Mason 已提交
1500
		}
C
Chris Mason 已提交
1501
	}
1502
out:
1503
	btrfs_free_path(path);
C
Chris Mason 已提交
1504
	return ret;
C
Chris Mason 已提交
1505
}
C
Chris Mason 已提交
1506

C
Chris Mason 已提交
1507
static int free_block_group_radix(struct radix_tree_root *radix)
C
Chris Mason 已提交
1508 1509 1510 1511 1512 1513
{
	int ret;
	struct btrfs_block_group_cache *cache[8];
	int i;

	while(1) {
C
Chris Mason 已提交
1514
		ret = radix_tree_gang_lookup(radix, (void **)cache, 0,
C
Chris Mason 已提交
1515 1516 1517 1518
					     ARRAY_SIZE(cache));
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
C
Chris Mason 已提交
1519
			radix_tree_delete(radix, cache[i]->key.objectid +
C
Chris Mason 已提交
1520 1521 1522 1523 1524 1525 1526
					  cache[i]->key.offset - 1);
			kfree(cache[i]);
		}
	}
	return 0;
}

C
Chris Mason 已提交
1527 1528 1529 1530
int btrfs_free_block_groups(struct btrfs_fs_info *info)
{
	int ret;
	int ret2;
1531 1532
	unsigned long gang[16];
	int i;
C
Chris Mason 已提交
1533 1534 1535 1536 1537 1538 1539

	ret = free_block_group_radix(&info->block_group_radix);
	ret2 = free_block_group_radix(&info->block_group_data_radix);
	if (ret)
		return ret;
	if (ret2)
		return ret2;
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549

	while(1) {
		ret = find_first_radix_bit(&info->extent_map_radix,
					   gang, 0, ARRAY_SIZE(gang));
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
			clear_radix_bit(&info->extent_map_radix, gang[i]);
		}
	}
C
Chris Mason 已提交
1550 1551 1552
	return 0;
}

C
Chris Mason 已提交
1553 1554 1555 1556 1557 1558 1559
int btrfs_read_block_groups(struct btrfs_root *root)
{
	struct btrfs_path *path;
	int ret;
	int err = 0;
	struct btrfs_block_group_item *bi;
	struct btrfs_block_group_cache *cache;
C
Chris Mason 已提交
1560 1561
	struct btrfs_fs_info *info = root->fs_info;
	struct radix_tree_root *radix;
C
Chris Mason 已提交
1562 1563 1564
	struct btrfs_key key;
	struct btrfs_key found_key;
	struct btrfs_leaf *leaf;
C
Chris Mason 已提交
1565
	u64 group_size_blocks;
1566
	u64 used;
C
Chris Mason 已提交
1567

C
Chris Mason 已提交
1568 1569
	group_size_blocks = BTRFS_BLOCK_GROUP_SIZE >>
		root->fs_info->sb->s_blocksize_bits;
C
Chris Mason 已提交
1570
	root = info->extent_root;
C
Chris Mason 已提交
1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
	key.objectid = 0;
	key.offset = group_size_blocks;
	key.flags = 0;
	btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);

	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

	while(1) {
C
Chris Mason 已提交
1581
		ret = btrfs_search_slot(NULL, info->extent_root,
C
Chris Mason 已提交
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
					&key, path, 0, 0);
		if (ret != 0) {
			err = ret;
			break;
		}
		leaf = btrfs_buffer_leaf(path->nodes[0]);
		btrfs_disk_key_to_cpu(&found_key,
				      &leaf->items[path->slots[0]].key);
		cache = kmalloc(sizeof(*cache), GFP_NOFS);
		if (!cache) {
			err = -1;
			break;
		}
C
Chris Mason 已提交
1595

C
Chris Mason 已提交
1596 1597 1598
		bi = btrfs_item_ptr(leaf, path->slots[0],
				    struct btrfs_block_group_item);
		if (bi->flags & BTRFS_BLOCK_GROUP_DATA) {
C
Chris Mason 已提交
1599
			radix = &info->block_group_data_radix;
C
Chris Mason 已提交
1600 1601
			cache->data = 1;
		} else {
C
Chris Mason 已提交
1602
			radix = &info->block_group_radix;
C
Chris Mason 已提交
1603 1604
			cache->data = 0;
		}
C
Chris Mason 已提交
1605

C
Chris Mason 已提交
1606 1607
		memcpy(&cache->item, bi, sizeof(*bi));
		memcpy(&cache->key, &found_key, sizeof(found_key));
1608 1609
		cache->last_alloc = cache->key.objectid;
		cache->first_free = cache->key.objectid;
C
Chris Mason 已提交
1610
		cache->pinned = 0;
1611 1612
		cache->cached = 0;

C
Chris Mason 已提交
1613 1614
		cache->radix = radix;

C
Chris Mason 已提交
1615 1616
		key.objectid = found_key.objectid + found_key.offset;
		btrfs_release_path(root, path);
C
Chris Mason 已提交
1617
		ret = radix_tree_insert(radix, found_key.objectid +
C
Chris Mason 已提交
1618 1619 1620
					found_key.offset - 1,
					(void *)cache);
		BUG_ON(ret);
1621
		used = btrfs_block_group_used(bi);
C
Chris Mason 已提交
1622
		if (used < div_factor(key.offset, 8)) {
C
Chris Mason 已提交
1623
			radix_tree_tag_set(radix, found_key.objectid +
1624 1625 1626
					   found_key.offset - 1,
					   BTRFS_BLOCK_GROUP_AVAIL);
		}
C
Chris Mason 已提交
1627
		if (key.objectid >=
1628
		    btrfs_super_total_blocks(&info->super_copy))
C
Chris Mason 已提交
1629 1630 1631 1632 1633 1634
			break;
	}

	btrfs_free_path(path);
	return 0;
}