ctree.c 34.9 KB
Newer Older
1 2 3
#include <stdio.h>
#include <stdlib.h>
#include "kerncompat.h"
4 5 6
#include "radix-tree.h"
#include "ctree.h"
#include "disk-io.h"
7

C
Chris Mason 已提交
8 9 10
#define SEARCH_READ 0
#define SEARCH_WRITE 1

11 12
#define CTREE_EXTENT_PENDING 0

C
Chris Mason 已提交
13 14
int split_node(struct ctree_root *root, struct ctree_path *path, int level);
int split_leaf(struct ctree_root *root, struct ctree_path *path, int data_size);
15 16
struct tree_buffer *alloc_free_block(struct ctree_root *root);
int free_extent(struct ctree_root *root, u64 blocknr, u64 num_blocks);
17

18 19 20 21 22
static inline void init_path(struct ctree_path *p)
{
	memset(p, 0, sizeof(*p));
}

23 24 25 26 27 28 29 30 31 32
static void release_path(struct ctree_root *root, struct ctree_path *p)
{
	int i;
	for (i = 0; i < MAX_LEVEL; i++) {
		if (!p->nodes[i])
			break;
		tree_block_release(root, p->nodes[i]);
	}
}

C
Chris Mason 已提交
33 34 35 36 37
/*
 * 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
 */
38 39 40 41
static inline unsigned int leaf_data_end(struct leaf *leaf)
{
	unsigned int nr = leaf->header.nritems;
	if (nr == 0)
42
		return sizeof(leaf->data);
43 44 45
	return leaf->items[nr-1].offset;
}

C
Chris Mason 已提交
46 47 48 49 50
/*
 * 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
 */
51 52 53 54 55 56 57 58
static inline int leaf_free_space(struct leaf *leaf)
{
	int data_end = leaf_data_end(leaf);
	int nritems = leaf->header.nritems;
	char *items_end = (char *)(leaf->items + nritems + 1);
	return (char *)(leaf->data + data_end) - (char *)items_end;
}

C
Chris Mason 已提交
59 60 61
/*
 * compare two keys in a memcmp fashion
 */
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
int comp_keys(struct key *k1, struct key *k2)
{
	if (k1->objectid > k2->objectid)
		return 1;
	if (k1->objectid < k2->objectid)
		return -1;
	if (k1->flags > k2->flags)
		return 1;
	if (k1->flags < k2->flags)
		return -1;
	if (k1->offset > k2->offset)
		return 1;
	if (k1->offset < k2->offset)
		return -1;
	return 0;
}
C
Chris Mason 已提交
78 79 80 81 82 83 84 85 86 87

