extent-tree.c 18.8 KB
Newer Older
1
#include <linux/module.h>
2 3 4
#include "ctree.h"
#include "disk-io.h"
#include "print-tree.h"
5
#include "transaction.h"
6

7 8 9 10 11
static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
			    *orig_root, u64 num_blocks, u64 search_start, u64
			    search_end, struct btrfs_key *ins);
static int finish_current_insert(struct btrfs_trans_handle *trans, struct
				 btrfs_root *extent_root);
C
Chris Mason 已提交
12 13
static int del_pending_extents(struct btrfs_trans_handle *trans, struct
			       btrfs_root *extent_root);
14

C
Chris Mason 已提交
15 16 17
int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
				struct btrfs_root *root,
				u64 blocknr, u64 num_blocks)
C
Chris Mason 已提交
18
{
19
	struct btrfs_path *path;
C
Chris Mason 已提交
20
	int ret;
C
Chris Mason 已提交
21
	struct btrfs_key key;
C
Chris Mason 已提交
22 23
	struct btrfs_leaf *l;
	struct btrfs_extent_item *item;
C
Chris Mason 已提交
24
	struct btrfs_key ins;
C
Chris Mason 已提交
25
	u32 refs;
C
Chris Mason 已提交
26

27 28
	find_free_extent(trans, root->fs_info->extent_root, 0, 0, (u64)-1,
			 &ins);
29 30 31
	path = btrfs_alloc_path();
	BUG_ON(!path);
	btrfs_init_path(path);
C
Chris Mason 已提交
32 33
	key.objectid = blocknr;
	key.flags = 0;
34
	btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
35
	key.offset = num_blocks;
36
	ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
37
				0, 1);
38 39
	if (ret != 0) {
printk("can't find block %Lu %Lu\n", blocknr, num_blocks);
40
		BUG();
41
	}
C
Chris Mason 已提交
42
	BUG_ON(ret != 0);
43 44
	l = btrfs_buffer_leaf(path->nodes[0]);
	item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
C
Chris Mason 已提交
45 46
	refs = btrfs_extent_refs(item);
	btrfs_set_extent_refs(item, refs + 1);
47
	btrfs_mark_buffer_dirty(path->nodes[0]);
48

49 50
	btrfs_release_path(root->fs_info->extent_root, path);
	btrfs_free_path(path);
51
	finish_current_insert(trans, root->fs_info->extent_root);
C
Chris Mason 已提交
52
	del_pending_extents(trans, root->fs_info->extent_root);
C
Chris Mason 已提交
53 54 55
	return 0;
}

C
Chris Mason 已提交
56 57 58
static int lookup_extent_ref(struct btrfs_trans_handle *trans,
			     struct btrfs_root *root, u64 blocknr,
			     u64 num_blocks, u32 *refs)
59
{
60
	struct btrfs_path *path;
61
	int ret;
C
Chris Mason 已提交
62
	struct btrfs_key key;
C
Chris Mason 已提交
63 64
	struct btrfs_leaf *l;
	struct btrfs_extent_item *item;
65 66 67

	path = btrfs_alloc_path();
	btrfs_init_path(path);
68
	key.objectid = blocknr;
69
	key.offset = num_blocks;
70 71
	key.flags = 0;
	btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
72
	ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
73
				0, 0);
74 75
	if (ret != 0)
		BUG();
76 77
	l = btrfs_buffer_leaf(path->nodes[0]);
	item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
C
Chris Mason 已提交
78
	*refs = btrfs_extent_refs(item);
79 80
	btrfs_release_path(root->fs_info->extent_root, path);
	btrfs_free_path(path);
81 82 83
	return 0;
}

C
Chris Mason 已提交
84 85 86
int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
		       struct btrfs_root *root)
{
C
Chris Mason 已提交
87
	return btrfs_inc_extent_ref(trans, root, bh_blocknr(root->node), 1);
C
Chris Mason 已提交
88 89
}

90
int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
C
Chris Mason 已提交
91
		  struct buffer_head *buf)
