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

6 7 8 9 10
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int level);
static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int data_size);
static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
11
			  *root, struct buffer_head *dst, struct buffer_head
12 13
			  *src);
static int balance_node_right(struct btrfs_trans_handle *trans, struct
C
Chris Mason 已提交
14 15
			      btrfs_root *root, struct buffer_head *dst_buf,
			      struct buffer_head *src_buf);
16 17
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot);
18

C
Chris Mason 已提交
19 20 21 22 23 24 25 26 27 28
struct btrfs_path *btrfs_alloc_path(void)
{
	return kmem_cache_alloc(btrfs_path_cachep, GFP_NOFS);
}

void btrfs_free_path(struct btrfs_path *p)
{
	kmem_cache_free(btrfs_path_cachep, p);
}

C
Chris Mason 已提交
29
inline void btrfs_init_path(struct btrfs_path *p)
30 31 32 33
{
	memset(p, 0, sizeof(*p));
}

C
Chris Mason 已提交
34
void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
35 36
{
	int i;
C
Chris Mason 已提交
37
	for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
38 39
		if (!p->nodes[i])
			break;
C
Chris Mason 已提交
40
		btrfs_block_release(root, p->nodes[i]);
41
	}
C
Chris Mason 已提交
42
	memset(p, 0, sizeof(*p));
43 44
}

45
static int btrfs_cow_block(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
46 47
			   *root, struct buffer_head *buf, struct buffer_head
			   *parent, int parent_slot, struct buffer_head
48
			   **cow_ret)
C
Chris Mason 已提交
49
{
C
Chris Mason 已提交
50 51
	struct buffer_head *cow;
	struct btrfs_node *cow_node;
C
Chris Mason 已提交
52

53 54
	if (btrfs_header_generation(btrfs_buffer_header(buf)) ==
				    trans->transid) {
C
Chris Mason 已提交
55 56 57
		*cow_ret = buf;
		return 0;
	}
58
	cow = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
59
	cow_node = btrfs_buffer_node(cow);
C
Chris Mason 已提交
60 61
	if (buf->b_size != root->blocksize || cow->b_size != root->blocksize)
		WARN_ON(1);
C
Chris Mason 已提交
62 63
	memcpy(cow_node, btrfs_buffer_node(buf), root->blocksize);
	btrfs_set_header_blocknr(&cow_node->header, cow->b_blocknr);
64
	btrfs_set_header_generation(&cow_node->header, trans->transid);
65
	btrfs_inc_ref(trans, root, buf);
C
Chris Mason 已提交
66 67
	if (buf == root->node) {
		root->node = cow;
C
Chris Mason 已提交
68
		get_bh(cow);
C
Chris Mason 已提交
69
		if (buf != root->commit_root) {
C
Chris Mason 已提交
70
			btrfs_free_extent(trans, root, buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
71
		}
C
Chris Mason 已提交
72
		btrfs_block_release(root, buf);
C
Chris Mason 已提交
73
	} else {
C
Chris Mason 已提交
74 75
		btrfs_set_node_blockptr(btrfs_buffer_node(parent), parent_slot,
					cow->b_blocknr);
C
Chris Mason 已提交
76
		btrfs_mark_buffer_dirty(parent);
C
Chris Mason 已提交
77
		btrfs_free_extent(trans, root, buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
78
	}
C
Chris Mason 已提交
79
	btrfs_block_release(root, buf);
C
Chris Mason 已提交
80
	*cow_ret = cow;
C
Chris Mason 已提交
81 82 83
	return 0;
}

C
Chris Mason 已提交
84 85 86 87 88
/*
 * The leaf data grows from end-to-front in the node.
 * this returns the address of the start of the last item,
 * which is the stop of the leaf data stack
 */
C
Chris Mason 已提交
89 90
static inline unsigned int leaf_data_end(struct btrfs_root *root,
					 struct btrfs_leaf *leaf)
91
{
92
	u32 nr = btrfs_header_nritems(&leaf->header);
93
	if (nr == 0)
C
Chris Mason 已提交
94
		return BTRFS_LEAF_DATA_SIZE(root);
C
Chris Mason 已提交
95
	return btrfs_item_offset(leaf->items + nr - 1);
96 97
}

C
Chris Mason 已提交
98 99 100 101 102
/*
 * The space between the end of the leaf items and
 * the start of the leaf data.  IOW, how much room
 * the leaf has left for both items and data
 */
C
Chris Mason 已提交
103
int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf)
104
{
C
Chris Mason 已提交
105
	int data_end = leaf_data_end(root, leaf);
106
	int nritems = btrfs_header_nritems(&leaf->header);
107
	char *items_end = (char *)(leaf->items + nritems + 1);
C
Chris Mason 已提交
108
	return (char *)(btrfs_leaf_data(leaf) + data_end) - (char *)items_end;
109 110
}

C
Chris Mason 已提交
111 112 113
/*
 * compare two keys in a memcmp fashion
 */
C
Chris Mason 已提交
114
static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
115
{
C
Chris Mason 已提交
116 117 118 119 120
	struct btrfs_key k1;

	btrfs_disk_key_to_cpu(&k1, disk);

	if (k1.objectid > k2->objectid)
121
		return 1;
C
Chris Mason 已提交
122
	if (k1.objectid < k2->objectid)
123
		return -1;
124 125 126 127
	if (k1.offset > k2->offset)
		return 1;
	if (k1.offset < k2->offset)
		return -1;
C
Chris Mason 已提交
128 129 130 131
	if (k1.flags > k2->flags)
		return 1;
	if (k1.flags < k2->flags)
		return -1;
132 133
	return 0;
}
C
Chris Mason 已提交
134

C
Chris Mason 已提交
135 136
static int check_node(struct btrfs_root *root, struct btrfs_path *path,
		      int level)
C
Chris Mason 已提交
137 138
{
	int i;
C
Chris Mason 已提交
139
	struct btrfs_node *parent = NULL;
C
Chris Mason 已提交
140
	struct btrfs_node *node = btrfs_buffer_node(path->nodes[level]);
C
Chris Mason 已提交
141
	int parent_slot;
142
	u32 nritems = btrfs_header_nritems(&node->header);
C
Chris Mason 已提交
143 144

	if (path->nodes[level + 1])
C
Chris Mason 已提交
145
		parent = btrfs_buffer_node(path->nodes[level + 1]);
C
Chris Mason 已提交
146
	parent_slot = path->slots[level + 1];
147 148
	BUG_ON(nritems == 0);
	if (parent) {
C
Chris Mason 已提交
149
		struct btrfs_disk_key *parent_key;
C
Chris Mason 已提交
150 151
		parent_key = &parent->ptrs[parent_slot].key;
		BUG_ON(memcmp(parent_key, &node->ptrs[0].key,
C
Chris Mason 已提交
152
			      sizeof(struct btrfs_disk_key)));
153
		BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
154
		       btrfs_header_blocknr(&node->header));
C
Chris Mason 已提交
155
	}
C
Chris Mason 已提交
156
	BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
157
	for (i = 0; nritems > 1 && i < nritems - 2; i++) {
C
Chris Mason 已提交
158
		struct btrfs_key cpukey;
C
Chris Mason 已提交
159 160
		btrfs_disk_key_to_cpu(&cpukey, &node->ptrs[i + 1].key);
		BUG_ON(comp_keys(&node->ptrs[i].key, &cpukey) >= 0);
C
Chris Mason 已提交
161 162 163 164
	}
	return 0;
}

C
Chris Mason 已提交
165 166
static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
		      int level)
C
Chris Mason 已提交
167 168
{
	int i;
C
Chris Mason 已提交
169
	struct btrfs_leaf *leaf = btrfs_buffer_leaf(path->nodes[level]);
C
Chris Mason 已提交
170
	struct btrfs_node *parent = NULL;
C
Chris Mason 已提交
171
	int parent_slot;
172
	u32 nritems = btrfs_header_nritems(&leaf->header);
C
Chris Mason 已提交
173 174

	if (path->nodes[level + 1])
C
Chris Mason 已提交
175
		parent = btrfs_buffer_node(path->nodes[level + 1]);
C
Chris Mason 已提交
176
	parent_slot = path->slots[level + 1];
C
Chris Mason 已提交
177
	BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
178 179 180 181 182

	if (nritems == 0)
		return 0;

	if (parent) {
C
Chris Mason 已提交
183
		struct btrfs_disk_key *parent_key;
C
Chris Mason 已提交
184
		parent_key = &parent->ptrs[parent_slot].key;
C
Chris Mason 已提交
185
		BUG_ON(memcmp(parent_key, &leaf->items[0].key,
C
Chris Mason 已提交
186
		       sizeof(struct btrfs_disk_key)));
187
		BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
188
		       btrfs_header_blocknr(&leaf->header));
C
Chris Mason 已提交
189
	}