/*
 * 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
 */
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 121 122 123 124 125 126 127
int generic_bin_search(char *p, int item_size, struct key *key,
		       int max, int *slot)
{
	int low = 0;
	int high = max;
	int mid;
	int ret;
	struct key *tmp;

	while(low < high) {
		mid = (low + high) / 2;
		tmp = (struct key *)(p + mid * item_size);
		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;
}

int bin_search(struct node *c, struct key *key, int *slot)
{
	if (is_leaf(c->header.flags)) {
		struct leaf *l = (struct leaf *)c;
		return generic_bin_search((void *)l->items, sizeof(struct item),
					  key, c->header.nritems, slot);
	} else {
		return generic_bin_search((void *)c->keys, sizeof(struct key),
					  key, c->header.nritems, slot);
	}
	return -1;
}

C
Chris Mason 已提交
128 129 130 131 132 133 134 135
/*
 * 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
 * be inserted.
 */
C
Chris Mason 已提交
136
int search_slot(struct ctree_root *root, struct key *key, struct ctree_path *p, int ins_len)
137
{
138 139
	struct tree_buffer *b = root->node;
	struct node *c;
140 141 142
	int slot;
	int ret;
	int level;
C
Chris Mason 已提交
143

144 145 146
	b->count++;
	while (b) {
		c = &b->node;
147
		level = node_level(c->header.flags);
148
		p->nodes[level] = b;
149 150 151 152 153
		ret = bin_search(c, key, &slot);
		if (!is_leaf(c->header.flags)) {
			if (ret && slot > 0)
				slot -= 1;
			p->slots[level] = slot;
C
Chris Mason 已提交
154 155 156 157 158 159 160 161 162
			if (ins_len && c->header.nritems == NODEPTRS_PER_BLOCK) {
				int sret = split_node(root, p, level);
				BUG_ON(sret > 0);
				if (sret)
					return sret;
				b = p->nodes[level];
				c = &b->node;
				slot = p->slots[level];
			}
163
			b = read_tree_block(root, c->blockptrs[slot]);
164 165
			continue;
		} else {
C
Chris Mason 已提交
166
			struct leaf *l = (struct leaf *)c;
167
			p->slots[level] = slot;
C
Chris Mason 已提交
168 169 170 171 172 173
			if (ins_len && leaf_free_space(l) <  sizeof(struct item) + ins_len) {
				int sret = split_leaf(root, p, ins_len);
				BUG_ON(sret > 0);
				if (sret)
					return sret;
			}
174 175 176 177 178 179
			return ret;
		}
	}
	return -1;
}

C
Chris Mason 已提交
180 181 182 183 184 185 186
/*
 * 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
 */
187 188 189
static void fixup_low_keys(struct ctree_root *root,
			   struct ctree_path *path, struct key *key,
			   int level)
190 191 192
{
	int i;
	for (i = level; i < MAX_LEVEL; i++) {
193
		struct node *t;
194
		int tslot = path->slots[i];
195
		if (!path->nodes[i])
196
			break;
197
		t = &path->nodes[i]->node;
198
		memcpy(t->keys + tslot, key, sizeof(*key));
199
		write_tree_block(root, path->nodes[i]);
200 201 202 203 204
		if (tslot != 0)
			break;
	}
}

C
Chris Mason 已提交
205 206 207 208 209 210 211 212 213 214
/*
 * try to push data from one node into the next node left in the
 * tree.  The src node is found at specified level in the path.
 * If some bytes were pushed, return 0, otherwise return 1.
 *
 * Lower nodes/leaves in the path are not touched, higher nodes may
 * be modified to reflect the push.
 *
 * The path is altered to reflect the push.
 */
215 216 217 218 219 220 221 222
int push_node_left(struct ctree_root *root, struct ctree_path *path, int level)
{
	int slot;
	struct node *left;
	struct node *right;
	int push_items = 0;
	int left_nritems;
	int right_nritems;
223 224
	struct tree_buffer *t;
	struct tree_buffer *right_buf;
225 226 227 228 229 230 231

	if (level == MAX_LEVEL - 1 || path->nodes[level + 1] == 0)
		return 1;
	slot = path->slots[level + 1];
	if (slot == 0)
		return 1;

232 233 234 235 236
	t = read_tree_block(root,
		            path->nodes[level + 1]->node.blockptrs[slot - 1]);
	left = &t->node;
	right_buf = path->nodes[level];
	right = &right_buf->node;
237 238 239
	left_nritems = left->header.nritems;
	right_nritems = right->header.nritems;
	push_items = NODEPTRS_PER_BLOCK - (left_nritems + 1);
240 241
	if (push_items <= 0) {
		tree_block_release(root, t);
242
		return 1;
243
	}
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258

	if (right_nritems < push_items)
		push_items = right_nritems;
	memcpy(left->keys + left_nritems, right->keys,
		push_items * sizeof(struct key));
	memcpy(left->blockptrs + left_nritems, right->blockptrs,
		push_items * sizeof(u64));
	memmove(right->keys, right->keys + push_items,
		(right_nritems - push_items) * sizeof(struct key));
	memmove(right->blockptrs, right->blockptrs + push_items,
		(right_nritems - push_items) * sizeof(u64));
	right->header.nritems -= push_items;
	left->header.nritems += push_items;

	/* adjust the pointers going up the tree */
259 260 261 262
	fixup_low_keys(root, path, right->keys, level + 1);

	write_tree_block(root, t);
	write_tree_block(root, right_buf);
263 264 265 266

	/* then fixup the leaf pointer in the path */
	if (path->slots[level] < push_items) {
		path->slots[level] += left_nritems;
267 268
		tree_block_release(root, path->nodes[level]);
		path->nodes[level] = t;
269 270 271
		path->slots[level + 1] -= 1;
	} else {
		path->slots[level] -= push_items;
272
		tree_block_release(root, t);
273 274 275 276
	}
	return 0;
}

C
Chris Mason 已提交
277 278 279 280 281 282 283 284 285 286
/*
 * try to push data from one node into the next node right in the
 * tree.  The src node is found at specified level in the path.
 * If some bytes were pushed, return 0, otherwise return 1.
 *
 * Lower nodes/leaves in the path are not touched, higher nodes may
 * be modified to reflect the push.
 *
 * The path is altered to reflect the push.
 */
287 288 289
int push_node_right(struct ctree_root *root, struct ctree_path *path, int level)
{
	int slot;
290 291
	struct tree_buffer *t;
	struct tree_buffer *src_buffer;
292 293 294 295 296 297
	struct node *dst;
	struct node *src;
	int push_items = 0;
	int dst_nritems;
	int src_nritems;

C
Chris Mason 已提交
298
	/* can't push from the root */
299 300
	if (level == MAX_LEVEL - 1 || path->nodes[level + 1] == 0)
		return 1;
C
Chris Mason 已提交
301 302

	/* only try to push inside the node higher up */
303 304 305 306
	slot = path->slots[level + 1];
	if (slot == NODEPTRS_PER_BLOCK - 1)
		return 1;

307
	if (slot >= path->nodes[level + 1]->node.header.nritems -1)
308 309
		return 1;

310 311 312 313 314
	t = read_tree_block(root,
			    path->nodes[level + 1]->node.blockptrs[slot + 1]);
	dst = &t->node;
	src_buffer = path->nodes[level];
	src = &src_buffer->node;
315 316 317
	dst_nritems = dst->header.nritems;
	src_nritems = src->header.nritems;
	push_items = NODEPTRS_PER_BLOCK - (dst_nritems + 1);
318 319
	if (push_items <= 0) {
		tree_block_release(root, t);
320
		return 1;
321
	}
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338

	if (src_nritems < push_items)
		push_items = src_nritems;
	memmove(dst->keys + push_items, dst->keys,
		dst_nritems * sizeof(struct key));
	memcpy(dst->keys, src->keys + src_nritems - push_items,
		push_items * sizeof(struct key));

	memmove(dst->blockptrs + push_items, dst->blockptrs,
		dst_nritems * sizeof(u64));
	memcpy(dst->blockptrs, src->blockptrs + src_nritems - push_items,
		push_items * sizeof(u64));

	src->header.nritems -= push_items;
	dst->header.nritems += push_items;

	/* adjust the pointers going up the tree */
339
	memcpy(path->nodes[level + 1]->node.keys + path->slots[level + 1] + 1,
340
		dst->keys, sizeof(struct key));
341 342 343 344 345

	write_tree_block(root, path->nodes[level + 1]);
	write_tree_block(root, t);
	write_tree_block(root, src_buffer);

C
Chris Mason 已提交
346
	/* then fixup the pointers in the path */
347 348
	if (path->slots[level] >= src->header.nritems) {
		path->slots[level] -= src->header.nritems;
349 350
		tree_block_release(root, path->nodes[level]);
		path->nodes[level] = t;
351
		path->slots[level + 1] += 1;
352 353
	} else {
		tree_block_release(root, t);
354 355 356 357
	}
	return 0;
}

C
Chris Mason 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
static int insert_new_root(struct ctree_root *root, struct ctree_path *path, int level)
{
	struct tree_buffer *t;
	struct node *lower;
	struct node *c;
	struct key *lower_key;

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

	t = alloc_free_block(root);
	c = &t->node;
	memset(c, 0, sizeof(c));
	c->header.nritems = 1;
	c->header.flags = node_level(level);
	c->header.blocknr = t->blocknr;
	c->header.parentid = root->node->node.header.parentid;
	lower = &path->nodes[level-1]->node;
	if (is_leaf(lower->header.flags))
		lower_key = &((struct leaf *)lower)->items[0].key;
	else
		lower_key = lower->keys;
	memcpy(c->keys, lower_key, sizeof(struct key));
	c->blockptrs[0] = path->nodes[level-1]->blocknr;
	/* the super has an extra ref to root->node */
	tree_block_release(root, root->node);
	root->node = t;
	t->count++;
	write_tree_block(root, t);
	path->nodes[level] = t;
	path->slots[level] = 0;
	return 0;
}

C
Chris Mason 已提交
392 393 394 395 396 397
/*
 * worker function to insert a single pointer in a node.
 * the node should have enough room for the pointer already
 * slot and level indicate where you want the key to go, and
 * blocknr is the block the key points to.
 */
C
Chris Mason 已提交
398
int insert_ptr(struct ctree_root *root,
C
Chris Mason 已提交
399 400 401 402 403
		struct ctree_path *path, struct key *key,
		u64 blocknr, int slot, int level)
{
	struct node *lower;
	int nritems;
C
Chris Mason 已提交
404 405

	BUG_ON(!path->nodes[level]);
C
Chris Mason 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
	lower = &path->nodes[level]->node;
	nritems = lower->header.nritems;
	if (slot > nritems)
		BUG();
	if (nritems == NODEPTRS_PER_BLOCK)
		BUG();
	if (slot != nritems) {
		memmove(lower->keys + slot + 1, lower->keys + slot,
			(nritems - slot) * sizeof(struct key));
		memmove(lower->blockptrs + slot + 1, lower->blockptrs + slot,
			(nritems - slot) * sizeof(u64));
	}
	memcpy(lower->keys + slot, key, sizeof(struct key));
	lower->blockptrs[slot] = blocknr;
	lower->header.nritems++;
	if (lower->keys[1].objectid == 0)
			BUG();
	write_tree_block(root, path->nodes[level]);
	return 0;
}

C
Chris Mason 已提交
427
int split_node(struct ctree_root *root, struct ctree_path *path, int level)
428
{
C
Chris Mason 已提交
429 430 431 432
	struct tree_buffer *t;
	struct node *c;
	struct tree_buffer *split_buffer;
	struct node *split;
433
	int mid;
C
Chris Mason 已提交
434
	int ret;
435

C
Chris Mason 已提交
436 437 438 439 440 441 442 443 444 445 446 447 448
	ret = push_node_left(root, path, level);
	if (!ret)
		return 0;
	ret = push_node_right(root, path, level);
	if (!ret)
		return 0;
	t = path->nodes[level];
	c = &t->node;
	if (t == root->node) {
		/* trying to split the root, lets make a new one */
		ret = insert_new_root(root, path, level + 1);
		if (ret)
			return ret;
449
	}
C
Chris Mason 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
	split_buffer = alloc_free_block(root);
	split = &split_buffer->node;
	split->header.flags = c->header.flags;
	split->header.blocknr = split_buffer->blocknr;
	split->header.parentid = root->node->node.header.parentid;
	mid = (c->header.nritems + 1) / 2;
	memcpy(split->keys, c->keys + mid,
		(c->header.nritems - mid) * sizeof(struct key));
	memcpy(split->blockptrs, c->blockptrs + mid,
		(c->header.nritems - mid) * sizeof(u64));
	split->header.nritems = c->header.nritems - mid;
	c->header.nritems = mid;
	write_tree_block(root, t);
	write_tree_block(root, split_buffer);
	insert_ptr(root, path, split->keys, split_buffer->blocknr,
		     path->slots[level + 1] + 1, level + 1);
	if (path->slots[level] > mid) {
		path->slots[level] -= mid;
		tree_block_release(root, t);
		path->nodes[level] = split_buffer;
		path->slots[level + 1] += 1;
	} else {
		tree_block_release(root, split_buffer);
473
	}
C
Chris Mason 已提交
474
	return 0;
475 476
}

C
Chris Mason 已提交
477 478 479 480 481
/*
 * 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
 */
482 483 484 485 486 487 488 489 490 491 492 493 494
int leaf_space_used(struct leaf *l, int start, int nr)
{
	int data_len;
	int end = start + nr - 1;

	if (!nr)
		return 0;
	data_len = l->items[start].offset + l->items[start].size;
	data_len = data_len - l->items[end].offset;
	data_len += sizeof(struct item) * nr;
	return data_len;
}

C
Chris Mason 已提交
495 496 497 498
/*
 * 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
 */
499 500 501
int push_leaf_left(struct ctree_root *root, struct ctree_path *path,
		   int data_size)
{
502 503 504
	struct tree_buffer *right_buf = path->nodes[0];
	struct leaf *right = &right_buf->leaf;
	struct tree_buffer *t;
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
	struct leaf *left;
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
	struct item *item;
	int old_left_nritems;

	slot = path->slots[1];
	if (slot == 0) {
		return 1;
	}
	if (!path->nodes[1]) {
		return 1;
	}
521 522
	t = read_tree_block(root, path->nodes[1]->node.blockptrs[slot - 1]);
	left = &t->leaf;
523 524
	free_space = leaf_free_space(left);
	if (free_space < data_size + sizeof(struct item)) {
525
		tree_block_release(root, t);
526 527 528 529 530 531 532 533 534 535 536 537
		return 1;
	}
	for (i = 0; i < right->header.nritems; i++) {
		item = right->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
		if (item->size + sizeof(*item) + push_space > free_space)
			break;
		push_items++;
		push_space += item->size + sizeof(*item);
	}
	if (push_items == 0) {
538
		tree_block_release(root, t);
539 540 541 542 543 544 545 546 547 548
		return 1;
	}
	/* push data from right to left */
	memcpy(left->items + left->header.nritems,
		right->items, push_items * sizeof(struct item));
	push_space = LEAF_DATA_SIZE - right->items[push_items -1].offset;
	memcpy(left->data + leaf_data_end(left) - push_space,
		right->data + right->items[push_items - 1].offset,
		push_space);
	old_left_nritems = left->header.nritems;
549 550
	BUG_ON(old_left_nritems < 0);

551 552 553 554 555 556 557 558 559 560 561 562 563 564
	for(i = old_left_nritems; i < old_left_nritems + push_items; i++) {
		left->items[i].offset -= LEAF_DATA_SIZE -
			left->items[old_left_nritems -1].offset;
	}
	left->header.nritems += push_items;

	/* fixup right node */
	push_space = right->items[push_items-1].offset - leaf_data_end(right);
	memmove(right->data + LEAF_DATA_SIZE - push_space, right->data +
		leaf_data_end(right), push_space);
	memmove(right->items, right->items + push_items,
		(right->header.nritems - push_items) * sizeof(struct item));
	right->header.nritems -= push_items;
	push_space = LEAF_DATA_SIZE;
565

566 567 568 569
	for (i = 0; i < right->header.nritems; i++) {
		right->items[i].offset = push_space - right->items[i].size;
		push_space = right->items[i].offset;
	}
570 571 572 573 574

	write_tree_block(root, t);
	write_tree_block(root, right_buf);

	fixup_low_keys(root, path, &right->items[0].key, 1);
575 576 577 578

	/* then fixup the leaf pointer in the path */
	if (path->slots[0] < push_items) {
		path->slots[0] += old_left_nritems;
579 580
		tree_block_release(root, path->nodes[0]);
		path->nodes[0] = t;
581 582
		path->slots[1] -= 1;
	} else {
583
		tree_block_release(root, t);
584 585
		path->slots[0] -= push_items;
	}
586
	BUG_ON(path->slots[0] < 0);
587 588 589
	return 0;
}

C
Chris Mason 已提交
590 591 592 593
/*
 * split the path's leaf in two, making sure there is at least data_size
 * available for the resulting leaf level of the path.
 */
594 595
int split_leaf(struct ctree_root *root, struct ctree_path *path, int data_size)
{
596 597 598 599 600
	struct tree_buffer *l_buf = path->nodes[0];
	struct leaf *l = &l_buf->leaf;
	int nritems;
	int mid;
	int slot;
601
	struct leaf *right;
602
	struct tree_buffer *right_buffer;
603 604 605 606 607 608 609
	int space_needed = data_size + sizeof(struct item);
	int data_copy_size;
	int rt_data_off;
	int i;
	int ret;

	if (push_leaf_left(root, path, data_size) == 0) {
610 611 612 613
		l_buf = path->nodes[0];
		l = &l_buf->leaf;
		if (leaf_free_space(l) >= sizeof(struct item) + data_size)
			return 0;
614
	}
C
Chris Mason 已提交
615 616 617 618 619
	if (!path->nodes[1]) {
		ret = insert_new_root(root, path, 1);
		if (ret)
			return ret;
	}
620 621 622 623 624 625 626 627
	slot = path->slots[0];
	nritems = l->header.nritems;
	mid = (nritems + 1)/ 2;

	right_buffer = alloc_free_block(root);
	BUG_ON(!right_buffer);
	BUG_ON(mid == nritems);
	right = &right_buffer->leaf;
628 629 630 631 632 633 634 635 636 637 638
	memset(right, 0, sizeof(*right));
	if (mid <= slot) {
		if (leaf_space_used(l, mid, nritems - mid) + space_needed >
			LEAF_DATA_SIZE)
			BUG();
	} else {
		if (leaf_space_used(l, 0, mid + 1) + space_needed >
			LEAF_DATA_SIZE)
			BUG();
	}
	right->header.nritems = nritems - mid;
639 640
	right->header.blocknr = right_buffer->blocknr;
	right->header.flags = node_level(0);
C
Chris Mason 已提交
641
	right->header.parentid = root->node->node.header.parentid;
642 643 644 645 646 647 648 649
	data_copy_size = l->items[mid].offset + l->items[mid].size -
			 leaf_data_end(l);
	memcpy(right->items, l->items + mid,
	       (nritems - mid) * sizeof(struct item));
	memcpy(right->data + LEAF_DATA_SIZE - data_copy_size,
	       l->data + leaf_data_end(l), data_copy_size);
	rt_data_off = LEAF_DATA_SIZE -
		     (l->items[mid].offset + l->items[mid].size);
C
Chris Mason 已提交
650 651

	for (i = 0; i < right->header.nritems; i++)
652
		right->items[i].offset += rt_data_off;
C
Chris Mason 已提交
653

654 655
	l->header.nritems = mid;
	ret = insert_ptr(root, path, &right->items[0].key,
C
Chris Mason 已提交
656
			  right_buffer->blocknr, path->slots[1] + 1, 1);
657 658 659 660
	write_tree_block(root, right_buffer);
	write_tree_block(root, l_buf);

	BUG_ON(path->slots[0] != slot);
661
	if (mid <= slot) {
662 663
		tree_block_release(root, path->nodes[0]);
		path->nodes[0] = right_buffer;
664 665
		path->slots[0] -= mid;
		path->slots[1] += 1;
666 667 668
	} else
		tree_block_release(root, right_buffer);
	BUG_ON(path->slots[0] < 0);
669 670 671
	return ret;
}

C
Chris Mason 已提交
672 673 674 675
/*
 * 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.
 */
676 677 678 679 680
int insert_item(struct ctree_root *root, struct key *key,
			  void *data, int data_size)
{
	int ret;
	int slot;
681
	int slot_orig;
682
	struct leaf *leaf;
683
	struct tree_buffer *leaf_buf;
684 685 686 687
	unsigned int nritems;
	unsigned int data_end;
	struct ctree_path path;

C
Chris Mason 已提交
688
	/* create a root if there isn't one */
C
Chris Mason 已提交
689
	if (!root->node)
C
Chris Mason 已提交
690
		BUG();
691
	init_path(&path);
C
Chris Mason 已提交
692
	ret = search_slot(root, key, &path, data_size);
693 694
	if (ret == 0) {
		release_path(root, &path);
695
		return -EEXIST;
696
	}
697

698 699 700
	slot_orig = path.slots[0];
	leaf_buf = path.nodes[0];
	leaf = &leaf_buf->leaf;
C
Chris Mason 已提交
701

702 703
	nritems = leaf->header.nritems;
	data_end = leaf_data_end(leaf);
704

705 706 707 708
	if (leaf_free_space(leaf) <  sizeof(struct item) + data_size)
		BUG();

	slot = path.slots[0];
709
	BUG_ON(slot < 0);
710
	if (slot == 0)
711
		fixup_low_keys(root, &path, key, 1);
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
	if (slot != nritems) {
		int i;
		unsigned int old_data = leaf->items[slot].offset +
					leaf->items[slot].size;

		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
		for (i = slot; i < nritems; i++)
			leaf->items[i].offset -= data_size;

		/* shift the items */
		memmove(leaf->items + slot + 1, leaf->items + slot,
		        (nritems - slot) * sizeof(struct item));

		/* shift the data */
		memmove(leaf->data + data_end - data_size, leaf->data +
		        data_end, old_data - data_end);
		data_end = old_data;
	}
C
Chris Mason 已提交
733
	/* copy the new data in */
734 735 736 737 738
	memcpy(&leaf->items[slot].key, key, sizeof(struct key));
	leaf->items[slot].offset = data_end - data_size;
	leaf->items[slot].size = data_size;
	memcpy(leaf->data + data_end - data_size, data, data_size);
	leaf->header.nritems += 1;
739
	write_tree_block(root, leaf_buf);
740 741
	if (leaf_free_space(leaf) < 0)
		BUG();
742
	release_path(root, &path);
743 744 745
	return 0;
}

C
Chris Mason 已提交
746 747 748 749 750 751 752 753
/*
 * delete the pointer from a given level in the path.  The path is not
 * fixed up, so after calling this it is not valid at that level.
 *
 * 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.
 */
754 755 756
int del_ptr(struct ctree_root *root, struct ctree_path *path, int level)
{
	int slot;
757
	struct tree_buffer *t;
758 759
	struct node *node;
	int nritems;
760
	u64 blocknr;
761 762

	while(1) {
763 764
		t = path->nodes[level];
		if (!t)
765
			break;
766
		node = &t->node;
767 768 769 770 771 772 773 774 775 776 777
		slot = path->slots[level];
		nritems = node->header.nritems;

		if (slot != nritems -1) {
			memmove(node->keys + slot, node->keys + slot + 1,
				sizeof(struct key) * (nritems - slot - 1));
			memmove(node->blockptrs + slot,
				node->blockptrs + slot + 1,
				sizeof(u64) * (nritems - slot - 1));
		}
		node->header.nritems--;
778
		write_tree_block(root, t);
779
		blocknr = t->blocknr;
780 781 782
		if (node->header.nritems != 0) {
			int tslot;
			if (slot == 0)
783 784
				fixup_low_keys(root, path, node->keys,
					       level + 1);
785
			tslot = path->slots[level+1];
786
			t->count++;
787 788 789 790
			push_node_left(root, path, level);
			if (node->header.nritems) {
				push_node_right(root, path, level);
			}
791 792
			if (node->header.nritems) {
				tree_block_release(root, t);
793
				break;
794 795
			}
			tree_block_release(root, t);
796
			path->slots[level+1] = tslot;
797
		}
798 799 800 801
		if (t == root->node) {
			/* just turn the root into a leaf and break */
			root->node->node.header.flags = node_level(0);
			write_tree_block(root, t);
802 803 804
			break;
		}
		level++;
805
		free_extent(root, blocknr, 1);
806 807 808 809 810 811
		if (!path->nodes[level])
			BUG();
	}
	return 0;
}

C
Chris Mason 已提交
812 813 814 815
/*
 * delete the item at the leaf level in path.  If that empties
 * the leaf, remove it from the tree
 */
816
int del_item(struct ctree_root *root, struct ctree_path *path)
817 818 819
{
	int slot;
	struct leaf *leaf;
820
	struct tree_buffer *leaf_buf;
821 822 823
	int doff;
	int dsize;

824 825
	leaf_buf = path->nodes[0];
	leaf = &leaf_buf->leaf;
826
	slot = path->slots[0];
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
	doff = leaf->items[slot].offset;
	dsize = leaf->items[slot].size;

	if (slot != leaf->header.nritems - 1) {
		int i;
		int data_end = leaf_data_end(leaf);
		memmove(leaf->data + data_end + dsize,
			leaf->data + data_end,
			doff - data_end);
		for (i = slot + 1; i < leaf->header.nritems; i++)
			leaf->items[i].offset += dsize;
		memmove(leaf->items + slot, leaf->items + slot + 1,
			sizeof(struct item) *
			(leaf->header.nritems - slot - 1));
	}
	leaf->header.nritems -= 1;
C
Chris Mason 已提交
843
	/* delete the leaf if we've emptied it */
844
	if (leaf->header.nritems == 0) {
845 846 847
		if (leaf_buf == root->node) {
			leaf->header.flags = node_level(0);
			write_tree_block(root, leaf_buf);
848
		} else {
849
			del_ptr(root, path, 1);
850 851
			free_extent(root, leaf_buf->blocknr, 1);
		}
852 853
	} else {
		if (slot == 0)
854 855
			fixup_low_keys(root, path, &leaf->items[0].key, 1);
		write_tree_block(root, leaf_buf);
C
Chris Mason 已提交
856
		/* delete the leaf if it is mostly empty */
857 858 859 860 861 862
		if (leaf_space_used(leaf, 0, leaf->header.nritems) <
		    LEAF_DATA_SIZE / 4) {
			/* push_leaf_left fixes the path.
			 * make sure the path still points to our leaf
			 * for possible call to del_ptr below
			 */
863
			slot = path->slots[1];
864
			leaf_buf->count++;
865
			push_leaf_left(root, path, 1);
866
			if (leaf->header.nritems == 0) {
867 868
				path->slots[1] = slot;
				del_ptr(root, path, 1);
869
			}
870
			tree_block_release(root, leaf_buf);
871 872 873 874 875
		}
	}
	return 0;
}

876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941
static int del_pending_extents(struct ctree_root *extent_root)
{
	int ret;
	struct key key;
	struct tree_buffer *gang[4];
	int i;
	struct ctree_path path;

	while(1) {
		ret = radix_tree_gang_lookup_tag(&extent_root->cache_radix,
						 (void **)gang, 0, ARRAY_SIZE(gang),
						 CTREE_EXTENT_PENDING);
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
			key.objectid = gang[i]->blocknr;
			key.flags = 0;
			key.offset = 1;
			init_path(&path);
			ret = search_slot(extent_root, &key, &path, 0);
			if (ret) {
				BUG();
				// FIXME undo it and return sane
				return ret;
			}
			ret = del_item(extent_root, &path);
			if (ret) {
				BUG();
				return ret;
			}
			release_path(extent_root, &path);
			radix_tree_tag_clear(&extent_root->cache_radix, gang[i]->blocknr,
						CTREE_EXTENT_PENDING);
			tree_block_release(extent_root, gang[i]);
		}
	}
	return 0;
}