C
Chris Mason 已提交
92 93
{
	u64 blocknr;
C
Chris Mason 已提交
94
	struct btrfs_node *buf_node;
95 96 97
	struct btrfs_leaf *buf_leaf;
	struct btrfs_disk_key *key;
	struct btrfs_file_extent_item *fi;
C
Chris Mason 已提交
98
	int i;
99 100
	int leaf;
	int ret;
101

102
	if (!root->ref_cows)
103
		return 0;
C
Chris Mason 已提交
104
	buf_node = btrfs_buffer_node(buf);
105 106
	leaf = btrfs_is_leaf(buf_node);
	buf_leaf = btrfs_buffer_leaf(buf);
C
Chris Mason 已提交
107
	for (i = 0; i < btrfs_header_nritems(&buf_node->header); i++) {
108 109 110 111 112 113
		if (leaf) {
			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);
114 115 116
			if (btrfs_file_extent_type(fi) ==
			    BTRFS_FILE_EXTENT_INLINE)
				continue;
C
Chris Mason 已提交
117
			ret = btrfs_inc_extent_ref(trans, root,
118 119 120 121 122
				    btrfs_file_extent_disk_blocknr(fi),
				    btrfs_file_extent_disk_num_blocks(fi));
			BUG_ON(ret);
		} else {
			blocknr = btrfs_node_blockptr(buf_node, i);
C
Chris Mason 已提交
123
			ret = btrfs_inc_extent_ref(trans, root, blocknr, 1);
124 125
			BUG_ON(ret);
		}
C
Chris Mason 已提交
126 127 128 129
	}
	return 0;
}

130 131
int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
			       btrfs_root *root)
132
{
C
Chris Mason 已提交
133
	unsigned long gang[8];
134
	u64 first = 0;
135 136
	int ret;
	int i;
C
Chris Mason 已提交
137
	struct radix_tree_root *pinned_radix = &root->fs_info->pinned_radix;
138 139

	while(1) {
C
Chris Mason 已提交
140 141
		ret = find_first_radix_bit(pinned_radix, gang,
					   ARRAY_SIZE(gang));
142 143
		if (!ret)
			break;
144
		if (!first)
C
Chris Mason 已提交
145
			first = gang[0];
146
		for (i = 0; i < ret; i++) {
C
Chris Mason 已提交
147
			clear_radix_bit(pinned_radix, gang[i]);
148
		}
149
	}
150 151
	if (root->fs_info->last_insert.objectid > first)
		root->fs_info->last_insert.objectid = first;
152
	root->fs_info->last_insert.offset = 0;
153 154 155
	return 0;
}

156 157
static int finish_current_insert(struct btrfs_trans_handle *trans, struct
				 btrfs_root *extent_root)
C
Chris Mason 已提交
158
{
C
Chris Mason 已提交
159
	struct btrfs_key ins;
C
Chris Mason 已提交
160
	struct btrfs_extent_item extent_item;
C
Chris Mason 已提交
161 162
	int i;
	int ret;
163 164
	u64 super_blocks_used;
	struct btrfs_fs_info *info = extent_root->fs_info;
C
Chris Mason 已提交
165

C
Chris Mason 已提交
166
	btrfs_set_extent_refs(&extent_item, 1);
C
Chris Mason 已提交
167 168
	ins.offset = 1;
	ins.flags = 0;
169
	btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
170 171
	btrfs_set_extent_type(&extent_item, BTRFS_EXTENT_TREE);
	btrfs_set_extent_owner(&extent_item, extent_root->root_key.objectid);
C
Chris Mason 已提交
172

173 174 175
	for (i = 0; i < extent_root->fs_info->current_insert.flags; i++) {
		ins.objectid = extent_root->fs_info->current_insert.objectid +
				i;
176 177 178
		super_blocks_used = btrfs_super_blocks_used(info->disk_super);
		btrfs_set_super_blocks_used(info->disk_super,
					    super_blocks_used + 1);
179 180
		ret = btrfs_insert_item(trans, extent_root, &ins, &extent_item,
					sizeof(extent_item));
C
Chris Mason 已提交
181 182
		BUG_ON(ret);
	}
183
	extent_root->fs_info->current_insert.offset = 0;
C
Chris Mason 已提交
184 185 186
	return 0;
}