190
	for (i = 0; nritems > 1 && i < nritems - 2; i++) {
C
Chris Mason 已提交
191 192
		struct btrfs_key cpukey;
		btrfs_disk_key_to_cpu(&cpukey, &leaf->items[i + 1].key);
C
Chris Mason 已提交
193
		BUG_ON(comp_keys(&leaf->items[i].key,
C
Chris Mason 已提交
194
		                 &cpukey) >= 0);
C
Chris Mason 已提交
195 196
		BUG_ON(btrfs_item_offset(leaf->items + i) !=
			btrfs_item_end(leaf->items + i + 1));
C
Chris Mason 已提交
197
		if (i == 0) {
C
Chris Mason 已提交
198 199
			BUG_ON(btrfs_item_offset(leaf->items + i) +
			       btrfs_item_size(leaf->items + i) !=
C
Chris Mason 已提交
200
			       BTRFS_LEAF_DATA_SIZE(root));
C
Chris Mason 已提交
201 202 203 204 205
		}
	}
	return 0;
}

C
Chris Mason 已提交
206 207
static int check_block(struct btrfs_root *root, struct btrfs_path *path,
			int level)
C
Chris Mason 已提交
208 209
{
	if (level == 0)
C
Chris Mason 已提交
210 211
		return check_leaf(root, path, level);
	return check_node(root, path, level);
C
Chris Mason 已提交
212 213
}

C
Chris Mason 已提交
214 215 216 217 218 219 220 221 222
/*
 * search for key in the array p.  items p are item_size apart
 * and there are 'max' items in p
 * the slot in the array is returned via slot, and it points to
 * the place where you would insert key if it is not found in
 * the array.
 *
 * slot may point to max if the key is bigger than all of the keys
 */
C
Chris Mason 已提交
223
static int generic_bin_search(char *p, int item_size, struct btrfs_key *key,
224 225 226 227 228 229
		       int max, int *slot)
{
	int low = 0;
	int high = max;
	int mid;
	int ret;
C
Chris Mason 已提交
230
	struct btrfs_disk_key *tmp;
231 232 233

	while(low < high) {
		mid = (low + high) / 2;
C
Chris Mason 已提交
234
		tmp = (struct btrfs_disk_key *)(p + mid * item_size);
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
		ret = comp_keys(tmp, key);

		if (ret < 0)
			low = mid + 1;
		else if (ret > 0)
			high = mid;
		else {
			*slot = mid;
			return 0;
		}
	}
	*slot = low;
	return 1;
}

C
Chris Mason 已提交
250 251 252 253
/*
 * simple bin_search frontend that does the right thing for
 * leaves vs nodes
 */
C
Chris Mason 已提交
254
static int bin_search(struct btrfs_node *c, struct btrfs_key *key, int *slot)
255
{
256
	if (btrfs_is_leaf(c)) {
C
Chris Mason 已提交
257
		struct btrfs_leaf *l = (struct btrfs_leaf *)c;
C
Chris Mason 已提交
258 259
		return generic_bin_search((void *)l->items,
					  sizeof(struct btrfs_item),
260 261
					  key, btrfs_header_nritems(&c->header),
					  slot);
262
	} else {
C
Chris Mason 已提交
263 264
		return generic_bin_search((void *)c->ptrs,
					  sizeof(struct btrfs_key_ptr),
265 266
					  key, btrfs_header_nritems(&c->header),
					  slot);
267 268 269 270
	}
	return -1;
}

C
Chris Mason 已提交
271 272
static struct buffer_head *read_node_slot(struct btrfs_root *root,
				   struct buffer_head *parent_buf,
273 274
				   int slot)
{
C
Chris Mason 已提交
275
	struct btrfs_node *node = btrfs_buffer_node(parent_buf);
276 277
	if (slot < 0)
		return NULL;
278
	if (slot >= btrfs_header_nritems(&node->header))
279
		return NULL;
280
	return read_tree_block(root, btrfs_node_blockptr(node, slot));
281 282
}

283 284
static int balance_level(struct btrfs_trans_handle *trans, struct btrfs_root
			 *root, struct btrfs_path *path, int level)
285
{
C
Chris Mason 已提交
286 287 288 289
	struct buffer_head *right_buf;
	struct buffer_head *mid_buf;
	struct buffer_head *left_buf;
	struct buffer_head *parent_buf = NULL;
C
Chris Mason 已提交
290 291 292 293
	struct btrfs_node *right = NULL;
	struct btrfs_node *mid;
	struct btrfs_node *left = NULL;
	struct btrfs_node *parent = NULL;
294 295 296 297
	int ret = 0;
	int wret;
	int pslot;
	int orig_slot = path->slots[level];
298
	u64 orig_ptr;
299 300 301 302 303

	if (level == 0)
		return 0;

	mid_buf = path->nodes[level];
C
Chris Mason 已提交
304
	mid = btrfs_buffer_node(mid_buf);
305
	orig_ptr = btrfs_node_blockptr(mid, orig_slot);
306

C
Chris Mason 已提交
307
	if (level < BTRFS_MAX_LEVEL - 1)
308 309 310
		parent_buf = path->nodes[level + 1];
	pslot = path->slots[level + 1];

C
Chris Mason 已提交
311 312 313 314
	/*
	 * deal with the case where there is only one pointer in the root
	 * by promoting the node below to a root
	 */
315
	if (!parent_buf) {
C
Chris Mason 已提交
316 317
		struct buffer_head *child;
		u64 blocknr = mid_buf->b_blocknr;
318

319
		if (btrfs_header_nritems(&mid->header) != 1)
320 321 322 323 324 325 326
			return 0;

		/* promote the child to a root */
		child = read_node_slot(root, mid_buf, 0);
		BUG_ON(!child);
		root->node = child;
		path->nodes[level] = NULL;
C
Chris Mason 已提交
327 328
		clean_tree_block(trans, root, mid_buf);
		wait_on_buffer(mid_buf);
329
		/* once for the path */
C
Chris Mason 已提交
330
		btrfs_block_release(root, mid_buf);
331
		/* once for the root ptr */
C
Chris Mason 已提交
332
		btrfs_block_release(root, mid_buf);
333
		return btrfs_free_extent(trans, root, blocknr, 1, 1);
334
	}
C
Chris Mason 已提交
335
	parent = btrfs_buffer_node(parent_buf);
336

C
Chris Mason 已提交
337 338
	if (btrfs_header_nritems(&mid->header) >
	    BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
339 340 341 342
		return 0;

	left_buf = read_node_slot(root, parent_buf, pslot - 1);
	right_buf = read_node_slot(root, parent_buf, pslot + 1);
343 344

	/* first, try to make some room in the middle buffer */
345
	if (left_buf) {
346 347
		btrfs_cow_block(trans, root, left_buf, parent_buf, pslot - 1,
				&left_buf);
C
Chris Mason 已提交
348
		left = btrfs_buffer_node(left_buf);
349
		orig_slot += btrfs_header_nritems(&left->header);
350
		wret = push_node_left(trans, root, left_buf, mid_buf);
351 352
		if (wret < 0)
			ret = wret;
353
	}
354 355 356 357

	/*
	 * then try to empty the right most buffer into the middle
	 */
358
	if (right_buf) {
359 360
		btrfs_cow_block(trans, root, right_buf, parent_buf, pslot + 1,
				&right_buf);
C
Chris Mason 已提交
361
		right = btrfs_buffer_node(right_buf);
362
		wret = push_node_left(trans, root, mid_buf, right_buf);
363 364
		if (wret < 0)
			ret = wret;
365
		if (btrfs_header_nritems(&right->header) == 0) {
C
Chris Mason 已提交
366
			u64 blocknr = right_buf->b_blocknr;
367
			clean_tree_block(trans, root, right_buf);
C
Chris Mason 已提交
368 369
			wait_on_buffer(right_buf);
			btrfs_block_release(root, right_buf);
370 371
			right_buf = NULL;
			right = NULL;
372 373
			wret = del_ptr(trans, root, path, level + 1, pslot +
				       1);
374 375
			if (wret)
				ret = wret;
376
			wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
377 378 379
			if (wret)
				ret = wret;
		} else {
C
Chris Mason 已提交
380 381 382 383 384
			btrfs_memcpy(root, parent,
				     &parent->ptrs[pslot + 1].key,
				     &right->ptrs[0].key,
				     sizeof(struct btrfs_disk_key));
			btrfs_mark_buffer_dirty(parent_buf);
385 386
		}
	}
387
	if (btrfs_header_nritems(&mid->header) == 1) {
388 389 390 391 392 393 394 395 396 397
		/*
		 * we're not allowed to leave a node with one item in the
		 * tree during a delete.  A deletion from lower in the tree
		 * could try to delete the only pointer in this node.
		 * So, pull some keys from the left.
		 * There has to be a left pointer at this point because
		 * otherwise we would have pulled some pointers from the
		 * right
		 */
		BUG_ON(!left_buf);
398
		wret = balance_node_right(trans, root, mid_buf, left_buf);
399 400 401 402
		if (wret < 0)
			ret = wret;
		BUG_ON(wret == 1);
	}
403
	if (btrfs_header_nritems(&mid->header) == 0) {
404
		/* we've managed to empty the middle node, drop it */
C
Chris Mason 已提交
405
		u64 blocknr = mid_buf->b_blocknr;
406
		clean_tree_block(trans, root, mid_buf);
C
Chris Mason 已提交
407 408
		wait_on_buffer(mid_buf);
		btrfs_block_release(root, mid_buf);
409 410
		mid_buf = NULL;
		mid = NULL;
411
		wret = del_ptr(trans, root, path, level + 1, pslot);
412 413
		if (wret)
			ret = wret;
414
		wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
415 416
		if (wret)
			ret = wret;
417 418
	} else {
		/* update the parent key to reflect our changes */
C
Chris Mason 已提交
419 420 421 422
		btrfs_memcpy(root, parent,
			     &parent->ptrs[pslot].key, &mid->ptrs[0].key,
			     sizeof(struct btrfs_disk_key));
		btrfs_mark_buffer_dirty(parent_buf);
423
	}
424

425
	/* update the path */
426
	if (left_buf) {
427
		if (btrfs_header_nritems(&left->header) > orig_slot) {
C
Chris Mason 已提交
428
			get_bh(left_buf);
429 430 431 432
			path->nodes[level] = left_buf;
			path->slots[level + 1] -= 1;
			path->slots[level] = orig_slot;
			if (mid_buf)
C
Chris Mason 已提交
433
				btrfs_block_release(root, mid_buf);
434
		} else {
435
			orig_slot -= btrfs_header_nritems(&left->header);
436 437 438
			path->slots[level] = orig_slot;
		}
	}
439
	/* double check we haven't messed things up */
C
Chris Mason 已提交
440
	check_block(root, path, level);
C
Chris Mason 已提交
441 442 443
	if (orig_ptr !=
	    btrfs_node_blockptr(btrfs_buffer_node(path->nodes[level]),
				path->slots[level]))
444
		BUG();
445 446

	if (right_buf)
C
Chris Mason 已提交
447
		btrfs_block_release(root, right_buf);
448
	if (left_buf)
C
Chris Mason 已提交
449
		btrfs_block_release(root, left_buf);
450 451 452
	return ret;
}

C
Chris Mason 已提交
453 454 455 456 457 458
/*
 * look for key in the tree.  path is filled in with nodes along the way
 * if key is found, we return zero and you can find the item in the leaf
 * level of the path (level 0)
 *
 * If the key isn't found, the path points to the slot where it should
C
Chris Mason 已提交
459 460
 * be inserted, and 1 is returned.  If there are other errors during the
 * search a negative error number is returned.
C
Chris Mason 已提交
461 462 463 464
 *
 * if ins_len > 0, nodes and leaves will be split as we walk down the
 * tree.  if ins_len < 0, nodes will be merged as we walk down the tree (if
 * possible)
C
Chris Mason 已提交
465
 */
466 467 468
int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_key *key, struct btrfs_path *p, int
		      ins_len, int cow)