int free_extent(struct ctree_root *root, u64 blocknr, u64 num_blocks)
{
	struct ctree_path path;
	struct key key;
	struct ctree_root *extent_root = root->extent_root;
	struct tree_buffer *t;
	int pending_ret;
	int ret;

	key.objectid = blocknr;
	key.flags = 0;
	key.offset = num_blocks;
	if (root == extent_root) {
		t = read_tree_block(root, key.objectid);
		radix_tree_tag_set(&root->cache_radix, key.objectid, CTREE_EXTENT_PENDING);
		return 0;
	}
	init_path(&path);
	ret = search_slot(extent_root, &key, &path, 0);
	if (ret)
		BUG();
	ret = del_item(extent_root, &path);
	release_path(extent_root, &path);
	pending_ret = del_pending_extents(root->extent_root);
	return ret ? ret : pending_ret;
}

942 943 944 945 946 947
int next_leaf(struct ctree_root *root, struct ctree_path *path)
{
	int slot;
	int level = 1;
	u64 blocknr;
	struct tree_buffer *c;
C
Chris Mason 已提交
948
	struct tree_buffer *next = NULL;
949 950 951 952 953 954 955 956 957 958 959

	while(level < MAX_LEVEL) {
		if (!path->nodes[level])
			return -1;
		slot = path->slots[level] + 1;
		c = path->nodes[level];
		if (slot >= c->node.header.nritems) {
			level++;
			continue;
		}
		blocknr = c->node.blockptrs[slot];
C
Chris Mason 已提交
960 961
		if (next)
			tree_block_release(root, next);
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978
		next = read_tree_block(root, blocknr);
		break;
	}
	path->slots[level] = slot;
	while(1) {
		level--;
		c = path->nodes[level];
		tree_block_release(root, c);
		path->nodes[level] = next;
		path->slots[level] = 0;
		if (!level)
			break;
		next = read_tree_block(root, next->node.blockptrs[0]);
	}
	return 0;
}