C
Chris Mason 已提交
187
static int pin_down_block(struct btrfs_root *root, u64 blocknr, int pending)
C
Chris Mason 已提交
188 189
{
	int err;
C
Chris Mason 已提交
190
	struct btrfs_header *header;
C
Chris Mason 已提交
191 192
	struct buffer_head *bh;

C
Chris Mason 已提交
193
	if (!pending) {
194
		bh = btrfs_find_tree_block(root, blocknr);
C
Chris Mason 已提交
195 196 197 198 199 200 201 202 203 204
		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 已提交
205
			}
C
Chris Mason 已提交
206
			btrfs_block_release(root, bh);
C
Chris Mason 已提交
207 208
		}
		err = set_radix_bit(&root->fs_info->pinned_radix, blocknr);
C
Chris Mason 已提交
209 210 211
	} else {
		err = set_radix_bit(&root->fs_info->pending_del_radix, blocknr);
	}
C
Chris Mason 已提交
212
	BUG_ON(err);
C
Chris Mason 已提交
213 214 215
	return 0;
}

216
/*
217
 * remove an extent from the root, returns 0 on success
218
 */
219
static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
220
			 *root, u64 blocknr, u64 num_blocks, int pin)
221
{
222
	struct btrfs_path *path;
C
Chris Mason 已提交
223
	struct btrfs_key key;
224 225
	struct btrfs_fs_info *info = root->fs_info;
	struct btrfs_root *extent_root = info->extent_root;
226
	int ret;
C
Chris Mason 已提交
227
	struct btrfs_extent_item *ei;
C
Chris Mason 已提交
228
	struct btrfs_key ins;
C
Chris Mason 已提交
229
	u32 refs;
C
Chris Mason 已提交
230

231 232
	key.objectid = blocknr;
	key.flags = 0;
233
	btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
234 235
	key.offset = num_blocks;

236
	find_free_extent(trans, root, 0, 0, (u64)-1, &ins);
237 238 239
	path = btrfs_alloc_path();
	BUG_ON(!path);
	btrfs_init_path(path);
240

241
	ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
242
	if (ret) {
243
		printk("failed to find %Lu\n", key.objectid);
C
Chris Mason 已提交
244
		btrfs_print_tree(extent_root, extent_root->node);
245
		printk("failed to find %Lu\n", key.objectid);
246 247
		BUG();
	}
248
	ei = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
C
Chris Mason 已提交
249
			    struct btrfs_extent_item);
250
	BUG_ON(ei->refs == 0);
C
Chris Mason 已提交
251 252
	refs = btrfs_extent_refs(ei) - 1;
	btrfs_set_extent_refs(ei, refs);
253
	btrfs_mark_buffer_dirty(path->nodes[0]);
C
Chris Mason 已提交
254
	if (refs == 0) {
255
		u64 super_blocks_used;
C
Chris Mason 已提交
256 257

		if (pin) {
C
Chris Mason 已提交
258
			ret = pin_down_block(root, blocknr, 0);
C
Chris Mason 已提交
259 260 261
			BUG_ON(ret);
		}

262 263 264
		super_blocks_used = btrfs_super_blocks_used(info->disk_super);
		btrfs_set_super_blocks_used(info->disk_super,
					    super_blocks_used - num_blocks);
265
		ret = btrfs_del_item(trans, extent_root, path);
266 267 268
		if (ret)
			BUG();
	}
269 270
	btrfs_release_path(extent_root, path);
	btrfs_free_path(path);
271
	finish_current_insert(trans, extent_root);
272 273 274 275 276 277 278
	return ret;
}

/*
 * find all the blocks marked as pending in the radix tree and remove
 * them from the extent map
 */
279 280
static int del_pending_extents(struct btrfs_trans_handle *trans, struct
			       btrfs_root *extent_root)