469
{
C
Chris Mason 已提交
470 471
	struct buffer_head *b;
	struct buffer_head *cow_buf;
C
Chris Mason 已提交
472
	struct btrfs_node *c;
473 474 475
	int slot;
	int ret;
	int level;
C
Chris Mason 已提交
476

C
Chris Mason 已提交
477 478
	WARN_ON(p->nodes[0] != NULL);
	WARN_ON(!mutex_is_locked(&root->fs_info->fs_mutex));
479 480
again:
	b = root->node;
C
Chris Mason 已提交
481
	get_bh(b);
482
	while (b) {
C
Chris Mason 已提交
483 484
		c = btrfs_buffer_node(b);
		level = btrfs_header_level(&c->header);
C
Chris Mason 已提交
485 486
		if (cow) {
			int wret;
C
Chris Mason 已提交
487 488 489
			wret = btrfs_cow_block(trans, root, b,
					       p->nodes[level + 1],
					       p->slots[level + 1],
490
					       &cow_buf);
C
Chris Mason 已提交
491
			b = cow_buf;
C
Chris Mason 已提交
492
			c = btrfs_buffer_node(b);
C
Chris Mason 已提交
493 494
		}
		BUG_ON(!cow && ins_len);
C
Chris Mason 已提交
495 496 497
		if (level != btrfs_header_level(&c->header))
			WARN_ON(1);
		level = btrfs_header_level(&c->header);
498
		p->nodes[level] = b;
C
Chris Mason 已提交
499
		ret = check_block(root, p, level);
C
Chris Mason 已提交
500 501
		if (ret)
			return -1;
502
		ret = bin_search(c, key, &slot);
503
		if (!btrfs_is_leaf(c)) {
504 505 506
			if (ret && slot > 0)
				slot -= 1;
			p->slots[level] = slot;
507
			if (ins_len > 0 && btrfs_header_nritems(&c->header) ==
C
Chris Mason 已提交
508
			    BTRFS_NODEPTRS_PER_BLOCK(root)) {
509
				int sret = split_node(trans, root, p, level);
C
Chris Mason 已提交
510 511 512 513
				BUG_ON(sret > 0);
				if (sret)
					return sret;
				b = p->nodes[level];
C
Chris Mason 已提交
514
				c = btrfs_buffer_node(b);
C
Chris Mason 已提交
515
				slot = p->slots[level];
516
			} else if (ins_len < 0) {
517 518
				int sret = balance_level(trans, root, p,
							 level);
519 520 521 522 523
				if (sret)
					return sret;
				b = p->nodes[level];
				if (!b)
					goto again;
C
Chris Mason 已提交
524
				c = btrfs_buffer_node(b);
525
				slot = p->slots[level];
526
				BUG_ON(btrfs_header_nritems(&c->header) == 1);
C
Chris Mason 已提交
527
			}
528
			b = read_tree_block(root, btrfs_node_blockptr(c, slot));
529
		} else {
C
Chris Mason 已提交
530
			struct btrfs_leaf *l = (struct btrfs_leaf *)c;
531
			p->slots[level] = slot;
C
Chris Mason 已提交
532
			if (ins_len > 0 && btrfs_leaf_free_space(root, l) <
C
Chris Mason 已提交
533
			    sizeof(struct btrfs_item) + ins_len) {
534
				int sret = split_leaf(trans, root, p, ins_len);
C
Chris Mason 已提交
535 536 537 538
				BUG_ON(sret > 0);
				if (sret)
					return sret;
			}
539 540 541
			return ret;
		}
	}
C
Chris Mason 已提交
542
	return 1;
543 544
}

C
Chris Mason 已提交
545 546 547 548 549 550
/*
 * adjust the pointers going up the tree, starting at level
 * making sure the right key of each node is points to 'key'.
 * This is used after shifting pointers to the left, so it stops
 * fixing up pointers when a given leaf/node is not in slot 0 of the
 * higher levels
C
Chris Mason 已提交
551 552 553
 *
 * If this fails to write a tree block, it returns -1, but continues
 * fixing up the blocks in ram so the tree is consistent.
C
Chris Mason 已提交
554
 */
555 556 557
static int fixup_low_keys(struct btrfs_trans_handle *trans, struct btrfs_root
			  *root, struct btrfs_path *path, struct btrfs_disk_key
			  *key, int level)
558 559
{
	int i;
C
Chris Mason 已提交
560
	int ret = 0;
C
Chris Mason 已提交
561 562
	for (i = level; i < BTRFS_MAX_LEVEL; i++) {
		struct btrfs_node *t;
563
		int tslot = path->slots[i];
564
		if (!path->nodes[i])
565
			break;
C
Chris Mason 已提交
566
		t = btrfs_buffer_node(path->nodes[i]);
C
Chris Mason 已提交
567 568
		btrfs_memcpy(root, t, &t->ptrs[tslot].key, key, sizeof(*key));
		btrfs_mark_buffer_dirty(path->nodes[i]);
569 570 571
		if (tslot != 0)
			break;
	}
C
Chris Mason 已提交
572
	return ret;
573 574
}

C
Chris Mason 已提交
575 576
/*
 * try to push data from one node into the next node left in the
577
 * tree.
C
Chris Mason 已提交
578 579 580
 *
 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
 * error, and > 0 if there was no room in the left hand block.
C
Chris Mason 已提交
581
 */