979 980
int find_free_extent(struct ctree_root *orig_root, u64 num_blocks, u64 search_start,
			 u64 search_end, struct key *ins)
981 982 983 984 985 986 987 988 989
{
	struct ctree_path path;
	struct key *key;
	int ret;
	u64 hole_size = 0;
	int slot = 0;
	u64 last_block;
	int start_found = 0;
	struct leaf *l;
C
Chris Mason 已提交
990
	struct ctree_root * root = orig_root->extent_root;
991 992 993 994 995

	init_path(&path);
	ins->objectid = search_start;
	ins->offset = 0;
	ins->flags = 0;
996
	ret = search_slot(root, ins, &path, 0);
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
	while (1) {
		l = &path.nodes[0]->leaf;
		slot = path.slots[0];
		if (!l) {
			// FIXME allocate root
		}
		if (slot >= l->header.nritems) {
			ret = next_leaf(root, &path);
			if (ret == 0)
				continue;
			if (!start_found) {
				ins->objectid = search_start;
				ins->offset = num_blocks;
				hole_size = search_end - search_start;
1011
				start_found = 1;
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
				goto insert;
			}
			ins->objectid = last_block;
			ins->offset = num_blocks;
			hole_size = search_end - last_block;
			goto insert;
		}
		key = &l->items[slot].key;
		if (start_found) {
			hole_size = key->objectid - last_block;
			if (hole_size > num_blocks) {
				ins->objectid = last_block;
				ins->offset = num_blocks;
				goto insert;
			}
		} else
			start_found = 1;
		last_block = key->objectid + key->offset;
1030
insert_failed:
1031 1032 1033 1034
		path.slots[0]++;
	}
	// FIXME -ENOSPC
insert:
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
	if (orig_root->extent_root == orig_root) {
		BUG_ON(num_blocks != 1);
		if ((root->current_insert.objectid <= ins->objectid &&
		    root->current_insert.objectid + root->current_insert.offset >
		    ins->objectid) ||
		   (root->current_insert.objectid > ins->objectid &&
		    root->current_insert.objectid <= ins->objectid + ins->offset) ||
		   radix_tree_tag_get(&root->cache_radix, ins->objectid,
				      CTREE_EXTENT_PENDING)) {
			last_block = ins->objectid + 1;
			search_start = last_block;
			goto insert_failed;
		}
	}
C
Chris Mason 已提交
1049
	release_path(root, &path);
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
	if (ins->offset != 1)
		BUG();
	return 0;
}