281 282
{
	int ret;
C
Chris Mason 已提交
283 284
	int wret;
	int err = 0;
C
Chris Mason 已提交
285
	unsigned long gang[4];
286
	int i;
C
Chris Mason 已提交
287 288 289 290 291
	struct radix_tree_root *pending_radix;
	struct radix_tree_root *pinned_radix;

	pending_radix = &extent_root->fs_info->pending_del_radix;
	pinned_radix = &extent_root->fs_info->pinned_radix;
292 293

	while(1) {
C
Chris Mason 已提交
294 295
		ret = find_first_radix_bit(pending_radix, gang,
					   ARRAY_SIZE(gang));
296 297 298
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
C
Chris Mason 已提交
299 300 301 302
			wret = set_radix_bit(pinned_radix, gang[i]);
			BUG_ON(wret);
			wret = clear_radix_bit(pending_radix, gang[i]);
			BUG_ON(wret);
303
			wret = __free_extent(trans, extent_root,
C
Chris Mason 已提交
304
					     gang[i], 1, 0);
C
Chris Mason 已提交
305 306
			if (wret)
				err = wret;
307 308
		}
	}
C
Chris Mason 已提交
309
	return err;
310 311 312 313 314
}

/*
 * remove an extent from the root, returns 0 on success
 */
315 316
int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, u64 blocknr, u64 num_blocks, int pin)
317
{
318
	struct btrfs_root *extent_root = root->fs_info->extent_root;
319 320
	int pending_ret;
	int ret;
321

322
	if (root == extent_root) {
C
Chris Mason 已提交
323
		pin_down_block(root, blocknr, 1);
324 325
		return 0;
	}
C
Chris Mason 已提交
326
	ret = __free_extent(trans, root, blocknr, num_blocks, pin);
C
Chris Mason 已提交
327
	pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
328 329 330 331 332 333 334
	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
335
 * ins->flags = BTRFS_EXTENT_ITEM_KEY
336 337 338
 * ins->offset == number of blocks
 * Any available blocks before search_start are skipped.
 */
339 340 341
static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
			    *orig_root, u64 num_blocks, u64 search_start, u64
			    search_end, struct btrfs_key *ins)
342
{
343
	struct btrfs_path *path;
C
Chris Mason 已提交
344
	struct btrfs_key key;
345 346 347
	int ret;
	u64 hole_size = 0;
	int slot = 0;
C
Chris Mason 已提交
348
	u64 last_block = 0;
C
Chris Mason 已提交
349
	u64 test_block;
350
	int start_found;
C
Chris Mason 已提交
351
	struct btrfs_leaf *l;
352
	struct btrfs_root * root = orig_root->fs_info->extent_root;
353
	int total_needed = num_blocks;
C
Chris Mason 已提交
354
	int level;
355

356 357 358 359
	path = btrfs_alloc_path();
	ins->flags = 0;
	btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);

C
Chris Mason 已提交
360
	level = btrfs_header_level(btrfs_buffer_header(root->node));
361
	total_needed += (level + 2) * 3;
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
	if (root->fs_info->last_insert.objectid == 0 && search_end == (u64)-1) {
		struct btrfs_disk_key *last_key;
		btrfs_init_path(path);
		ins->objectid = (u64)-1;
		ins->offset = (u64)-1;
		ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
		if (ret < 0)
			goto error;
		BUG_ON(ret == 0);
		if (path->slots[0] > 0)
			path->slots[0]--;
		l = btrfs_buffer_leaf(path->nodes[0]);
		last_key = &l->items[path->slots[0]].key;
		search_start = btrfs_disk_key_objectid(last_key);
	}
377 378
	if (root->fs_info->last_insert.objectid > search_start)
		search_start = root->fs_info->last_insert.objectid;
379

380
check_failed:
381
	btrfs_init_path(path);
382 383 384
	ins->objectid = search_start;
	ins->offset = 0;
	start_found = 0;
385
	ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
C
Chris Mason 已提交
386 387
	if (ret < 0)
		goto error;
C
Chris Mason 已提交
388

389 390
	if (path->slots[0] > 0)
		path->slots[0]--;
391