582
static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
583 584
			  *root, struct buffer_head *dst_buf, struct
			  buffer_head *src_buf)
585
{
C
Chris Mason 已提交
586 587
	struct btrfs_node *src = btrfs_buffer_node(src_buf);
	struct btrfs_node *dst = btrfs_buffer_node(dst_buf);
588
	int push_items = 0;
589 590
	int src_nritems;
	int dst_nritems;
C
Chris Mason 已提交
591
	int ret = 0;
592

593 594
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
C
Chris Mason 已提交
595
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
596
	if (push_items <= 0) {
597
		return 1;
598
	}
599

600
	if (src_nritems < push_items)
601 602
		push_items = src_nritems;

C
Chris Mason 已提交
603 604
	btrfs_memcpy(root, dst, dst->ptrs + dst_nritems, src->ptrs,
		     push_items * sizeof(struct btrfs_key_ptr));
605
	if (push_items < src_nritems) {
C
Chris Mason 已提交
606
		btrfs_memmove(root, src, src->ptrs, src->ptrs + push_items,
C
Chris Mason 已提交
607
			(src_nritems - push_items) *
C
Chris Mason 已提交
608
			sizeof(struct btrfs_key_ptr));
609
	}
610 611
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
C
Chris Mason 已提交
612 613
	btrfs_mark_buffer_dirty(src_buf);
	btrfs_mark_buffer_dirty(dst_buf);
614 615 616 617 618 619 620 621 622 623 624 625
	return ret;
}

/*
 * try to push data from one node into the next node right in the
 * tree.
 *
 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
 * error, and > 0 if there was no room in the right hand block.
 *
 * this will  only push up to 1/2 the contents of the left node over
 */
626
static int balance_node_right(struct btrfs_trans_handle *trans, struct
C
Chris Mason 已提交
627 628
			      btrfs_root *root, struct buffer_head *dst_buf,
			      struct buffer_head *src_buf)
629
{
C
Chris Mason 已提交
630 631
	struct btrfs_node *src = btrfs_buffer_node(src_buf);
	struct btrfs_node *dst = btrfs_buffer_node(dst_buf);
632 633 634 635 636 637
	int push_items = 0;
	int max_push;
	int src_nritems;
	int dst_nritems;
	int ret = 0;

638 639
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
C
Chris Mason 已提交
640
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
641 642 643 644 645 646 647 648 649 650 651
	if (push_items <= 0) {
		return 1;
	}

	max_push = src_nritems / 2 + 1;
	/* don't try to empty the node */
	if (max_push > src_nritems)
		return 1;
	if (max_push < push_items)
		push_items = max_push;

C
Chris Mason 已提交
652 653 654 655 656 657
	btrfs_memmove(root, dst, dst->ptrs + push_items, dst->ptrs,
		      dst_nritems * sizeof(struct btrfs_key_ptr));

	btrfs_memcpy(root, dst, dst->ptrs,
		     src->ptrs + src_nritems - push_items,
		     push_items * sizeof(struct btrfs_key_ptr));
658

659 660
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
661

C
Chris Mason 已提交
662 663
	btrfs_mark_buffer_dirty(src_buf);
	btrfs_mark_buffer_dirty(dst_buf);
C
Chris Mason 已提交
664
	return ret;
665 666
}

C
Chris Mason 已提交
667 668 669 670
/*
 * helper function to insert a new root level in the tree.
 * A new node is allocated, and a single item is inserted to
 * point to the existing root
C
Chris Mason 已提交
671 672
 *
 * returns zero on success or < 0 on failure.
C
Chris Mason 已提交
673
 */