static int insert_pending_extents(struct ctree_root *extent_root)
{
	int ret;
	struct key key;
	struct extent_item item;
	struct tree_buffer *gang[4];
	int i;

	// FIXME -ENOSPC
	item.refs = 1;
	item.owner = extent_root->node->node.header.parentid;
	while(1) {
		ret = radix_tree_gang_lookup_tag(&extent_root->cache_radix,
						 (void **)gang, 0, ARRAY_SIZE(gang),
						 CTREE_EXTENT_PENDING);
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
			key.objectid = gang[i]->blocknr;
			key.flags = 0;
			key.offset = 1;
			ret = insert_item(extent_root, &key, &item, sizeof(item));
			if (ret) {
				BUG();
				// FIXME undo it and return sane
				return ret;
			}
			radix_tree_tag_clear(&extent_root->cache_radix, gang[i]->blocknr,
						CTREE_EXTENT_PENDING);
			tree_block_release(extent_root, gang[i]);
		}
	}
	return 0;
}

int alloc_extent(struct ctree_root *root, u64 num_blocks, u64 search_start,
			 u64 search_end, u64 owner, struct key *ins, struct tree_buffer **buf)
{
	int ret;
	int pending_ret;
	struct extent_item extent_item;

1097 1098
	extent_item.refs = 1;
	extent_item.owner = owner;
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114

	ret = find_free_extent(root, num_blocks, search_start, search_end, ins);
	if (ret)
		return ret;

	if (root != root->extent_root) {
		memcpy(&root->extent_root->current_insert, ins, sizeof(*ins));
		ret = insert_item(root->extent_root, ins, &extent_item, sizeof(extent_item));
		memset(&root->extent_root->current_insert, 0, sizeof(struct key));
		pending_ret = insert_pending_extents(root->extent_root);
		if (ret)
			return ret;
		if (pending_ret)
			return pending_ret;
		*buf = find_tree_block(root, ins->objectid);
		return 0;
C
Chris Mason 已提交
1115
	}
1116 1117 1118 1119 1120 1121 1122 1123
	/* we're allocating an extent for the extent tree, don't recurse */
	BUG_ON(ins->offset != 1);
	*buf = find_tree_block(root, ins->objectid);
	BUG_ON(!*buf);
	radix_tree_tag_set(&root->cache_radix, ins->objectid, CTREE_EXTENT_PENDING);
	(*buf)->count++;
	return 0;

1124 1125
}