392
	while (1) {
393 394
		l = btrfs_buffer_leaf(path->nodes[0]);
		slot = path->slots[0];
395
		if (slot >= btrfs_header_nritems(&l->header)) {
396
			ret = btrfs_next_leaf(root, path);
397 398
			if (ret == 0)
				continue;
C
Chris Mason 已提交
399 400
			if (ret < 0)
				goto error;
401 402
			if (!start_found) {
				ins->objectid = search_start;
C
Chris Mason 已提交
403
				ins->offset = (u64)-1;
404 405 406 407 408
				start_found = 1;
				goto check_pending;
			}
			ins->objectid = last_block > search_start ?
					last_block : search_start;
C
Chris Mason 已提交
409
			ins->offset = (u64)-1;
410 411
			goto check_pending;
		}
C
Chris Mason 已提交
412 413
		btrfs_disk_key_to_cpu(&key, &l->items[slot].key);
		if (key.objectid >= search_start) {
414
			if (start_found) {
415 416
				if (last_block < search_start)
					last_block = search_start;
C
Chris Mason 已提交
417
				hole_size = key.objectid - last_block;
C
Chris Mason 已提交
418
				if (hole_size > total_needed) {
419
					ins->objectid = last_block;
C
Chris Mason 已提交
420
					ins->offset = hole_size;
421 422
					goto check_pending;
				}
423
			}
424
		}
425
		start_found = 1;
C
Chris Mason 已提交
426
		last_block = key.objectid + key.offset;
427
		path->slots[0]++;
428 429 430 431 432 433
	}
	// FIXME -ENOSPC
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
	 */
434
	btrfs_release_path(root, path);
435
	BUG_ON(ins->objectid < search_start);
C
Chris Mason 已提交
436 437
	for (test_block = ins->objectid;
	     test_block < ins->objectid + total_needed; test_block++) {
C
Chris Mason 已提交
438
		if (test_radix_bit(&root->fs_info->pinned_radix,
439
				      test_block)) {
C
Chris Mason 已提交
440
			search_start = test_block + 1;
441 442 443
			goto check_failed;
		}
	}
444 445 446 447 448
	BUG_ON(root->fs_info->current_insert.offset);
	root->fs_info->current_insert.offset = total_needed - num_blocks;
	root->fs_info->current_insert.objectid = ins->objectid + num_blocks;
	root->fs_info->current_insert.flags = 0;
	root->fs_info->last_insert.objectid = ins->objectid;
C
Chris Mason 已提交
449
	ins->offset = num_blocks;
450
	btrfs_free_path(path);
451
	return 0;
C
Chris Mason 已提交
452
error:
453 454
	btrfs_release_path(root, path);
	btrfs_free_path(path);
C
Chris Mason 已提交
455
	return ret;
456 457 458 459 460 461 462 463 464
}

/*
 * 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.
 */
465 466 467 468
int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
		       struct btrfs_root *root, u64 owner,
		       u8 type, u64 num_blocks, u64 search_start,
		       u64 search_end, struct btrfs_key *ins)
469 470 471
{
	int ret;
	int pending_ret;
472 473 474
	u64 super_blocks_used;
	struct btrfs_fs_info *info = root->fs_info;
	struct btrfs_root *extent_root = info->extent_root;
C
Chris Mason 已提交
475
	struct btrfs_extent_item extent_item;
C
Chris Mason 已提交
476

C
Chris Mason 已提交
477
	btrfs_set_extent_refs(&extent_item, 1);
478 479
	btrfs_set_extent_owner(&extent_item, owner);
	btrfs_set_extent_type(&extent_item, type);
480

C
Chris Mason 已提交
481
	if (root == extent_root) {
482
		BUG_ON(extent_root->fs_info->current_insert.offset == 0);
C
Chris Mason 已提交
483
		BUG_ON(num_blocks != 1);
484 485
		BUG_ON(extent_root->fs_info->current_insert.flags ==
		       extent_root->fs_info->current_insert.offset);
C
Chris Mason 已提交
486
		ins->offset = 1;
487 488
		ins->objectid = extent_root->fs_info->current_insert.objectid +
				extent_root->fs_info->current_insert.flags++;
489 490
		return 0;
	}
491
	ret = find_free_extent(trans, root, num_blocks, search_start,
C
Chris Mason 已提交
492 493 494
			       search_end, ins);
	if (ret)
		return ret;
495

496 497 498
	super_blocks_used = btrfs_super_blocks_used(info->disk_super);
	btrfs_set_super_blocks_used(info->disk_super, super_blocks_used +
				    num_blocks);
499 500
	ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
				sizeof(extent_item));