674 675
static int insert_new_root(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_path *path, int level)
C
Chris Mason 已提交
676
{
C
Chris Mason 已提交
677
	struct buffer_head *t;
C
Chris Mason 已提交
678 679
	struct btrfs_node *lower;
	struct btrfs_node *c;
C
Chris Mason 已提交
680
	struct btrfs_disk_key *lower_key;
C
Chris Mason 已提交
681 682 683 684

	BUG_ON(path->nodes[level]);
	BUG_ON(path->nodes[level-1] != root->node);

685
	t = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
686
	c = btrfs_buffer_node(t);
C
Chris Mason 已提交
687
	memset(c, 0, root->blocksize);
688 689
	btrfs_set_header_nritems(&c->header, 1);
	btrfs_set_header_level(&c->header, level);
C
Chris Mason 已提交
690
	btrfs_set_header_blocknr(&c->header, t->b_blocknr);
691
	btrfs_set_header_generation(&c->header, trans->transid);
692
	btrfs_set_header_parentid(&c->header,
C
Chris Mason 已提交
693 694
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
	lower = btrfs_buffer_node(path->nodes[level-1]);
695
	if (btrfs_is_leaf(lower))
C
Chris Mason 已提交
696
		lower_key = &((struct btrfs_leaf *)lower)->items[0].key;
C
Chris Mason 已提交
697
	else
C
Chris Mason 已提交
698
		lower_key = &lower->ptrs[0].key;
C
Chris Mason 已提交
699 700
	btrfs_memcpy(root, c, &c->ptrs[0].key, lower_key,
		     sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
701
	btrfs_set_node_blockptr(c, 0, path->nodes[level - 1]->b_blocknr);
702

C
Chris Mason 已提交
703
	btrfs_mark_buffer_dirty(t);
704

C
Chris Mason 已提交
705
	/* the super has an extra ref to root->node */
C
Chris Mason 已提交
706
	btrfs_block_release(root, root->node);
C
Chris Mason 已提交
707
	root->node = t;
C
Chris Mason 已提交
708
	get_bh(t);
C
Chris Mason 已提交
709 710 711 712 713
	path->nodes[level] = t;
	path->slots[level] = 0;
	return 0;
}

C
Chris Mason 已提交
714 715 716
/*
 * worker function to insert a single pointer in a node.
 * the node should have enough room for the pointer already
C
Chris Mason 已提交
717
 *
C
Chris Mason 已提交
718 719
 * slot and level indicate where you want the key to go, and
 * blocknr is the block the key points to.
C
Chris Mason 已提交
720 721
 *
 * returns zero on success and < 0 on any error
C
Chris Mason 已提交
722
 */
723 724 725
static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, struct btrfs_disk_key
		      *key, u64 blocknr, int slot, int level)
C
Chris Mason 已提交
726
{
C
Chris Mason 已提交
727
	struct btrfs_node *lower;
C
Chris Mason 已提交
728
	int nritems;
C
Chris Mason 已提交
729 730

	BUG_ON(!path->nodes[level]);
C
Chris Mason 已提交
731
	lower = btrfs_buffer_node(path->nodes[level]);
732
	nritems = btrfs_header_nritems(&lower->header);
C
Chris Mason 已提交
733 734
	if (slot > nritems)
		BUG();
C
Chris Mason 已提交
735
	if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
C
Chris Mason 已提交
736 737
		BUG();
	if (slot != nritems) {
C
Chris Mason 已提交
738 739 740
		btrfs_memmove(root, lower, lower->ptrs + slot + 1,
			      lower->ptrs + slot,
			      (nritems - slot) * sizeof(struct btrfs_key_ptr));
C
Chris Mason 已提交
741
	}
C
Chris Mason 已提交
742 743
	btrfs_memcpy(root, lower, &lower->ptrs[slot].key,
		     key, sizeof(struct btrfs_disk_key));
744
	btrfs_set_node_blockptr(lower, slot, blocknr);
745
	btrfs_set_header_nritems(&lower->header, nritems + 1);
C
Chris Mason 已提交
746
	btrfs_mark_buffer_dirty(path->nodes[level]);
C
Chris Mason 已提交
747 748 749
	return 0;
}

C
Chris Mason 已提交
750 751 752 753 754 755
/*
 * split the node at the specified level in path in two.
 * The path is corrected to point to the appropriate node after the split
 *
 * Before splitting this tries to make some room in the node by pushing
 * left and right, if either one works, it returns right away.
C
Chris Mason 已提交
756 757
 *
 * returns 0 on success and < 0 on failure
C
Chris Mason 已提交
758
 */
759 760
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int level)
761
{
C
Chris Mason 已提交
762
	struct buffer_head *t;
C
Chris Mason 已提交
763
	struct btrfs_node *c;
C
Chris Mason 已提交
764
	struct buffer_head *split_buffer;
C
Chris Mason 已提交
765
	struct btrfs_node *split;
766
	int mid;
C
Chris Mason 已提交
767
	int ret;
C
Chris Mason 已提交
768
	int wret;
769
	u32 c_nritems;
770

C
Chris Mason 已提交
771
	t = path->nodes[level];
C
Chris Mason 已提交
772
	c = btrfs_buffer_node(t);
C
Chris Mason 已提交
773 774
	if (t == root->node) {
		/* trying to split the root, lets make a new one */
775
		ret = insert_new_root(trans, root, path, level + 1);
C
Chris Mason 已提交
776 777
		if (ret)
			return ret;
778
	}
779
	c_nritems = btrfs_header_nritems(&c->header);
780
	split_buffer = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
781
	split = btrfs_buffer_node(split_buffer);
782
	btrfs_set_header_flags(&split->header, btrfs_header_flags(&c->header));
783
	btrfs_set_header_level(&split->header, btrfs_header_level(&c->header));
C
Chris Mason 已提交
784
	btrfs_set_header_blocknr(&split->header, split_buffer->b_blocknr);
785
	btrfs_set_header_generation(&split->header, trans->transid);
786
	btrfs_set_header_parentid(&split->header,
C
Chris Mason 已提交
787
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
788
	mid = (c_nritems + 1) / 2;
C
Chris Mason 已提交
789 790
	btrfs_memcpy(root, split, split->ptrs, c->ptrs + mid,
		     (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
791 792
	btrfs_set_header_nritems(&split->header, c_nritems - mid);
	btrfs_set_header_nritems(&c->header, mid);
C
Chris Mason 已提交
793 794
	ret = 0;

C
Chris Mason 已提交
795 796
	btrfs_mark_buffer_dirty(t);
	btrfs_mark_buffer_dirty(split_buffer);
797
	wret = insert_ptr(trans, root, path, &split->ptrs[0].key,
C
Chris Mason 已提交
798
			  split_buffer->b_blocknr, path->slots[level + 1] + 1,
C
Chris Mason 已提交
799
			  level + 1);
C
Chris Mason 已提交
800 801 802
	if (wret)
		ret = wret;

C
Chris Mason 已提交
803
	if (path->slots[level] >= mid) {
C
Chris Mason 已提交
804
		path->slots[level] -= mid;
C
Chris Mason 已提交
805
		btrfs_block_release(root, t);
C
Chris Mason 已提交
806 807 808
		path->nodes[level] = split_buffer;
		path->slots[level + 1] += 1;
	} else {
C
Chris Mason 已提交
809
		btrfs_block_release(root, split_buffer);
810
	}
C
Chris Mason 已提交
811
	return ret;
812 813
}

C
Chris Mason 已提交
814 815 816 817 818
/*
 * how many bytes are required to store the items in a leaf.  start
 * and nr indicate which items in the leaf to check.  This totals up the
 * space used both by the item structs and the item data
 */
C
Chris Mason 已提交
819
static int leaf_space_used(struct btrfs_leaf *l, int start, int nr)
820 821 822 823 824 825
{
	int data_len;
	int end = start + nr - 1;

	if (!nr)
		return 0;
C
Chris Mason 已提交
826 827 828
	data_len = btrfs_item_end(l->items + start);
	data_len = data_len - btrfs_item_offset(l->items + end);
	data_len += sizeof(struct btrfs_item) * nr;
829 830 831
	return data_len;
}

C
Chris Mason 已提交
832 833 834
/*
 * push some data in the path leaf to the right, trying to free up at
 * least data_size bytes.  returns zero if the push worked, nonzero otherwise
C
Chris Mason 已提交
835 836 837
 *
 * returns 1 if the push failed because the other node didn't have enough
 * room, 0 if everything worked out and < 0 if there were major errors.
C
Chris Mason 已提交
838
 */
839 840
static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_path *path, int data_size)
C
Chris Mason 已提交
841
{
C
Chris Mason 已提交
842 843
	struct buffer_head *left_buf = path->nodes[0];
	struct btrfs_leaf *left = btrfs_buffer_leaf(left_buf);
C
Chris Mason 已提交
844
	struct btrfs_leaf *right;
C
Chris Mason 已提交
845 846 847
	struct buffer_head *right_buf;
	struct buffer_head *upper;
	struct btrfs_node *upper_node;
C
Chris Mason 已提交
848 849 850 851 852
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
853
	struct btrfs_item *item;
854 855
	u32 left_nritems;
	u32 right_nritems;
C
Chris Mason 已提交
856 857 858 859 860 861

	slot = path->slots[1];
	if (!path->nodes[1]) {
		return 1;
	}
	upper = path->nodes[1];
C
Chris Mason 已提交
862 863
	upper_node = btrfs_buffer_node(upper);
	if (slot >= btrfs_header_nritems(&upper_node->header) - 1) {
C
Chris Mason 已提交
864 865
		return 1;
	}
C
Chris Mason 已提交
866 867 868
	right_buf = read_tree_block(root,
		    btrfs_node_blockptr(btrfs_buffer_node(upper), slot + 1));
	right = btrfs_buffer_leaf(right_buf);
C
Chris Mason 已提交
869
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
870
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
871
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
872 873
		return 1;
	}
C
Chris Mason 已提交
874
	/* cow and double check */
875
	btrfs_cow_block(trans, root, right_buf, upper, slot + 1, &right_buf);
C
Chris Mason 已提交
876
	right = btrfs_buffer_leaf(right_buf);
C
Chris Mason 已提交
877
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
878
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
879
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
880 881 882
		return 1;
	}

883 884
	left_nritems = btrfs_header_nritems(&left->header);
	for (i = left_nritems - 1; i >= 0; i--) {
C
Chris Mason 已提交
885 886 887
		item = left->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
C
Chris Mason 已提交
888 889
		if (btrfs_item_size(item) + sizeof(*item) + push_space >
		    free_space)
C
Chris Mason 已提交
890 891
			break;
		push_items++;
C
Chris Mason 已提交
892
		push_space += btrfs_item_size(item) + sizeof(*item);
C
Chris Mason 已提交
893 894
	}
	if (push_items == 0) {
C
Chris Mason 已提交
895
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
896 897
		return 1;
	}
898
	right_nritems = btrfs_header_nritems(&right->header);
C
Chris Mason 已提交
899
	/* push left to right */
C
Chris Mason 已提交
900
	push_space = btrfs_item_end(left->items + left_nritems - push_items);
C
Chris Mason 已提交
901
	push_space -= leaf_data_end(root, left);
C
Chris Mason 已提交
902
	/* make room in the right data area */
C
Chris Mason 已提交
903 904 905 906 907
	btrfs_memmove(root, right, btrfs_leaf_data(right) +
		      leaf_data_end(root, right) - push_space,
		      btrfs_leaf_data(right) +
		      leaf_data_end(root, right), BTRFS_LEAF_DATA_SIZE(root) -
		      leaf_data_end(root, right));
C
Chris Mason 已提交
908
	/* copy from the left data area */
C
Chris Mason 已提交
909 910 911 912 913
	btrfs_memcpy(root, right, btrfs_leaf_data(right) +
		     BTRFS_LEAF_DATA_SIZE(root) - push_space,
		     btrfs_leaf_data(left) + leaf_data_end(root, left),
		     push_space);
	btrfs_memmove(root, right, right->items + push_items, right->items,
C
Chris Mason 已提交
914
		right_nritems * sizeof(struct btrfs_item));
C
Chris Mason 已提交
915
	/* copy the items from left to right */
C
Chris Mason 已提交
916 917 918
	btrfs_memcpy(root, right, right->items, left->items +
		     left_nritems - push_items,
		     push_items * sizeof(struct btrfs_item));
C
Chris Mason 已提交
919 920

	/* update the item pointers */
921 922
	right_nritems += push_items;
	btrfs_set_header_nritems(&right->header, right_nritems);
C
Chris Mason 已提交
923
	push_space = BTRFS_LEAF_DATA_SIZE(root);
924
	for (i = 0; i < right_nritems; i++) {
C
Chris Mason 已提交
925 926 927
		btrfs_set_item_offset(right->items + i, push_space -
				      btrfs_item_size(right->items + i));
		push_space = btrfs_item_offset(right->items + i);
C
Chris Mason 已提交
928
	}
929 930
	left_nritems -= push_items;
	btrfs_set_header_nritems(&left->header, left_nritems);
C
Chris Mason 已提交
931

C
Chris Mason 已提交
932 933 934
	btrfs_mark_buffer_dirty(left_buf);
	btrfs_mark_buffer_dirty(right_buf);
	btrfs_memcpy(root, upper_node, &upper_node->ptrs[slot + 1].key,
C
Chris Mason 已提交
935
		&right->items[0].key, sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
936
	btrfs_mark_buffer_dirty(upper);
C
Chris Mason 已提交
937

C
Chris Mason 已提交
938
	/* then fixup the leaf pointer in the path */
939 940
	if (path->slots[0] >= left_nritems) {
		path->slots[0] -= left_nritems;
C
Chris Mason 已提交
941
		btrfs_block_release(root, path->nodes[0]);
C
Chris Mason 已提交
942 943 944
		path->nodes[0] = right_buf;
		path->slots[1] += 1;
	} else {
C
Chris Mason 已提交
945
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
946 947 948
	}
	return 0;
}
C
Chris Mason 已提交
949 950 951 952
/*
 * push some data in the path leaf to the left, trying to free up at
 * least data_size bytes.  returns zero if the push worked, nonzero otherwise
 */
953 954
static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
			  *root, struct btrfs_path *path, int data_size)