1126
struct tree_buffer *alloc_free_block(struct ctree_root *root)
1127
{
1128
	struct key ins;
1129
	int ret;
1130
	struct tree_buffer *buf = NULL;
1131

1132 1133 1134 1135 1136 1137
	ret = alloc_extent(root, 1, 0, (unsigned long)-1, root->node->node.header.parentid,
			   &ins, &buf);

	if (ret) {
		BUG();
		return NULL;
1138
	}
1139 1140 1141 1142
	if (root != root->extent_root)
		BUG_ON(radix_tree_tag_get(&root->extent_root->cache_radix, buf->blocknr,
					  CTREE_EXTENT_PENDING));
	return buf;
1143 1144
}

1145 1146 1147 1148 1149
void print_leaf(struct leaf *l)
{
	int i;
	int nr = l->header.nritems;
	struct item *item;
C
Chris Mason 已提交
1150
	struct extent_item *ei;
1151
	printf("leaf %lu total ptrs %d free space %d\n", l->header.blocknr, nr,
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
	       leaf_free_space(l));
	fflush(stdout);
	for (i = 0 ; i < nr ; i++) {
		item = l->items + i;
		printf("\titem %d key (%lu %u %lu) itemoff %d itemsize %d\n",
			i,
			item->key.objectid, item->key.flags, item->key.offset,
			item->offset, item->size);
		fflush(stdout);
		printf("\t\titem data %.*s\n", item->size, l->data+item->offset);
C
Chris Mason 已提交
1162 1163
		ei = (struct extent_item *)(l->data + item->offset);
		printf("\t\textent data %u %lu\n", ei->refs, ei->owner);
1164 1165 1166
		fflush(stdout);
	}
}
1167
void print_tree(struct ctree_root *root, struct tree_buffer *t)
1168 1169 1170
{
	int i;
	int nr;
1171
	struct node *c;
1172

1173
	if (!t)
1174
		return;
1175
	c = &t->node;
1176
	nr = c->header.nritems;
1177 1178
	if (c->header.blocknr != t->blocknr)
		BUG();
1179 1180 1181 1182
	if (is_leaf(c->header.flags)) {
		print_leaf((struct leaf *)c);
		return;
	}
1183
	printf("node %lu level %d total ptrs %d free spc %lu\n", t->blocknr,
1184 1185 1186 1187
	        node_level(c->header.flags), c->header.nritems,
		NODEPTRS_PER_BLOCK - c->header.nritems);
	fflush(stdout);
	for (i = 0; i < nr; i++) {
1188
		printf("\tkey %d (%lu %u %lu) block %lu\n",
1189 1190 1191 1192 1193 1194
		       i,
		       c->keys[i].objectid, c->keys[i].flags, c->keys[i].offset,
		       c->blockptrs[i]);
		fflush(stdout);
	}
	for (i = 0; i < nr; i++) {
1195 1196 1197
		struct tree_buffer *next_buf = read_tree_block(root,
							    c->blockptrs[i]);
		struct node *next = &next_buf->node;
1198 1199 1200 1201 1202 1203
		if (is_leaf(next->header.flags) &&
		    node_level(c->header.flags) != 1)
			BUG();
		if (node_level(next->header.flags) !=
			node_level(c->header.flags) - 1)
			BUG();
1204 1205
		print_tree(root, next_buf);
		tree_block_release(root, next_buf);
1206 1207 1208 1209 1210 1211
	}

}