C
Chris Mason 已提交
501

502
	finish_current_insert(trans, extent_root);
C
Chris Mason 已提交
503
	pending_ret = del_pending_extents(trans, extent_root);
C
Chris Mason 已提交
504 505 506 507 508
	if (ret)
		return ret;
	if (pending_ret)
		return pending_ret;
	return 0;
509 510 511 512 513 514
}

/*
 * helper function to allocate a block for a given tree
 * returns the tree buffer or NULL.
 */
C
Chris Mason 已提交
515
struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
516
					   struct btrfs_root *root)
517
{
C
Chris Mason 已提交
518
	struct btrfs_key ins;
519
	int ret;
C
Chris Mason 已提交
520
	struct buffer_head *buf;
521

522 523 524
	ret = btrfs_alloc_extent(trans, root, root->root_key.objectid,
				 BTRFS_EXTENT_TREE,
				 1, 0, (unsigned long)-1, &ins);
525 526 527 528
	if (ret) {
		BUG();
		return NULL;
	}
529
	buf = btrfs_find_create_tree_block(root, ins.objectid);
530
	set_buffer_uptodate(buf);
531 532
	return buf;
}
533

534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
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++) {
		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);
552 553
		if (btrfs_file_extent_type(fi) == BTRFS_FILE_EXTENT_INLINE)
			continue;
554 555 556 557 558 559 560 561 562 563 564 565 566
		/*
		 * FIXME make sure to insert a trans record that
		 * repeats the snapshot del on crash
		 */
		ret = btrfs_free_extent(trans, root,
					btrfs_file_extent_disk_blocknr(fi),
					btrfs_file_extent_disk_num_blocks(fi),
					0);
		BUG_ON(ret);
	}
	return 0;
}

C
Chris Mason 已提交
567 568 569 570
/*
 * helper function for drop_snapshot, this walks down the tree dropping ref
 * counts as it goes.
 */
571 572
static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
			  *root, struct btrfs_path *path, int *level)
C
Chris Mason 已提交
573
{
C
Chris Mason 已提交
574 575
	struct buffer_head *next;
	struct buffer_head *cur;
C
Chris Mason 已提交
576 577 578 579
	u64 blocknr;
	int ret;
	u32 refs;

580 581
	WARN_ON(*level < 0);
	WARN_ON(*level >= BTRFS_MAX_LEVEL);
C
Chris Mason 已提交
582
	ret = lookup_extent_ref(trans, root, bh_blocknr(path->nodes[*level]),
583
			       1, &refs);
C
Chris Mason 已提交
584 585 586
	BUG_ON(ret);
	if (refs > 1)
		goto out;
C
Chris Mason 已提交
587 588 589
	/*
	 * walk down to the last node level and free all the leaves
	 */
590
	while(*level >= 0) {
591 592
		WARN_ON(*level < 0);
		WARN_ON(*level >= BTRFS_MAX_LEVEL);
C
Chris Mason 已提交
593
		cur = path->nodes[*level];
C
Chris Mason 已提交
594 595
		if (btrfs_header_level(btrfs_buffer_header(cur)) != *level)
			WARN_ON(1);
596
		if (path->slots[*level] >=
C
Chris Mason 已提交
597
		    btrfs_header_nritems(btrfs_buffer_header(cur)))
C
Chris Mason 已提交
598
			break;
599 600 601 602 603
		if (*level == 0) {
			ret = drop_leaf_ref(trans, root, cur);
			BUG_ON(ret);
			break;
		}
C
Chris Mason 已提交
604 605
		blocknr = btrfs_node_blockptr(btrfs_buffer_node(cur),
					      path->slots[*level]);
C
Chris Mason 已提交
606
		ret = lookup_extent_ref(trans, root, blocknr, 1, &refs);
607 608
		BUG_ON(ret);
		if (refs != 1) {
C
Chris Mason 已提交
609
			path->slots[*level]++;
610
			ret = btrfs_free_extent(trans, root, blocknr, 1, 1);
C
Chris Mason 已提交
611 612 613 614
			BUG_ON(ret);
			continue;
		}
		next = read_tree_block(root, blocknr);
615
		WARN_ON(*level <= 0);
C
Chris Mason 已提交
616
		if (path->nodes[*level-1])
C
Chris Mason 已提交
617
			btrfs_block_release(root, path->nodes[*level-1]);
C
Chris Mason 已提交
618
		path->nodes[*level-1] = next;
C
Chris Mason 已提交
619
		*level = btrfs_header_level(btrfs_buffer_header(next));
C
Chris Mason 已提交
620 621 622
		path->slots[*level] = 0;
	}
out:
623 624
	WARN_ON(*level < 0);
	WARN_ON(*level >= BTRFS_MAX_LEVEL);
625
	ret = btrfs_free_extent(trans, root,
626
				bh_blocknr(path->nodes[*level]), 1, 1);
C
Chris Mason 已提交
627
	btrfs_block_release(root, path->nodes[*level]);
C
Chris Mason 已提交
628 629 630 631 632 633
	path->nodes[*level] = NULL;
	*level += 1;
	BUG_ON(ret);
	return 0;
}