955
{
C
Chris Mason 已提交
956 957 958
	struct buffer_head *right_buf = path->nodes[0];
	struct btrfs_leaf *right = btrfs_buffer_leaf(right_buf);
	struct buffer_head *t;
C
Chris Mason 已提交
959
	struct btrfs_leaf *left;
960 961 962 963 964
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
965
	struct btrfs_item *item;
966
	u32 old_left_nritems;
C
Chris Mason 已提交
967 968
	int ret = 0;
	int wret;
969 970 971 972 973 974 975 976

	slot = path->slots[1];
	if (slot == 0) {
		return 1;
	}
	if (!path->nodes[1]) {
		return 1;
	}
C
Chris Mason 已提交
977 978 979
	t = read_tree_block(root,
	    btrfs_node_blockptr(btrfs_buffer_node(path->nodes[1]), slot - 1));
	left = btrfs_buffer_leaf(t);
C
Chris Mason 已提交
980
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
981
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
982
		btrfs_block_release(root, t);
983 984
		return 1;
	}
C
Chris Mason 已提交
985 986

	/* cow and double check */
987
	btrfs_cow_block(trans, root, t, path->nodes[1], slot - 1, &t);
C
Chris Mason 已提交
988
	left = btrfs_buffer_leaf(t);
C
Chris Mason 已提交
989
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
990
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
991
		btrfs_block_release(root, t);
C
Chris Mason 已提交
992 993 994
		return 1;
	}

995
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
996 997 998
		item = right->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
C
Chris Mason 已提交
999 1000
		if (btrfs_item_size(item) + sizeof(*item) + push_space >
		    free_space)
1001 1002
			break;
		push_items++;
C
Chris Mason 已提交
1003
		push_space += btrfs_item_size(item) + sizeof(*item);
1004 1005
	}
	if (push_items == 0) {
C
Chris Mason 已提交
1006
		btrfs_block_release(root, t);
1007 1008 1009
		return 1;
	}
	/* push data from right to left */
C
Chris Mason 已提交
1010 1011 1012
	btrfs_memcpy(root, left, left->items +
		     btrfs_header_nritems(&left->header),
		     right->items, push_items * sizeof(struct btrfs_item));
C
Chris Mason 已提交
1013
	push_space = BTRFS_LEAF_DATA_SIZE(root) -
C
Chris Mason 已提交
1014
		     btrfs_item_offset(right->items + push_items -1);
C
Chris Mason 已提交
1015 1016 1017 1018 1019
	btrfs_memcpy(root, left, btrfs_leaf_data(left) +
		     leaf_data_end(root, left) - push_space,
		     btrfs_leaf_data(right) +
		     btrfs_item_offset(right->items + push_items - 1),
		     push_space);
1020
	old_left_nritems = btrfs_header_nritems(&left->header);
1021 1022
	BUG_ON(old_left_nritems < 0);

C
Chris Mason 已提交
1023
	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
C
Chris Mason 已提交
1024 1025 1026
		u32 ioff = btrfs_item_offset(left->items + i);
		btrfs_set_item_offset(left->items + i, ioff -
				     (BTRFS_LEAF_DATA_SIZE(root) -
C
Chris Mason 已提交
1027 1028
				      btrfs_item_offset(left->items +
						        old_left_nritems - 1)));
1029
	}
1030
	btrfs_set_header_nritems(&left->header, old_left_nritems + push_items);
1031 1032

	/* fixup right node */
C
Chris Mason 已提交
1033
	push_space = btrfs_item_offset(right->items + push_items - 1) -
C
Chris Mason 已提交
1034
		     leaf_data_end(root, right);
C
Chris Mason 已提交
1035 1036 1037 1038 1039
	btrfs_memmove(root, right, btrfs_leaf_data(right) +
		      BTRFS_LEAF_DATA_SIZE(root) - push_space,
		      btrfs_leaf_data(right) +
		      leaf_data_end(root, right), push_space);
	btrfs_memmove(root, right, right->items, right->items + push_items,
1040
		(btrfs_header_nritems(&right->header) - push_items) *
C
Chris Mason 已提交
1041
		sizeof(struct btrfs_item));
1042 1043 1044
	btrfs_set_header_nritems(&right->header,
				 btrfs_header_nritems(&right->header) -
				 push_items);
C
Chris Mason 已提交
1045
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1046

1047
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
1048 1049 1050
		btrfs_set_item_offset(right->items + i, push_space -
				      btrfs_item_size(right->items + i));
		push_space = btrfs_item_offset(right->items + i);
1051
	}
1052

C
Chris Mason 已提交
1053 1054
	btrfs_mark_buffer_dirty(t);
	btrfs_mark_buffer_dirty(right_buf);
1055

1056
	wret = fixup_low_keys(trans, root, path, &right->items[0].key, 1);
C
Chris Mason 已提交
1057 1058
	if (wret)
		ret = wret;
1059 1060 1061 1062

	/* then fixup the leaf pointer in the path */
	if (path->slots[0] < push_items) {
		path->slots[0] += old_left_nritems;
C
Chris Mason 已提交
1063
		btrfs_block_release(root, path->nodes[0]);
1064
		path->nodes[0] = t;
1065 1066
		path->slots[1] -= 1;
	} else {
C
Chris Mason 已提交
1067
		btrfs_block_release(root, t);
1068 1069
		path->slots[0] -= push_items;
	}
1070
	BUG_ON(path->slots[0] < 0);
C
Chris Mason 已提交
1071
	return ret;
1072 1073
}

C
Chris Mason 已提交
1074 1075 1076
/*
 * split the path's leaf in two, making sure there is at least data_size
 * available for the resulting leaf level of the path.
C
Chris Mason 已提交
1077 1078
 *
 * returns 0 if all went well and < 0 on failure.
C
Chris Mason 已提交
1079
 */