/* for testing only */
int next_key(int i, int max_key) {
C
Chris Mason 已提交
1212 1213
	// return rand() % max_key;
	return i;
1214 1215 1216
}

int main() {
1217
	struct ctree_root *root;
1218
	struct key ins;
1219
	struct key last = { (u64)-1, 0, 0};
1220 1221 1222 1223
	char *buf;
	int i;
	int num;
	int ret;
C
Chris Mason 已提交
1224
	int run_size = 10000;
1225 1226 1227
	int max_key = 100000000;
	int tree_size = 0;
	struct ctree_path path;
C
Chris Mason 已提交
1228
	struct ctree_super_block super;
1229

1230 1231 1232
	radix_tree_init();


C
Chris Mason 已提交
1233 1234 1235 1236 1237
	root = open_ctree("dbfile", &super);
	printf("root tree\n");
	print_tree(root, root->node);
	printf("map tree\n");
	print_tree(root->extent_root, root->extent_root->node);
1238
	fflush(stdout);
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249

	srand(55);
	for (i = 0; i < run_size; i++) {
		buf = malloc(64);
		num = next_key(i, max_key);
		// num = i;
		sprintf(buf, "string-%d", num);
		// printf("insert %d\n", num);
		ins.objectid = num;
		ins.offset = 0;
		ins.flags = 0;
1250
		ret = insert_item(root, &ins, buf, strlen(buf));
1251 1252 1253
		if (!ret)
			tree_size++;
	}
C
Chris Mason 已提交
1254
	write_ctree_super(root, &super);
1255
	close_ctree(root);
C
Chris Mason 已提交
1256 1257

	root = open_ctree("dbfile", &super);
1258
	printf("starting search\n");
1259 1260 1261 1262 1263
	srand(55);
	for (i = 0; i < run_size; i++) {
		num = next_key(i, max_key);
		ins.objectid = num;
		init_path(&path);
C
Chris Mason 已提交
1264
		ret = search_slot(root, &ins, &path, 0);
1265
		if (ret) {
1266
			print_tree(root, root->node);
1267 1268 1269
			printf("unable to find %d\n", num);
			exit(1);
		}
1270 1271
		release_path(root, &path);
	}
C
Chris Mason 已提交
1272
	write_ctree_super(root, &super);
1273
	close_ctree(root);
C
Chris Mason 已提交
1274
	root = open_ctree("dbfile", &super);
1275 1276 1277 1278 1279
	printf("node %p level %d total ptrs %d free spc %lu\n", root->node,
	        node_level(root->node->node.header.flags),
		root->node->node.header.nritems,
		NODEPTRS_PER_BLOCK - root->node->node.header.nritems);
	printf("all searches good, deleting some items\n");
1280 1281
	i = 0;
	srand(55);
1282 1283 1284 1285
	for (i = 0 ; i < run_size/4; i++) {
		num = next_key(i, max_key);
		ins.objectid = num;
		init_path(&path);
C
Chris Mason 已提交
1286
		ret = search_slot(root, &ins, &path, 0);
1287 1288
		if (ret)
			continue;
1289
		ret = del_item(root, &path);
1290 1291
		if (ret != 0)
			BUG();
1292
		release_path(root, &path);
1293 1294 1295
		tree_size--;
	}
	srand(128);
1296
	for (i = 0; i < run_size; i++) {
1297
		buf = malloc(64);
1298
		num = next_key(i, max_key);
1299
		sprintf(buf, "string-%d", num);
1300
		ins.objectid = num;
1301
		ret = insert_item(root, &ins, buf, strlen(buf));
1302 1303
		if (!ret)
			tree_size++;
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
		if (i >= 5) {
			struct key ugh;
			ugh.objectid = 5;
			ugh.flags = 0;
			ugh.offset = 0;
			init_path(&path);
			ret = search_slot(root, &ugh, &path, 0);
			if (ret) {
				print_tree(root, root->node);
				printf("unable to find 5 %d\n", num);
				exit(1);
			}
			release_path(root, &path);

		}
1319
	}
C
Chris Mason 已提交
1320
	write_ctree_super(root, &super);
1321
	close_ctree(root);
C
Chris Mason 已提交
1322
	root = open_ctree("dbfile", &super);
1323
	srand(128);
1324
	printf("starting search2\n");
1325 1326 1327 1328
	for (i = 0; i < run_size; i++) {
		num = next_key(i, max_key);
		ins.objectid = num;
		init_path(&path);
C
Chris Mason 已提交
1329
		ret = search_slot(root, &ins, &path, 0);
1330 1331 1332 1333 1334 1335 1336 1337 1338
		if (ret) {
			print_tree(root, root->node);
			printf("unable to find %d\n", num);
			exit(1);
		}
		release_path(root, &path);
	}
	printf("starting big long delete run\n");
	while(root->node && root->node->node.header.nritems > 0) {
1339 1340 1341 1342
		struct leaf *leaf;
		int slot;
		ins.objectid = (u64)-1;
		init_path(&path);
C
Chris Mason 已提交
1343
		ret = search_slot(root, &ins, &path, 0);
1344 1345 1346
		if (ret == 0)
			BUG();

1347
		leaf = &path.nodes[0]->leaf;
1348 1349 1350 1351 1352 1353
		slot = path.slots[0];
		if (slot != leaf->header.nritems)
			BUG();
		while(path.slots[0] > 0) {
			path.slots[0] -= 1;
			slot = path.slots[0];
1354
			leaf = &path.nodes[0]->leaf;
1355 1356 1357 1358

			if (comp_keys(&last, &leaf->items[slot].key) <= 0)
				BUG();
			memcpy(&last, &leaf->items[slot].key, sizeof(last));
1359 1360 1361
			ret = del_item(root, &path);
			if (ret != 0) {
				printf("del_item returned %d\n", ret);
1362
				BUG();
1363
			}
1364 1365
			tree_size--;
		}
1366
		release_path(root, &path);
1367
	}
C
Chris Mason 已提交
1368
	write_ctree_super(root, &super);
1369
	close_ctree(root);
1370
	printf("tree size is now %d\n", tree_size);
1371 1372
	printf("map tree\n");
	print_tree(root->extent_root, root->extent_root->node);
1373 1374
	return 0;
}