C
Chris Mason 已提交
634 635 636 637 638
/*
 * 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
 */
639 640
static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
			*root, struct btrfs_path *path, int *level)
C
Chris Mason 已提交
641 642 643 644
{
	int i;
	int slot;
	int ret;
C
Chris Mason 已提交
645
	for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
C
Chris Mason 已提交
646
		slot = path->slots[i];
C
Chris Mason 已提交
647 648
		if (slot < btrfs_header_nritems(
		    btrfs_buffer_header(path->nodes[i])) - 1) {
C
Chris Mason 已提交
649 650 651 652
			path->slots[i]++;
			*level = i;
			return 0;
		} else {
653
			ret = btrfs_free_extent(trans, root,
654
						bh_blocknr(path->nodes[*level]),
655
						1, 1);
656
			BUG_ON(ret);
C
Chris Mason 已提交
657
			btrfs_block_release(root, path->nodes[*level]);
C
Chris Mason 已提交
658
			path->nodes[*level] = NULL;
C
Chris Mason 已提交
659 660 661 662 663 664
			*level = i + 1;
		}
	}
	return 1;
}

C
Chris Mason 已提交
665 666 667 668 669
/*
 * 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.
 */
670
int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
671
			*root, struct buffer_head *snap)
C
Chris Mason 已提交
672
{
673
	int ret = 0;
C
Chris Mason 已提交
674
	int wret;
C
Chris Mason 已提交
675
	int level;
676
	struct btrfs_path *path;
C
Chris Mason 已提交
677 678 679
	int i;
	int orig_level;

680 681 682
	path = btrfs_alloc_path();
	BUG_ON(!path);
	btrfs_init_path(path);
C
Chris Mason 已提交
683

C
Chris Mason 已提交
684
	level = btrfs_header_level(btrfs_buffer_header(snap));
C
Chris Mason 已提交
685
	orig_level = level;
686 687
	path->nodes[level] = snap;
	path->slots[level] = 0;
C
Chris Mason 已提交
688
	while(1) {
689
		wret = walk_down_tree(trans, root, path, &level);
C
Chris Mason 已提交
690
		if (wret > 0)
C
Chris Mason 已提交
691
			break;
C
Chris Mason 已提交
692 693 694
		if (wret < 0)
			ret = wret;

695
		wret = walk_up_tree(trans, root, path, &level);
C
Chris Mason 已提交
696
		if (wret > 0)
C
Chris Mason 已提交
697
			break;
C
Chris Mason 已提交
698 699
		if (wret < 0)
			ret = wret;
C
Chris Mason 已提交
700
	}
C
Chris Mason 已提交
701
	for (i = 0; i <= orig_level; i++) {
702 703
		if (path->nodes[i]) {
			btrfs_block_release(root, path->nodes[i]);
C
Chris Mason 已提交
704
		}
C
Chris Mason 已提交
705
	}
706
	btrfs_free_path(path);
C
Chris Mason 已提交
707
	return ret;
C
Chris Mason 已提交
708
}