1080 1081
static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int data_size)
1082
{
C
Chris Mason 已提交
1083
	struct buffer_head *l_buf;
C
Chris Mason 已提交
1084
	struct btrfs_leaf *l;
1085
	u32 nritems;
1086 1087
	int mid;
	int slot;
C
Chris Mason 已提交
1088
	struct btrfs_leaf *right;
C
Chris Mason 已提交
1089
	struct buffer_head *right_buffer;
C
Chris Mason 已提交
1090
	int space_needed = data_size + sizeof(struct btrfs_item);
1091 1092 1093 1094
	int data_copy_size;
	int rt_data_off;
	int i;
	int ret;
C
Chris Mason 已提交
1095 1096
	int wret;

C
Chris Mason 已提交
1097
	/* first try to make some room by pushing left and right */
1098
	wret = push_leaf_left(trans, root, path, data_size);
C
Chris Mason 已提交
1099 1100 1101
	if (wret < 0)
		return wret;
	if (wret) {
1102
		wret = push_leaf_right(trans, root, path, data_size);
C
Chris Mason 已提交
1103 1104 1105
		if (wret < 0)
			return wret;
	}
C
Chris Mason 已提交
1106
	l_buf = path->nodes[0];
C
Chris Mason 已提交
1107
	l = btrfs_buffer_leaf(l_buf);
C
Chris Mason 已提交
1108 1109

	/* did the pushes work? */
C
Chris Mason 已提交
1110 1111
	if (btrfs_leaf_free_space(root, l) >=
	    sizeof(struct btrfs_item) + data_size)
C
Chris Mason 已提交
1112 1113
		return 0;

C
Chris Mason 已提交
1114
	if (!path->nodes[1]) {
1115
		ret = insert_new_root(trans, root, path, 1);
C
Chris Mason 已提交
1116 1117 1118
		if (ret)
			return ret;
	}
1119
	slot = path->slots[0];
1120
	nritems = btrfs_header_nritems(&l->header);
1121
	mid = (nritems + 1)/ 2;
1122
	right_buffer = btrfs_alloc_free_block(trans, root);
1123 1124
	BUG_ON(!right_buffer);
	BUG_ON(mid == nritems);
C
Chris Mason 已提交
1125
	right = btrfs_buffer_leaf(right_buffer);
C
Chris Mason 已提交
1126
	memset(&right->header, 0, sizeof(right->header));
1127
	if (mid <= slot) {
C
Chris Mason 已提交
1128
		/* FIXME, just alloc a new leaf here */
1129
		if (leaf_space_used(l, mid, nritems - mid) + space_needed >
C
Chris Mason 已提交
1130
			BTRFS_LEAF_DATA_SIZE(root))
1131 1132
			BUG();
	} else {
C
Chris Mason 已提交
1133
		/* FIXME, just alloc a new leaf here */
1134
		if (leaf_space_used(l, 0, mid + 1) + space_needed >
C
Chris Mason 已提交
1135
			BTRFS_LEAF_DATA_SIZE(root))
1136 1137
			BUG();
	}
1138
	btrfs_set_header_nritems(&right->header, nritems - mid);
C
Chris Mason 已提交
1139
	btrfs_set_header_blocknr(&right->header, right_buffer->b_blocknr);
1140
	btrfs_set_header_generation(&right->header, trans->transid);
1141 1142
	btrfs_set_header_level(&right->header, 0);
	btrfs_set_header_parentid(&right->header,
C
Chris Mason 已提交
1143
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
C
Chris Mason 已提交
1144 1145
	data_copy_size = btrfs_item_end(l->items + mid) -
			 leaf_data_end(root, l);
C
Chris Mason 已提交
1146 1147 1148 1149 1150 1151
	btrfs_memcpy(root, right, right->items, l->items + mid,
		     (nritems - mid) * sizeof(struct btrfs_item));
	btrfs_memcpy(root, right,
		     btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
		     data_copy_size, btrfs_leaf_data(l) +
		     leaf_data_end(root, l), data_copy_size);
C
Chris Mason 已提交
1152 1153
	rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
		      btrfs_item_end(l->items + mid);
C
Chris Mason 已提交
1154

C
Chris Mason 已提交
1155
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
1156
		u32 ioff = btrfs_item_offset(right->items + i);
C
Chris Mason 已提交
1157 1158
		btrfs_set_item_offset(right->items + i, ioff + rt_data_off);
	}
C
Chris Mason 已提交
1159

1160
	btrfs_set_header_nritems(&l->header, mid);
C
Chris Mason 已提交
1161
	ret = 0;
1162
	wret = insert_ptr(trans, root, path, &right->items[0].key,
C
Chris Mason 已提交
1163
			  right_buffer->b_blocknr, path->slots[1] + 1, 1);
C
Chris Mason 已提交
1164 1165
	if (wret)
		ret = wret;
C
Chris Mason 已提交
1166 1167
	btrfs_mark_buffer_dirty(right_buffer);
	btrfs_mark_buffer_dirty(l_buf);
1168
	BUG_ON(path->slots[0] != slot);
1169
	if (mid <= slot) {
C
Chris Mason 已提交
1170
		btrfs_block_release(root, path->nodes[0]);
1171
		path->nodes[0] = right_buffer;
1172 1173
		path->slots[0] -= mid;
		path->slots[1] += 1;
1174
	} else
C
Chris Mason 已提交
1175
		btrfs_block_release(root, right_buffer);
1176
	BUG_ON(path->slots[0] < 0);
1177 1178 1179
	return ret;
}

C
Chris Mason 已提交
1180 1181 1182 1183
/*
 * Given a key and some data, insert an item into the tree.
 * This does all the path init required, making room in the tree if needed.
 */
1184 1185 1186
int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
			    *root, struct btrfs_path *path, struct btrfs_key
			    *cpu_key, u32 data_size)
1187
{
C
Chris Mason 已提交
1188
	int ret = 0;
1189
	int slot;
1190
	int slot_orig;
C
Chris Mason 已提交
1191
	struct btrfs_leaf *leaf;
C
Chris Mason 已提交
1192
	struct buffer_head *leaf_buf;
1193
	u32 nritems;
1194
	unsigned int data_end;
C
Chris Mason 已提交
1195 1196 1197
	struct btrfs_disk_key disk_key;

	btrfs_cpu_key_to_disk(&disk_key, cpu_key);
1198

C
Chris Mason 已提交
1199
	/* create a root if there isn't one */
C
Chris Mason 已提交
1200
	if (!root->node)
C
Chris Mason 已提交
1201
		BUG();
1202
	ret = btrfs_search_slot(trans, root, cpu_key, path, data_size, 1);
1203
	if (ret == 0) {
1204
		return -EEXIST;
C
Chris Mason 已提交
1205
	}
1206 1207
	if (ret < 0)
		goto out;
1208

1209 1210
	slot_orig = path->slots[0];
	leaf_buf = path->nodes[0];
C
Chris Mason 已提交
1211
	leaf = btrfs_buffer_leaf(leaf_buf);
C
Chris Mason 已提交
1212

1213
	nritems = btrfs_header_nritems(&leaf->header);
C
Chris Mason 已提交
1214
	data_end = leaf_data_end(root, leaf);
1215

C
Chris Mason 已提交
1216
	if (btrfs_leaf_free_space(root, leaf) <
C
Chris Mason 已提交
1217
	    sizeof(struct btrfs_item) + data_size)
1218 1219
		BUG();

1220
	slot = path->slots[0];
1221
	BUG_ON(slot < 0);
1222 1223
	if (slot != nritems) {
		int i;
C
Chris Mason 已提交
1224
		unsigned int old_data = btrfs_item_end(leaf->items + slot);
1225 1226 1227 1228 1229

		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
C
Chris Mason 已提交
1230
		for (i = slot; i < nritems; i++) {
C
Chris Mason 已提交
1231
			u32 ioff = btrfs_item_offset(leaf->items + i);
C
Chris Mason 已提交
1232 1233 1234
			btrfs_set_item_offset(leaf->items + i,
					      ioff - data_size);
		}
1235 1236

		/* shift the items */
C
Chris Mason 已提交
1237 1238 1239
		btrfs_memmove(root, leaf, leaf->items + slot + 1,
			      leaf->items + slot,
			      (nritems - slot) * sizeof(struct btrfs_item));
1240 1241

		/* shift the data */
C
Chris Mason 已提交
1242 1243 1244
		btrfs_memmove(root, leaf, btrfs_leaf_data(leaf) +
			      data_end - data_size, btrfs_leaf_data(leaf) +
			      data_end, old_data - data_end);
1245 1246
		data_end = old_data;
	}
1247
	/* setup the item for the new data */
C
Chris Mason 已提交
1248 1249
	btrfs_memcpy(root, leaf, &leaf->items[slot].key, &disk_key,
		     sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
1250 1251
	btrfs_set_item_offset(leaf->items + slot, data_end - data_size);
	btrfs_set_item_size(leaf->items + slot, data_size);
1252
	btrfs_set_header_nritems(&leaf->header, nritems + 1);
C
Chris Mason 已提交
1253
	btrfs_mark_buffer_dirty(leaf_buf);
C
Chris Mason 已提交
1254 1255

	ret = 0;
1256
	if (slot == 0)
1257
		ret = fixup_low_keys(trans, root, path, &disk_key, 1);
C
Chris Mason 已提交
1258

C
Chris Mason 已提交
1259
	if (btrfs_leaf_free_space(root, leaf) < 0)
1260
		BUG();
1261
	check_leaf(root, path, 0);
1262
out:
1263 1264 1265 1266 1267 1268 1269
	return ret;
}

/*
 * Given a key and some data, insert an item into the tree.
 * This does all the path init required, making room in the tree if needed.
 */
1270 1271 1272
int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_key *cpu_key, void *data, u32
		      data_size)
1273 1274
{
	int ret = 0;
C
Chris Mason 已提交
1275
	struct btrfs_path *path;
1276 1277
	u8 *ptr;

C
Chris Mason 已提交
1278 1279 1280 1281
	path = btrfs_alloc_path();
	BUG_ON(!path);
	btrfs_init_path(path);
	ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
1282
	if (!ret) {
C
Chris Mason 已提交
1283 1284 1285
		ptr = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
				     path->slots[0], u8);
		btrfs_memcpy(root, path->nodes[0]->b_data,
C
Chris Mason 已提交
1286
			     ptr, data, data_size);
C
Chris Mason 已提交
1287
		btrfs_mark_buffer_dirty(path->nodes[0]);
1288
	}
C
Chris Mason 已提交
1289 1290
	btrfs_release_path(root, path);
	btrfs_free_path(path);
C
Chris Mason 已提交
1291
	return ret;
1292 1293
}

C
Chris Mason 已提交
1294
/*
C
Chris Mason 已提交
1295
 * delete the pointer from a given node.
C
Chris Mason 已提交
1296 1297 1298 1299 1300
 *
 * If the delete empties a node, the node is removed from the tree,
 * continuing all the way the root if required.  The root is converted into
 * a leaf if all the nodes are emptied.
 */
1301 1302
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot)
1303
{
C
Chris Mason 已提交
1304
	struct btrfs_node *node;
C
Chris Mason 已提交
1305
	struct buffer_head *parent = path->nodes[level];
1306
	u32 nritems;
C
Chris Mason 已提交
1307
	int ret = 0;
1308
	int wret;
1309

C
Chris Mason 已提交
1310
	node = btrfs_buffer_node(parent);
1311
	nritems = btrfs_header_nritems(&node->header);
1312
	if (slot != nritems -1) {
C
Chris Mason 已提交
1313 1314 1315 1316
		btrfs_memmove(root, node, node->ptrs + slot,
			      node->ptrs + slot + 1,
			      sizeof(struct btrfs_key_ptr) *
			      (nritems - slot - 1));
1317
	}
1318 1319 1320
	nritems--;
	btrfs_set_header_nritems(&node->header, nritems);
	if (nritems == 0 && parent == root->node) {
C
Chris Mason 已提交
1321 1322
		struct btrfs_header *header = btrfs_buffer_header(root->node);
		BUG_ON(btrfs_header_level(header) != 1);
1323
		/* just turn the root into a leaf and break */
C
Chris Mason 已提交
1324
		btrfs_set_header_level(header, 0);
1325
	} else if (slot == 0) {
1326
		wret = fixup_low_keys(trans, root, path, &node->ptrs[0].key,
C
Chris Mason 已提交
1327
				      level + 1);
C
Chris Mason 已提交
1328 1329
		if (wret)
			ret = wret;
1330
	}
C
Chris Mason 已提交
1331
	btrfs_mark_buffer_dirty(parent);
C
Chris Mason 已提交
1332
	return ret;
1333 1334
}

C
Chris Mason 已提交
1335 1336 1337 1338
/*
 * delete the item at the leaf level in path.  If that empties
 * the leaf, remove it from the tree
 */
1339 1340
int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path)
1341 1342
{
	int slot;
C
Chris Mason 已提交
1343
	struct btrfs_leaf *leaf;
C
Chris Mason 已提交
1344
	struct buffer_head *leaf_buf;
1345 1346
	int doff;
	int dsize;
C
Chris Mason 已提交
1347 1348
	int ret = 0;
	int wret;
1349
	u32 nritems;
1350

1351
	leaf_buf = path->nodes[0];
C
Chris Mason 已提交
1352
	leaf = btrfs_buffer_leaf(leaf_buf);
1353
	slot = path->slots[0];
C
Chris Mason 已提交
1354 1355
	doff = btrfs_item_offset(leaf->items + slot);
	dsize = btrfs_item_size(leaf->items + slot);
1356
	nritems = btrfs_header_nritems(&leaf->header);
1357

1358
	if (slot != nritems - 1) {
1359
		int i;
C
Chris Mason 已提交
1360
		int data_end = leaf_data_end(root, leaf);
C
Chris Mason 已提交
1361 1362 1363 1364
		btrfs_memmove(root, leaf, btrfs_leaf_data(leaf) +
			      data_end + dsize,
			      btrfs_leaf_data(leaf) + data_end,
			      doff - data_end);
C
Chris Mason 已提交
1365
		for (i = slot + 1; i < nritems; i++) {
C
Chris Mason 已提交
1366
			u32 ioff = btrfs_item_offset(leaf->items + i);
C
Chris Mason 已提交
1367 1368
			btrfs_set_item_offset(leaf->items + i, ioff + dsize);
		}
C
Chris Mason 已提交
1369 1370 1371 1372
		btrfs_memmove(root, leaf, leaf->items + slot,
			      leaf->items + slot + 1,
			      sizeof(struct btrfs_item) *
			      (nritems - slot - 1));
1373
	}
1374 1375
	btrfs_set_header_nritems(&leaf->header, nritems - 1);
	nritems--;
C
Chris Mason 已提交
1376
	/* delete the leaf if we've emptied it */
1377
	if (nritems == 0) {
1378
		if (leaf_buf == root->node) {
1379
			btrfs_set_header_level(&leaf->header, 0);
1380
		} else {
1381
			clean_tree_block(trans, root, leaf_buf);
C
Chris Mason 已提交
1382
			wait_on_buffer(leaf_buf);
1383
			wret = del_ptr(trans, root, path, 1, path->slots[1]);
C
Chris Mason 已提交
1384 1385
			if (wret)
				ret = wret;
1386
			wret = btrfs_free_extent(trans, root,
C
Chris Mason 已提交
1387
						 leaf_buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
1388 1389
			if (wret)
				ret = wret;
1390
		}
1391
	} else {
1392
		int used = leaf_space_used(leaf, 0, nritems);
C
Chris Mason 已提交
1393
		if (slot == 0) {
1394 1395
			wret = fixup_low_keys(trans, root, path,
					      &leaf->items[0].key, 1);
C
Chris Mason 已提交
1396 1397 1398 1399
			if (wret)
				ret = wret;
		}

C
Chris Mason 已提交
1400
		/* delete the leaf if it is mostly empty */
C
Chris Mason 已提交
1401
		if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
1402 1403 1404 1405
			/* push_leaf_left fixes the path.
			 * make sure the path still points to our leaf
			 * for possible call to del_ptr below
			 */
1406
			slot = path->slots[1];
C
Chris Mason 已提交
1407
			get_bh(leaf_buf);
1408
			wret = push_leaf_left(trans, root, path, 1);
C
Chris Mason 已提交
1409 1410
			if (wret < 0)
				ret = wret;
1411
			if (path->nodes[0] == leaf_buf &&
1412
			    btrfs_header_nritems(&leaf->header)) {
1413
				wret = push_leaf_right(trans, root, path, 1);
C
Chris Mason 已提交
1414 1415 1416
				if (wret < 0)
					ret = wret;
			}
1417
			if (btrfs_header_nritems(&leaf->header) == 0) {
C
Chris Mason 已提交
1418
				u64 blocknr = leaf_buf->b_blocknr;
1419
				clean_tree_block(trans, root, leaf_buf);
C
Chris Mason 已提交
1420
				wait_on_buffer(leaf_buf);
1421
				wret = del_ptr(trans, root, path, 1, slot);
C
Chris Mason 已提交
1422 1423
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1424
				btrfs_block_release(root, leaf_buf);
1425 1426
				wret = btrfs_free_extent(trans, root, blocknr,
							 1, 1);
C
Chris Mason 已提交
1427 1428
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1429
			} else {
C
Chris Mason 已提交
1430
				btrfs_mark_buffer_dirty(leaf_buf);
C
Chris Mason 已提交
1431
				btrfs_block_release(root, leaf_buf);
1432
			}
1433
		} else {
C
Chris Mason 已提交
1434
			btrfs_mark_buffer_dirty(leaf_buf);
1435 1436
		}
	}
C
Chris Mason 已提交
1437
	return ret;
1438 1439
}

C
Chris Mason 已提交
1440 1441
/*
 * walk up the tree as far as required to find the next leaf.
C
Chris Mason 已提交
1442 1443
 * returns 0 if it found something or 1 if there are no greater leaves.
 * returns < 0 on io errors.
C
Chris Mason 已提交
1444
 */
C
Chris Mason 已提交
1445
int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
1446 1447 1448 1449
{
	int slot;
	int level = 1;
	u64 blocknr;
C
Chris Mason 已提交
1450 1451 1452
	struct buffer_head *c;
	struct btrfs_node *c_node;
	struct buffer_head *next = NULL;
1453

C
Chris Mason 已提交
1454
	while(level < BTRFS_MAX_LEVEL) {
1455
		if (!path->nodes[level])
C
Chris Mason 已提交
1456
			return 1;
1457 1458
		slot = path->slots[level] + 1;
		c = path->nodes[level];
C
Chris Mason 已提交
1459 1460
		c_node = btrfs_buffer_node(c);
		if (slot >= btrfs_header_nritems(&c_node->header)) {
1461 1462 1463
			level++;
			continue;
		}
C
Chris Mason 已提交
1464
		blocknr = btrfs_node_blockptr(c_node, slot);
C
Chris Mason 已提交
1465
		if (next)
C
Chris Mason 已提交
1466
			btrfs_block_release(root, next);
1467 1468 1469 1470 1471 1472 1473
		next = read_tree_block(root, blocknr);
		break;
	}
	path->slots[level] = slot;
	while(1) {
		level--;
		c = path->nodes[level];
C
Chris Mason 已提交
1474
		btrfs_block_release(root, c);
1475 1476 1477 1478
		path->nodes[level] = next;
		path->slots[level] = 0;
		if (!level)
			break;
1479
		next = read_tree_block(root,
C
Chris Mason 已提交
1480
		       btrfs_node_blockptr(btrfs_buffer_node(next), 0));
1481 1482 1483
	}
	return 0;
}