blob: 17a3ff2f182818d01a8bdeddb8ad348f740ae298 [file] [log] [blame]
Chris Masonbe0e5c02007-01-26 15:51:26 -05001#include <stdio.h>
2#include <stdlib.h>
3#include "kerncompat.h"
Chris Masoneb60cea2007-02-02 09:18:22 -05004#include "radix-tree.h"
5#include "ctree.h"
6#include "disk-io.h"
Chris Mason5de08d72007-02-24 06:24:44 -05007#include "print-tree.h"
Chris Mason9a8dd152007-02-23 08:38:36 -05008
Chris Masone089f052007-03-16 16:20:31 -04009static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
10 *root, struct btrfs_path *path, int level);
11static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
12 *root, struct btrfs_path *path, int data_size);
13static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
14 *root, struct btrfs_buffer *dst, struct btrfs_buffer
15 *src);
16static int balance_node_right(struct btrfs_trans_handle *trans, struct
17 btrfs_root *root, struct btrfs_buffer *dst_buf,
Chris Mason234b63a2007-03-13 10:46:10 -040018 struct btrfs_buffer *src_buf);
Chris Masone089f052007-03-16 16:20:31 -040019static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
20 struct btrfs_path *path, int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050021
Chris Mason234b63a2007-03-13 10:46:10 -040022inline void btrfs_init_path(struct btrfs_path *p)
Chris Masonbe0e5c02007-01-26 15:51:26 -050023{
24 memset(p, 0, sizeof(*p));
25}
26
Chris Mason234b63a2007-03-13 10:46:10 -040027void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -050028{
29 int i;
Chris Mason234b63a2007-03-13 10:46:10 -040030 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masoneb60cea2007-02-02 09:18:22 -050031 if (!p->nodes[i])
32 break;
Chris Mason234b63a2007-03-13 10:46:10 -040033 btrfs_block_release(root, p->nodes[i]);
Chris Masoneb60cea2007-02-02 09:18:22 -050034 }
Chris Masonaa5d6be2007-02-28 16:35:06 -050035 memset(p, 0, sizeof(*p));
Chris Masoneb60cea2007-02-02 09:18:22 -050036}
37
Chris Masone089f052007-03-16 16:20:31 -040038static int btrfs_cow_block(struct btrfs_trans_handle *trans, struct btrfs_root
39 *root, struct btrfs_buffer *buf, struct btrfs_buffer
40 *parent, int parent_slot, struct btrfs_buffer
41 **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -050042{
Chris Mason234b63a2007-03-13 10:46:10 -040043 struct btrfs_buffer *cow;
Chris Mason02217ed2007-03-02 16:08:05 -050044
45 if (!list_empty(&buf->dirty)) {
46 *cow_ret = buf;
47 return 0;
48 }
Chris Masone089f052007-03-16 16:20:31 -040049 cow = btrfs_alloc_free_block(trans, root);
Chris Mason123abc82007-03-14 14:14:43 -040050 memcpy(&cow->node, &buf->node, root->blocksize);
Chris Mason7518a232007-03-12 12:01:18 -040051 btrfs_set_header_blocknr(&cow->node.header, cow->blocknr);
Chris Mason02217ed2007-03-02 16:08:05 -050052 *cow_ret = cow;
Chris Masone089f052007-03-16 16:20:31 -040053 btrfs_inc_ref(trans, root, buf);
Chris Mason02217ed2007-03-02 16:08:05 -050054 if (buf == root->node) {
55 root->node = cow;
56 cow->count++;
Chris Masona28ec192007-03-06 20:08:01 -050057 if (buf != root->commit_root)
Chris Masone089f052007-03-16 16:20:31 -040058 btrfs_free_extent(trans, root, buf->blocknr, 1, 1);
Chris Mason234b63a2007-03-13 10:46:10 -040059 btrfs_block_release(root, buf);
Chris Mason02217ed2007-03-02 16:08:05 -050060 } else {
Chris Mason1d4f8a02007-03-13 09:28:32 -040061 btrfs_set_node_blockptr(&parent->node, parent_slot,
62 cow->blocknr);
Chris Mason02217ed2007-03-02 16:08:05 -050063 BUG_ON(list_empty(&parent->dirty));
Chris Masone089f052007-03-16 16:20:31 -040064 btrfs_free_extent(trans, root, buf->blocknr, 1, 1);
Chris Mason02217ed2007-03-02 16:08:05 -050065 }
Chris Mason234b63a2007-03-13 10:46:10 -040066 btrfs_block_release(root, buf);
Chris Mason02217ed2007-03-02 16:08:05 -050067 return 0;
68}
69
Chris Mason74123bd2007-02-02 11:05:29 -050070/*
71 * The leaf data grows from end-to-front in the node.
72 * this returns the address of the start of the last item,
73 * which is the stop of the leaf data stack
74 */
Chris Mason123abc82007-03-14 14:14:43 -040075static inline unsigned int leaf_data_end(struct btrfs_root *root,
76 struct btrfs_leaf *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -050077{
Chris Mason7518a232007-03-12 12:01:18 -040078 u32 nr = btrfs_header_nritems(&leaf->header);
Chris Masonbe0e5c02007-01-26 15:51:26 -050079 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -040080 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason0783fcf2007-03-12 20:12:07 -040081 return btrfs_item_offset(leaf->items + nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -050082}
83
Chris Mason74123bd2007-02-02 11:05:29 -050084/*
85 * The space between the end of the leaf items and
86 * the start of the leaf data. IOW, how much room
87 * the leaf has left for both items and data
88 */
Chris Mason123abc82007-03-14 14:14:43 -040089int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -050090{
Chris Mason123abc82007-03-14 14:14:43 -040091 int data_end = leaf_data_end(root, leaf);
Chris Mason7518a232007-03-12 12:01:18 -040092 int nritems = btrfs_header_nritems(&leaf->header);
Chris Masonbe0e5c02007-01-26 15:51:26 -050093 char *items_end = (char *)(leaf->items + nritems + 1);
Chris Mason123abc82007-03-14 14:14:43 -040094 return (char *)(btrfs_leaf_data(leaf) + data_end) - (char *)items_end;
Chris Masonbe0e5c02007-01-26 15:51:26 -050095}
96
Chris Mason74123bd2007-02-02 11:05:29 -050097/*
98 * compare two keys in a memcmp fashion
99 */
Chris Mason9aca1d52007-03-13 11:09:37 -0400100static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500101{
Chris Masone2fa7222007-03-12 16:22:34 -0400102 struct btrfs_key k1;
103
104 btrfs_disk_key_to_cpu(&k1, disk);
105
106 if (k1.objectid > k2->objectid)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500107 return 1;
Chris Masone2fa7222007-03-12 16:22:34 -0400108 if (k1.objectid < k2->objectid)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500109 return -1;
Chris Mason62e27492007-03-15 12:56:47 -0400110 if (k1.flags > k2->flags)
111 return 1;
112 if (k1.flags < k2->flags)
113 return -1;
Chris Masona8a2ee02007-03-16 08:46:49 -0400114 if (k1.offset > k2->offset)
115 return 1;
116 if (k1.offset < k2->offset)
117 return -1;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500118 return 0;
119}
Chris Mason74123bd2007-02-02 11:05:29 -0500120
Chris Mason123abc82007-03-14 14:14:43 -0400121static int check_node(struct btrfs_root *root, struct btrfs_path *path,
122 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500123{
124 int i;
Chris Mason234b63a2007-03-13 10:46:10 -0400125 struct btrfs_node *parent = NULL;
126 struct btrfs_node *node = &path->nodes[level]->node;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500127 int parent_slot;
Chris Mason7518a232007-03-12 12:01:18 -0400128 u32 nritems = btrfs_header_nritems(&node->header);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500129
130 if (path->nodes[level + 1])
131 parent = &path->nodes[level + 1]->node;
132 parent_slot = path->slots[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400133 BUG_ON(nritems == 0);
134 if (parent) {
Chris Masone2fa7222007-03-12 16:22:34 -0400135 struct btrfs_disk_key *parent_key;
Chris Mason123abc82007-03-14 14:14:43 -0400136 parent_key = &parent->ptrs[parent_slot].key;
137 BUG_ON(memcmp(parent_key, &node->ptrs[0].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400138 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400139 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Mason7518a232007-03-12 12:01:18 -0400140 btrfs_header_blocknr(&node->header));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500141 }
Chris Mason123abc82007-03-14 14:14:43 -0400142 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason7518a232007-03-12 12:01:18 -0400143 for (i = 0; nritems > 1 && i < nritems - 2; i++) {
Chris Masone2fa7222007-03-12 16:22:34 -0400144 struct btrfs_key cpukey;
Chris Mason123abc82007-03-14 14:14:43 -0400145 btrfs_disk_key_to_cpu(&cpukey, &node->ptrs[i + 1].key);
146 BUG_ON(comp_keys(&node->ptrs[i].key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500147 }
148 return 0;
149}
150
Chris Mason123abc82007-03-14 14:14:43 -0400151static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
152 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500153{
154 int i;
Chris Mason234b63a2007-03-13 10:46:10 -0400155 struct btrfs_leaf *leaf = &path->nodes[level]->leaf;
156 struct btrfs_node *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500157 int parent_slot;
Chris Mason7518a232007-03-12 12:01:18 -0400158 u32 nritems = btrfs_header_nritems(&leaf->header);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500159
160 if (path->nodes[level + 1])
161 parent = &path->nodes[level + 1]->node;
162 parent_slot = path->slots[level + 1];
Chris Mason123abc82007-03-14 14:14:43 -0400163 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason7518a232007-03-12 12:01:18 -0400164
165 if (nritems == 0)
166 return 0;
167
168 if (parent) {
Chris Masone2fa7222007-03-12 16:22:34 -0400169 struct btrfs_disk_key *parent_key;
Chris Mason123abc82007-03-14 14:14:43 -0400170 parent_key = &parent->ptrs[parent_slot].key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500171 BUG_ON(memcmp(parent_key, &leaf->items[0].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400172 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400173 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Mason7518a232007-03-12 12:01:18 -0400174 btrfs_header_blocknr(&leaf->header));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500175 }
Chris Mason7518a232007-03-12 12:01:18 -0400176 for (i = 0; nritems > 1 && i < nritems - 2; i++) {
Chris Masone2fa7222007-03-12 16:22:34 -0400177 struct btrfs_key cpukey;
178 btrfs_disk_key_to_cpu(&cpukey, &leaf->items[i + 1].key);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500179 BUG_ON(comp_keys(&leaf->items[i].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400180 &cpukey) >= 0);
Chris Mason0783fcf2007-03-12 20:12:07 -0400181 BUG_ON(btrfs_item_offset(leaf->items + i) !=
182 btrfs_item_end(leaf->items + i + 1));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500183 if (i == 0) {
Chris Mason0783fcf2007-03-12 20:12:07 -0400184 BUG_ON(btrfs_item_offset(leaf->items + i) +
185 btrfs_item_size(leaf->items + i) !=
Chris Mason123abc82007-03-14 14:14:43 -0400186 BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500187 }
188 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500189 return 0;
190}
191
Chris Mason123abc82007-03-14 14:14:43 -0400192static int check_block(struct btrfs_root *root, struct btrfs_path *path,
193 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500194{
195 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400196 return check_leaf(root, path, level);
197 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500198}
199
Chris Mason74123bd2007-02-02 11:05:29 -0500200/*
201 * search for key in the array p. items p are item_size apart
202 * and there are 'max' items in p
203 * the slot in the array is returned via slot, and it points to
204 * the place where you would insert key if it is not found in
205 * the array.
206 *
207 * slot may point to max if the key is bigger than all of the keys
208 */
Chris Mason9aca1d52007-03-13 11:09:37 -0400209static int generic_bin_search(char *p, int item_size, struct btrfs_key *key,
Chris Masonbe0e5c02007-01-26 15:51:26 -0500210 int max, int *slot)
211{
212 int low = 0;
213 int high = max;
214 int mid;
215 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400216 struct btrfs_disk_key *tmp;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500217
218 while(low < high) {
219 mid = (low + high) / 2;
Chris Masone2fa7222007-03-12 16:22:34 -0400220 tmp = (struct btrfs_disk_key *)(p + mid * item_size);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500221 ret = comp_keys(tmp, key);
222
223 if (ret < 0)
224 low = mid + 1;
225 else if (ret > 0)
226 high = mid;
227 else {
228 *slot = mid;
229 return 0;
230 }
231 }
232 *slot = low;
233 return 1;
234}
235
Chris Mason97571fd2007-02-24 13:39:08 -0500236/*
237 * simple bin_search frontend that does the right thing for
238 * leaves vs nodes
239 */
Chris Mason9aca1d52007-03-13 11:09:37 -0400240static int bin_search(struct btrfs_node *c, struct btrfs_key *key, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500241{
Chris Mason7518a232007-03-12 12:01:18 -0400242 if (btrfs_is_leaf(c)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400243 struct btrfs_leaf *l = (struct btrfs_leaf *)c;
Chris Mason0783fcf2007-03-12 20:12:07 -0400244 return generic_bin_search((void *)l->items,
245 sizeof(struct btrfs_item),
Chris Mason7518a232007-03-12 12:01:18 -0400246 key, btrfs_header_nritems(&c->header),
247 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500248 } else {
Chris Mason123abc82007-03-14 14:14:43 -0400249 return generic_bin_search((void *)c->ptrs,
250 sizeof(struct btrfs_key_ptr),
Chris Mason7518a232007-03-12 12:01:18 -0400251 key, btrfs_header_nritems(&c->header),
252 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500253 }
254 return -1;
255}
256
Chris Mason9aca1d52007-03-13 11:09:37 -0400257static struct btrfs_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason234b63a2007-03-13 10:46:10 -0400258 struct btrfs_buffer *parent_buf,
Chris Masonbb803952007-03-01 12:04:21 -0500259 int slot)
260{
Chris Mason234b63a2007-03-13 10:46:10 -0400261 struct btrfs_node *node = &parent_buf->node;
Chris Masonbb803952007-03-01 12:04:21 -0500262 if (slot < 0)
263 return NULL;
Chris Mason7518a232007-03-12 12:01:18 -0400264 if (slot >= btrfs_header_nritems(&node->header))
Chris Masonbb803952007-03-01 12:04:21 -0500265 return NULL;
Chris Mason1d4f8a02007-03-13 09:28:32 -0400266 return read_tree_block(root, btrfs_node_blockptr(node, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500267}
268
Chris Masone089f052007-03-16 16:20:31 -0400269static int balance_level(struct btrfs_trans_handle *trans, struct btrfs_root
270 *root, struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500271{
Chris Mason234b63a2007-03-13 10:46:10 -0400272 struct btrfs_buffer *right_buf;
273 struct btrfs_buffer *mid_buf;
274 struct btrfs_buffer *left_buf;
275 struct btrfs_buffer *parent_buf = NULL;
276 struct btrfs_node *right = NULL;
277 struct btrfs_node *mid;
278 struct btrfs_node *left = NULL;
279 struct btrfs_node *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500280 int ret = 0;
281 int wret;
282 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500283 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -0500284 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500285
286 if (level == 0)
287 return 0;
288
289 mid_buf = path->nodes[level];
290 mid = &mid_buf->node;
Chris Mason1d4f8a02007-03-13 09:28:32 -0400291 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -0500292
Chris Mason234b63a2007-03-13 10:46:10 -0400293 if (level < BTRFS_MAX_LEVEL - 1)
Chris Masonbb803952007-03-01 12:04:21 -0500294 parent_buf = path->nodes[level + 1];
295 pslot = path->slots[level + 1];
296
297 if (!parent_buf) {
Chris Mason234b63a2007-03-13 10:46:10 -0400298 struct btrfs_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -0500299 u64 blocknr = mid_buf->blocknr;
300
Chris Mason7518a232007-03-12 12:01:18 -0400301 if (btrfs_header_nritems(&mid->header) != 1)
Chris Masonbb803952007-03-01 12:04:21 -0500302 return 0;
303
304 /* promote the child to a root */
305 child = read_node_slot(root, mid_buf, 0);
306 BUG_ON(!child);
307 root->node = child;
308 path->nodes[level] = NULL;
309 /* once for the path */
Chris Mason234b63a2007-03-13 10:46:10 -0400310 btrfs_block_release(root, mid_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500311 /* once for the root ptr */
Chris Mason234b63a2007-03-13 10:46:10 -0400312 btrfs_block_release(root, mid_buf);
Chris Masone089f052007-03-16 16:20:31 -0400313 clean_tree_block(trans, root, mid_buf);
314 return btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500315 }
316 parent = &parent_buf->node;
317
Chris Mason123abc82007-03-14 14:14:43 -0400318 if (btrfs_header_nritems(&mid->header) >
319 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -0500320 return 0;
321
Chris Masonbb803952007-03-01 12:04:21 -0500322 left_buf = read_node_slot(root, parent_buf, pslot - 1);
323 right_buf = read_node_slot(root, parent_buf, pslot + 1);
Chris Mason79f95c82007-03-01 15:16:26 -0500324
325 /* first, try to make some room in the middle buffer */
Chris Masonbb803952007-03-01 12:04:21 -0500326 if (left_buf) {
Chris Masone089f052007-03-16 16:20:31 -0400327 btrfs_cow_block(trans, root, left_buf, parent_buf, pslot - 1,
328 &left_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500329 left = &left_buf->node;
Chris Mason7518a232007-03-12 12:01:18 -0400330 orig_slot += btrfs_header_nritems(&left->header);
Chris Masone089f052007-03-16 16:20:31 -0400331 wret = push_node_left(trans, root, left_buf, mid_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500332 if (wret < 0)
333 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -0500334 }
Chris Mason79f95c82007-03-01 15:16:26 -0500335
336 /*
337 * then try to empty the right most buffer into the middle
338 */
Chris Masonbb803952007-03-01 12:04:21 -0500339 if (right_buf) {
Chris Masone089f052007-03-16 16:20:31 -0400340 btrfs_cow_block(trans, root, right_buf, parent_buf, pslot + 1,
341 &right_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500342 right = &right_buf->node;
Chris Masone089f052007-03-16 16:20:31 -0400343 wret = push_node_left(trans, root, mid_buf, right_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500344 if (wret < 0)
345 ret = wret;
Chris Mason7518a232007-03-12 12:01:18 -0400346 if (btrfs_header_nritems(&right->header) == 0) {
Chris Masonbb803952007-03-01 12:04:21 -0500347 u64 blocknr = right_buf->blocknr;
Chris Mason234b63a2007-03-13 10:46:10 -0400348 btrfs_block_release(root, right_buf);
Chris Masone089f052007-03-16 16:20:31 -0400349 clean_tree_block(trans, root, right_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500350 right_buf = NULL;
351 right = NULL;
Chris Masone089f052007-03-16 16:20:31 -0400352 wret = del_ptr(trans, root, path, level + 1, pslot +
353 1);
Chris Masonbb803952007-03-01 12:04:21 -0500354 if (wret)
355 ret = wret;
Chris Masone089f052007-03-16 16:20:31 -0400356 wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500357 if (wret)
358 ret = wret;
359 } else {
Chris Mason123abc82007-03-14 14:14:43 -0400360 memcpy(&parent->ptrs[pslot + 1].key,
361 &right->ptrs[0].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400362 sizeof(struct btrfs_disk_key));
Chris Mason02217ed2007-03-02 16:08:05 -0500363 BUG_ON(list_empty(&parent_buf->dirty));
Chris Masonbb803952007-03-01 12:04:21 -0500364 }
365 }
Chris Mason7518a232007-03-12 12:01:18 -0400366 if (btrfs_header_nritems(&mid->header) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -0500367 /*
368 * we're not allowed to leave a node with one item in the
369 * tree during a delete. A deletion from lower in the tree
370 * could try to delete the only pointer in this node.
371 * So, pull some keys from the left.
372 * There has to be a left pointer at this point because
373 * otherwise we would have pulled some pointers from the
374 * right
375 */
376 BUG_ON(!left_buf);
Chris Masone089f052007-03-16 16:20:31 -0400377 wret = balance_node_right(trans, root, mid_buf, left_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500378 if (wret < 0)
379 ret = wret;
380 BUG_ON(wret == 1);
381 }
Chris Mason7518a232007-03-12 12:01:18 -0400382 if (btrfs_header_nritems(&mid->header) == 0) {
Chris Mason79f95c82007-03-01 15:16:26 -0500383 /* we've managed to empty the middle node, drop it */
Chris Masonbb803952007-03-01 12:04:21 -0500384 u64 blocknr = mid_buf->blocknr;
Chris Mason234b63a2007-03-13 10:46:10 -0400385 btrfs_block_release(root, mid_buf);
Chris Masone089f052007-03-16 16:20:31 -0400386 clean_tree_block(trans, root, mid_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500387 mid_buf = NULL;
388 mid = NULL;
Chris Masone089f052007-03-16 16:20:31 -0400389 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -0500390 if (wret)
391 ret = wret;
Chris Masone089f052007-03-16 16:20:31 -0400392 wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500393 if (wret)
394 ret = wret;
Chris Mason79f95c82007-03-01 15:16:26 -0500395 } else {
396 /* update the parent key to reflect our changes */
Chris Mason123abc82007-03-14 14:14:43 -0400397 memcpy(&parent->ptrs[pslot].key, &mid->ptrs[0].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400398 sizeof(struct btrfs_disk_key));
Chris Mason02217ed2007-03-02 16:08:05 -0500399 BUG_ON(list_empty(&parent_buf->dirty));
Chris Mason79f95c82007-03-01 15:16:26 -0500400 }
Chris Masonbb803952007-03-01 12:04:21 -0500401
Chris Mason79f95c82007-03-01 15:16:26 -0500402 /* update the path */
Chris Masonbb803952007-03-01 12:04:21 -0500403 if (left_buf) {
Chris Mason7518a232007-03-12 12:01:18 -0400404 if (btrfs_header_nritems(&left->header) > orig_slot) {
Chris Masonbb803952007-03-01 12:04:21 -0500405 left_buf->count++; // released below
406 path->nodes[level] = left_buf;
407 path->slots[level + 1] -= 1;
408 path->slots[level] = orig_slot;
409 if (mid_buf)
Chris Mason234b63a2007-03-13 10:46:10 -0400410 btrfs_block_release(root, mid_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500411 } else {
Chris Mason7518a232007-03-12 12:01:18 -0400412 orig_slot -= btrfs_header_nritems(&left->header);
Chris Masonbb803952007-03-01 12:04:21 -0500413 path->slots[level] = orig_slot;
414 }
415 }
Chris Mason79f95c82007-03-01 15:16:26 -0500416 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -0400417 check_block(root, path, level);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400418 if (orig_ptr != btrfs_node_blockptr(&path->nodes[level]->node,
419 path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -0500420 BUG();
Chris Masonbb803952007-03-01 12:04:21 -0500421
422 if (right_buf)
Chris Mason234b63a2007-03-13 10:46:10 -0400423 btrfs_block_release(root, right_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500424 if (left_buf)
Chris Mason234b63a2007-03-13 10:46:10 -0400425 btrfs_block_release(root, left_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500426 return ret;
427}
428
Chris Mason74123bd2007-02-02 11:05:29 -0500429/*
430 * look for key in the tree. path is filled in with nodes along the way
431 * if key is found, we return zero and you can find the item in the leaf
432 * level of the path (level 0)
433 *
434 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -0500435 * be inserted, and 1 is returned. If there are other errors during the
436 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -0500437 *
438 * if ins_len > 0, nodes and leaves will be split as we walk down the
439 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
440 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -0500441 */
Chris Masone089f052007-03-16 16:20:31 -0400442int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
443 *root, struct btrfs_key *key, struct btrfs_path *p, int
444 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500445{
Chris Mason234b63a2007-03-13 10:46:10 -0400446 struct btrfs_buffer *b;
447 struct btrfs_buffer *cow_buf;
448 struct btrfs_node *c;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500449 int slot;
450 int ret;
451 int level;
Chris Mason5c680ed2007-02-22 11:39:13 -0500452
Chris Masonbb803952007-03-01 12:04:21 -0500453again:
454 b = root->node;
Chris Masoneb60cea2007-02-02 09:18:22 -0500455 b->count++;
456 while (b) {
Chris Mason7518a232007-03-12 12:01:18 -0400457 level = btrfs_header_level(&b->node.header);
Chris Mason02217ed2007-03-02 16:08:05 -0500458 if (cow) {
459 int wret;
Chris Masone089f052007-03-16 16:20:31 -0400460 wret = btrfs_cow_block(trans, root, b, p->nodes[level +
461 1], p->slots[level + 1],
462 &cow_buf);
Chris Mason02217ed2007-03-02 16:08:05 -0500463 b = cow_buf;
464 }
465 BUG_ON(!cow && ins_len);
Chris Masoneb60cea2007-02-02 09:18:22 -0500466 c = &b->node;
Chris Masoneb60cea2007-02-02 09:18:22 -0500467 p->nodes[level] = b;
Chris Mason123abc82007-03-14 14:14:43 -0400468 ret = check_block(root, p, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500469 if (ret)
470 return -1;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500471 ret = bin_search(c, key, &slot);
Chris Mason7518a232007-03-12 12:01:18 -0400472 if (!btrfs_is_leaf(c)) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500473 if (ret && slot > 0)
474 slot -= 1;
475 p->slots[level] = slot;
Chris Mason7518a232007-03-12 12:01:18 -0400476 if (ins_len > 0 && btrfs_header_nritems(&c->header) ==
Chris Mason123abc82007-03-14 14:14:43 -0400477 BTRFS_NODEPTRS_PER_BLOCK(root)) {
Chris Masone089f052007-03-16 16:20:31 -0400478 int sret = split_node(trans, root, p, level);
Chris Mason5c680ed2007-02-22 11:39:13 -0500479 BUG_ON(sret > 0);
480 if (sret)
481 return sret;
482 b = p->nodes[level];
483 c = &b->node;
484 slot = p->slots[level];
Chris Masonbb803952007-03-01 12:04:21 -0500485 } else if (ins_len < 0) {
Chris Masone089f052007-03-16 16:20:31 -0400486 int sret = balance_level(trans, root, p,
487 level);
Chris Masonbb803952007-03-01 12:04:21 -0500488 if (sret)
489 return sret;
490 b = p->nodes[level];
491 if (!b)
492 goto again;
493 c = &b->node;
494 slot = p->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400495 BUG_ON(btrfs_header_nritems(&c->header) == 1);
Chris Mason5c680ed2007-02-22 11:39:13 -0500496 }
Chris Mason1d4f8a02007-03-13 09:28:32 -0400497 b = read_tree_block(root, btrfs_node_blockptr(c, slot));
Chris Masonbe0e5c02007-01-26 15:51:26 -0500498 } else {
Chris Mason234b63a2007-03-13 10:46:10 -0400499 struct btrfs_leaf *l = (struct btrfs_leaf *)c;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500500 p->slots[level] = slot;
Chris Mason123abc82007-03-14 14:14:43 -0400501 if (ins_len > 0 && btrfs_leaf_free_space(root, l) <
Chris Mason0783fcf2007-03-12 20:12:07 -0400502 sizeof(struct btrfs_item) + ins_len) {
Chris Masone089f052007-03-16 16:20:31 -0400503 int sret = split_leaf(trans, root, p, ins_len);
Chris Mason5c680ed2007-02-22 11:39:13 -0500504 BUG_ON(sret > 0);
505 if (sret)
506 return sret;
507 }
Chris Masonbb803952007-03-01 12:04:21 -0500508 BUG_ON(root->node->count == 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500509 return ret;
510 }
511 }
Chris Masonbb803952007-03-01 12:04:21 -0500512 BUG_ON(root->node->count == 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500513 return 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500514}
515
Chris Mason74123bd2007-02-02 11:05:29 -0500516/*
517 * adjust the pointers going up the tree, starting at level
518 * making sure the right key of each node is points to 'key'.
519 * This is used after shifting pointers to the left, so it stops
520 * fixing up pointers when a given leaf/node is not in slot 0 of the
521 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -0500522 *
523 * If this fails to write a tree block, it returns -1, but continues
524 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -0500525 */
Chris Masone089f052007-03-16 16:20:31 -0400526static int fixup_low_keys(struct btrfs_trans_handle *trans, struct btrfs_root
527 *root, struct btrfs_path *path, struct btrfs_disk_key
528 *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500529{
530 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500531 int ret = 0;
Chris Mason234b63a2007-03-13 10:46:10 -0400532 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
533 struct btrfs_node *t;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500534 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -0500535 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -0500536 break;
Chris Masoneb60cea2007-02-02 09:18:22 -0500537 t = &path->nodes[i]->node;
Chris Mason123abc82007-03-14 14:14:43 -0400538 memcpy(&t->ptrs[tslot].key, key, sizeof(*key));
Chris Mason02217ed2007-03-02 16:08:05 -0500539 BUG_ON(list_empty(&path->nodes[i]->dirty));
Chris Masonbe0e5c02007-01-26 15:51:26 -0500540 if (tslot != 0)
541 break;
542 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500543 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500544}
545
Chris Mason74123bd2007-02-02 11:05:29 -0500546/*
547 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -0500548 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -0500549 *
550 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
551 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -0500552 */
Chris Masone089f052007-03-16 16:20:31 -0400553static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
554 *root, struct btrfs_buffer *dst_buf, struct
555 btrfs_buffer *src_buf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500556{
Chris Mason234b63a2007-03-13 10:46:10 -0400557 struct btrfs_node *src = &src_buf->node;
558 struct btrfs_node *dst = &dst_buf->node;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500559 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -0500560 int src_nritems;
561 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500562 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500563
Chris Mason7518a232007-03-12 12:01:18 -0400564 src_nritems = btrfs_header_nritems(&src->header);
565 dst_nritems = btrfs_header_nritems(&dst->header);
Chris Mason123abc82007-03-14 14:14:43 -0400566 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masoneb60cea2007-02-02 09:18:22 -0500567 if (push_items <= 0) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500568 return 1;
Chris Masoneb60cea2007-02-02 09:18:22 -0500569 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500570
571 if (src_nritems < push_items)
Chris Mason79f95c82007-03-01 15:16:26 -0500572 push_items = src_nritems;
573
Chris Mason123abc82007-03-14 14:14:43 -0400574 memcpy(dst->ptrs + dst_nritems, src->ptrs,
575 push_items * sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -0500576 if (push_items < src_nritems) {
Chris Mason123abc82007-03-14 14:14:43 -0400577 memmove(src->ptrs, src->ptrs + push_items,
Chris Masone2fa7222007-03-12 16:22:34 -0400578 (src_nritems - push_items) *
Chris Mason123abc82007-03-14 14:14:43 -0400579 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -0500580 }
Chris Mason7518a232007-03-12 12:01:18 -0400581 btrfs_set_header_nritems(&src->header, src_nritems - push_items);
582 btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
Chris Mason02217ed2007-03-02 16:08:05 -0500583 BUG_ON(list_empty(&src_buf->dirty));
584 BUG_ON(list_empty(&dst_buf->dirty));
Chris Masonbb803952007-03-01 12:04:21 -0500585 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500586}
587
Chris Mason97571fd2007-02-24 13:39:08 -0500588/*
Chris Mason79f95c82007-03-01 15:16:26 -0500589 * try to push data from one node into the next node right in the
590 * tree.
591 *
592 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
593 * error, and > 0 if there was no room in the right hand block.
594 *
595 * this will only push up to 1/2 the contents of the left node over
596 */
Chris Masone089f052007-03-16 16:20:31 -0400597static int balance_node_right(struct btrfs_trans_handle *trans, struct
598 btrfs_root *root, struct btrfs_buffer *dst_buf,
Chris Mason234b63a2007-03-13 10:46:10 -0400599 struct btrfs_buffer *src_buf)
Chris Mason79f95c82007-03-01 15:16:26 -0500600{
Chris Mason234b63a2007-03-13 10:46:10 -0400601 struct btrfs_node *src = &src_buf->node;
602 struct btrfs_node *dst = &dst_buf->node;
Chris Mason79f95c82007-03-01 15:16:26 -0500603 int push_items = 0;
604 int max_push;
605 int src_nritems;
606 int dst_nritems;
607 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -0500608
Chris Mason7518a232007-03-12 12:01:18 -0400609 src_nritems = btrfs_header_nritems(&src->header);
610 dst_nritems = btrfs_header_nritems(&dst->header);
Chris Mason123abc82007-03-14 14:14:43 -0400611 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason79f95c82007-03-01 15:16:26 -0500612 if (push_items <= 0) {
613 return 1;
614 }
615
616 max_push = src_nritems / 2 + 1;
617 /* don't try to empty the node */
618 if (max_push > src_nritems)
619 return 1;
620 if (max_push < push_items)
621 push_items = max_push;
622
Chris Mason123abc82007-03-14 14:14:43 -0400623 memmove(dst->ptrs + push_items, dst->ptrs,
624 dst_nritems * sizeof(struct btrfs_key_ptr));
625 memcpy(dst->ptrs, src->ptrs + src_nritems - push_items,
626 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -0500627
Chris Mason7518a232007-03-12 12:01:18 -0400628 btrfs_set_header_nritems(&src->header, src_nritems - push_items);
629 btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -0500630
Chris Mason02217ed2007-03-02 16:08:05 -0500631 BUG_ON(list_empty(&src_buf->dirty));
632 BUG_ON(list_empty(&dst_buf->dirty));
Chris Mason79f95c82007-03-01 15:16:26 -0500633 return ret;
634}
635
636/*
Chris Mason97571fd2007-02-24 13:39:08 -0500637 * helper function to insert a new root level in the tree.
638 * A new node is allocated, and a single item is inserted to
639 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -0500640 *
641 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -0500642 */
Chris Masone089f052007-03-16 16:20:31 -0400643static int insert_new_root(struct btrfs_trans_handle *trans, struct btrfs_root
644 *root, struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -0500645{
Chris Mason234b63a2007-03-13 10:46:10 -0400646 struct btrfs_buffer *t;
647 struct btrfs_node *lower;
648 struct btrfs_node *c;
Chris Masone2fa7222007-03-12 16:22:34 -0400649 struct btrfs_disk_key *lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -0500650
651 BUG_ON(path->nodes[level]);
652 BUG_ON(path->nodes[level-1] != root->node);
653
Chris Masone089f052007-03-16 16:20:31 -0400654 t = btrfs_alloc_free_block(trans, root);
Chris Mason5c680ed2007-02-22 11:39:13 -0500655 c = &t->node;
Chris Mason123abc82007-03-14 14:14:43 -0400656 memset(c, 0, root->blocksize);
Chris Mason7518a232007-03-12 12:01:18 -0400657 btrfs_set_header_nritems(&c->header, 1);
658 btrfs_set_header_level(&c->header, level);
659 btrfs_set_header_blocknr(&c->header, t->blocknr);
660 btrfs_set_header_parentid(&c->header,
661 btrfs_header_parentid(&root->node->node.header));
Chris Mason5c680ed2007-02-22 11:39:13 -0500662 lower = &path->nodes[level-1]->node;
Chris Mason7518a232007-03-12 12:01:18 -0400663 if (btrfs_is_leaf(lower))
Chris Mason234b63a2007-03-13 10:46:10 -0400664 lower_key = &((struct btrfs_leaf *)lower)->items[0].key;
Chris Mason5c680ed2007-02-22 11:39:13 -0500665 else
Chris Mason123abc82007-03-14 14:14:43 -0400666 lower_key = &lower->ptrs[0].key;
667 memcpy(&c->ptrs[0].key, lower_key, sizeof(struct btrfs_disk_key));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400668 btrfs_set_node_blockptr(c, 0, path->nodes[level - 1]->blocknr);
Chris Mason5c680ed2007-02-22 11:39:13 -0500669 /* the super has an extra ref to root->node */
Chris Mason234b63a2007-03-13 10:46:10 -0400670 btrfs_block_release(root, root->node);
Chris Mason5c680ed2007-02-22 11:39:13 -0500671 root->node = t;
672 t->count++;
Chris Mason5c680ed2007-02-22 11:39:13 -0500673 path->nodes[level] = t;
674 path->slots[level] = 0;
675 return 0;
676}
677
Chris Mason74123bd2007-02-02 11:05:29 -0500678/*
679 * worker function to insert a single pointer in a node.
680 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -0500681 *
Chris Mason74123bd2007-02-02 11:05:29 -0500682 * slot and level indicate where you want the key to go, and
683 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -0500684 *
685 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -0500686 */
Chris Masone089f052007-03-16 16:20:31 -0400687static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
688 *root, struct btrfs_path *path, struct btrfs_disk_key
689 *key, u64 blocknr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -0500690{
Chris Mason234b63a2007-03-13 10:46:10 -0400691 struct btrfs_node *lower;
Chris Mason74123bd2007-02-02 11:05:29 -0500692 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -0500693
694 BUG_ON(!path->nodes[level]);
Chris Mason74123bd2007-02-02 11:05:29 -0500695 lower = &path->nodes[level]->node;
Chris Mason7518a232007-03-12 12:01:18 -0400696 nritems = btrfs_header_nritems(&lower->header);
Chris Mason74123bd2007-02-02 11:05:29 -0500697 if (slot > nritems)
698 BUG();
Chris Mason123abc82007-03-14 14:14:43 -0400699 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -0500700 BUG();
701 if (slot != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -0400702 memmove(lower->ptrs + slot + 1, lower->ptrs + slot,
703 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -0500704 }
Chris Mason123abc82007-03-14 14:14:43 -0400705 memcpy(&lower->ptrs[slot].key, key, sizeof(struct btrfs_disk_key));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400706 btrfs_set_node_blockptr(lower, slot, blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400707 btrfs_set_header_nritems(&lower->header, nritems + 1);
Chris Mason02217ed2007-03-02 16:08:05 -0500708 BUG_ON(list_empty(&path->nodes[level]->dirty));
Chris Mason74123bd2007-02-02 11:05:29 -0500709 return 0;
710}
711
Chris Mason97571fd2007-02-24 13:39:08 -0500712/*
713 * split the node at the specified level in path in two.
714 * The path is corrected to point to the appropriate node after the split
715 *
716 * Before splitting this tries to make some room in the node by pushing
717 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -0500718 *
719 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -0500720 */
Chris Masone089f052007-03-16 16:20:31 -0400721static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
722 *root, struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500723{
Chris Mason234b63a2007-03-13 10:46:10 -0400724 struct btrfs_buffer *t;
725 struct btrfs_node *c;
726 struct btrfs_buffer *split_buffer;
727 struct btrfs_node *split;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500728 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -0500729 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500730 int wret;
Chris Mason7518a232007-03-12 12:01:18 -0400731 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500732
Chris Mason5c680ed2007-02-22 11:39:13 -0500733 t = path->nodes[level];
734 c = &t->node;
735 if (t == root->node) {
736 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -0400737 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -0500738 if (ret)
739 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500740 }
Chris Mason7518a232007-03-12 12:01:18 -0400741 c_nritems = btrfs_header_nritems(&c->header);
Chris Masone089f052007-03-16 16:20:31 -0400742 split_buffer = btrfs_alloc_free_block(trans, root);
Chris Mason5c680ed2007-02-22 11:39:13 -0500743 split = &split_buffer->node;
Chris Mason7518a232007-03-12 12:01:18 -0400744 btrfs_set_header_flags(&split->header, btrfs_header_flags(&c->header));
745 btrfs_set_header_blocknr(&split->header, split_buffer->blocknr);
746 btrfs_set_header_parentid(&split->header,
747 btrfs_header_parentid(&root->node->node.header));
748 mid = (c_nritems + 1) / 2;
Chris Mason123abc82007-03-14 14:14:43 -0400749 memcpy(split->ptrs, c->ptrs + mid,
750 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
Chris Mason7518a232007-03-12 12:01:18 -0400751 btrfs_set_header_nritems(&split->header, c_nritems - mid);
752 btrfs_set_header_nritems(&c->header, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500753 ret = 0;
754
Chris Mason02217ed2007-03-02 16:08:05 -0500755 BUG_ON(list_empty(&t->dirty));
Chris Masone089f052007-03-16 16:20:31 -0400756 wret = insert_ptr(trans, root, path, &split->ptrs[0].key,
Chris Mason123abc82007-03-14 14:14:43 -0400757 split_buffer->blocknr, path->slots[level + 1] + 1,
758 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500759 if (wret)
760 ret = wret;
761
Chris Mason5de08d72007-02-24 06:24:44 -0500762 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -0500763 path->slots[level] -= mid;
Chris Mason234b63a2007-03-13 10:46:10 -0400764 btrfs_block_release(root, t);
Chris Mason5c680ed2007-02-22 11:39:13 -0500765 path->nodes[level] = split_buffer;
766 path->slots[level + 1] += 1;
767 } else {
Chris Mason234b63a2007-03-13 10:46:10 -0400768 btrfs_block_release(root, split_buffer);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500769 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500770 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500771}
772
Chris Mason74123bd2007-02-02 11:05:29 -0500773/*
774 * how many bytes are required to store the items in a leaf. start
775 * and nr indicate which items in the leaf to check. This totals up the
776 * space used both by the item structs and the item data
777 */
Chris Mason234b63a2007-03-13 10:46:10 -0400778static int leaf_space_used(struct btrfs_leaf *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500779{
780 int data_len;
781 int end = start + nr - 1;
782
783 if (!nr)
784 return 0;
Chris Mason0783fcf2007-03-12 20:12:07 -0400785 data_len = btrfs_item_end(l->items + start);
786 data_len = data_len - btrfs_item_offset(l->items + end);
787 data_len += sizeof(struct btrfs_item) * nr;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500788 return data_len;
789}
790
Chris Mason74123bd2007-02-02 11:05:29 -0500791/*
Chris Mason00ec4c52007-02-24 12:47:20 -0500792 * push some data in the path leaf to the right, trying to free up at
793 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Masonaa5d6be2007-02-28 16:35:06 -0500794 *
795 * returns 1 if the push failed because the other node didn't have enough
796 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason00ec4c52007-02-24 12:47:20 -0500797 */
Chris Masone089f052007-03-16 16:20:31 -0400798static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
799 *root, struct btrfs_path *path, int data_size)
Chris Mason00ec4c52007-02-24 12:47:20 -0500800{
Chris Mason234b63a2007-03-13 10:46:10 -0400801 struct btrfs_buffer *left_buf = path->nodes[0];
802 struct btrfs_leaf *left = &left_buf->leaf;
803 struct btrfs_leaf *right;
804 struct btrfs_buffer *right_buf;
805 struct btrfs_buffer *upper;
Chris Mason00ec4c52007-02-24 12:47:20 -0500806 int slot;
807 int i;
808 int free_space;
809 int push_space = 0;
810 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -0400811 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -0400812 u32 left_nritems;
813 u32 right_nritems;
Chris Mason00ec4c52007-02-24 12:47:20 -0500814
815 slot = path->slots[1];
816 if (!path->nodes[1]) {
817 return 1;
818 }
819 upper = path->nodes[1];
Chris Mason7518a232007-03-12 12:01:18 -0400820 if (slot >= btrfs_header_nritems(&upper->node.header) - 1) {
Chris Mason00ec4c52007-02-24 12:47:20 -0500821 return 1;
822 }
Chris Mason1d4f8a02007-03-13 09:28:32 -0400823 right_buf = read_tree_block(root, btrfs_node_blockptr(&upper->node,
824 slot + 1));
Chris Mason00ec4c52007-02-24 12:47:20 -0500825 right = &right_buf->leaf;
Chris Mason123abc82007-03-14 14:14:43 -0400826 free_space = btrfs_leaf_free_space(root, right);
Chris Mason0783fcf2007-03-12 20:12:07 -0400827 if (free_space < data_size + sizeof(struct btrfs_item)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400828 btrfs_block_release(root, right_buf);
Chris Mason00ec4c52007-02-24 12:47:20 -0500829 return 1;
830 }
Chris Mason02217ed2007-03-02 16:08:05 -0500831 /* cow and double check */
Chris Masone089f052007-03-16 16:20:31 -0400832 btrfs_cow_block(trans, root, right_buf, upper, slot + 1, &right_buf);
Chris Mason02217ed2007-03-02 16:08:05 -0500833 right = &right_buf->leaf;
Chris Mason123abc82007-03-14 14:14:43 -0400834 free_space = btrfs_leaf_free_space(root, right);
Chris Mason0783fcf2007-03-12 20:12:07 -0400835 if (free_space < data_size + sizeof(struct btrfs_item)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400836 btrfs_block_release(root, right_buf);
Chris Mason02217ed2007-03-02 16:08:05 -0500837 return 1;
838 }
839
Chris Mason7518a232007-03-12 12:01:18 -0400840 left_nritems = btrfs_header_nritems(&left->header);
841 for (i = left_nritems - 1; i >= 0; i--) {
Chris Mason00ec4c52007-02-24 12:47:20 -0500842 item = left->items + i;
843 if (path->slots[0] == i)
844 push_space += data_size + sizeof(*item);
Chris Mason0783fcf2007-03-12 20:12:07 -0400845 if (btrfs_item_size(item) + sizeof(*item) + push_space >
846 free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -0500847 break;
848 push_items++;
Chris Mason0783fcf2007-03-12 20:12:07 -0400849 push_space += btrfs_item_size(item) + sizeof(*item);
Chris Mason00ec4c52007-02-24 12:47:20 -0500850 }
851 if (push_items == 0) {
Chris Mason234b63a2007-03-13 10:46:10 -0400852 btrfs_block_release(root, right_buf);
Chris Mason00ec4c52007-02-24 12:47:20 -0500853 return 1;
854 }
Chris Mason7518a232007-03-12 12:01:18 -0400855 right_nritems = btrfs_header_nritems(&right->header);
Chris Mason00ec4c52007-02-24 12:47:20 -0500856 /* push left to right */
Chris Mason0783fcf2007-03-12 20:12:07 -0400857 push_space = btrfs_item_end(left->items + left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -0400858 push_space -= leaf_data_end(root, left);
Chris Mason00ec4c52007-02-24 12:47:20 -0500859 /* make room in the right data area */
Chris Mason123abc82007-03-14 14:14:43 -0400860 memmove(btrfs_leaf_data(right) + leaf_data_end(root, right) -
861 push_space, btrfs_leaf_data(right) + leaf_data_end(root, right),
862 BTRFS_LEAF_DATA_SIZE(root) - leaf_data_end(root, right));
Chris Mason00ec4c52007-02-24 12:47:20 -0500863 /* copy from the left data area */
Chris Mason123abc82007-03-14 14:14:43 -0400864 memcpy(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) - push_space,
865 btrfs_leaf_data(left) + leaf_data_end(root, left), push_space);
Chris Mason00ec4c52007-02-24 12:47:20 -0500866 memmove(right->items + push_items, right->items,
Chris Mason0783fcf2007-03-12 20:12:07 -0400867 right_nritems * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -0500868 /* copy the items from left to right */
Chris Mason7518a232007-03-12 12:01:18 -0400869 memcpy(right->items, left->items + left_nritems - push_items,
Chris Mason0783fcf2007-03-12 20:12:07 -0400870 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -0500871
872 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -0400873 right_nritems += push_items;
874 btrfs_set_header_nritems(&right->header, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -0400875 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -0400876 for (i = 0; i < right_nritems; i++) {
Chris Mason0783fcf2007-03-12 20:12:07 -0400877 btrfs_set_item_offset(right->items + i, push_space -
878 btrfs_item_size(right->items + i));
879 push_space = btrfs_item_offset(right->items + i);
Chris Mason00ec4c52007-02-24 12:47:20 -0500880 }
Chris Mason7518a232007-03-12 12:01:18 -0400881 left_nritems -= push_items;
882 btrfs_set_header_nritems(&left->header, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -0500883
Chris Mason02217ed2007-03-02 16:08:05 -0500884 BUG_ON(list_empty(&left_buf->dirty));
885 BUG_ON(list_empty(&right_buf->dirty));
Chris Mason123abc82007-03-14 14:14:43 -0400886 memcpy(&upper->node.ptrs[slot + 1].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400887 &right->items[0].key, sizeof(struct btrfs_disk_key));
Chris Mason02217ed2007-03-02 16:08:05 -0500888 BUG_ON(list_empty(&upper->dirty));
889
Chris Mason00ec4c52007-02-24 12:47:20 -0500890 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -0400891 if (path->slots[0] >= left_nritems) {
892 path->slots[0] -= left_nritems;
Chris Mason234b63a2007-03-13 10:46:10 -0400893 btrfs_block_release(root, path->nodes[0]);
Chris Mason00ec4c52007-02-24 12:47:20 -0500894 path->nodes[0] = right_buf;
895 path->slots[1] += 1;
896 } else {
Chris Mason234b63a2007-03-13 10:46:10 -0400897 btrfs_block_release(root, right_buf);
Chris Mason00ec4c52007-02-24 12:47:20 -0500898 }
899 return 0;
900}
901/*
Chris Mason74123bd2007-02-02 11:05:29 -0500902 * push some data in the path leaf to the left, trying to free up at
903 * least data_size bytes. returns zero if the push worked, nonzero otherwise
904 */
Chris Masone089f052007-03-16 16:20:31 -0400905static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
906 *root, struct btrfs_path *path, int data_size)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500907{
Chris Mason234b63a2007-03-13 10:46:10 -0400908 struct btrfs_buffer *right_buf = path->nodes[0];
909 struct btrfs_leaf *right = &right_buf->leaf;
910 struct btrfs_buffer *t;
911 struct btrfs_leaf *left;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500912 int slot;
913 int i;
914 int free_space;
915 int push_space = 0;
916 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -0400917 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -0400918 u32 old_left_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500919 int ret = 0;
920 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500921
922 slot = path->slots[1];
923 if (slot == 0) {
924 return 1;
925 }
926 if (!path->nodes[1]) {
927 return 1;
928 }
Chris Mason1d4f8a02007-03-13 09:28:32 -0400929 t = read_tree_block(root, btrfs_node_blockptr(&path->nodes[1]->node,
930 slot - 1));
Chris Masoneb60cea2007-02-02 09:18:22 -0500931 left = &t->leaf;
Chris Mason123abc82007-03-14 14:14:43 -0400932 free_space = btrfs_leaf_free_space(root, left);
Chris Mason0783fcf2007-03-12 20:12:07 -0400933 if (free_space < data_size + sizeof(struct btrfs_item)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400934 btrfs_block_release(root, t);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500935 return 1;
936 }
Chris Mason02217ed2007-03-02 16:08:05 -0500937
938 /* cow and double check */
Chris Masone089f052007-03-16 16:20:31 -0400939 btrfs_cow_block(trans, root, t, path->nodes[1], slot - 1, &t);
Chris Mason02217ed2007-03-02 16:08:05 -0500940 left = &t->leaf;
Chris Mason123abc82007-03-14 14:14:43 -0400941 free_space = btrfs_leaf_free_space(root, left);
Chris Mason0783fcf2007-03-12 20:12:07 -0400942 if (free_space < data_size + sizeof(struct btrfs_item)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400943 btrfs_block_release(root, t);
Chris Mason02217ed2007-03-02 16:08:05 -0500944 return 1;
945 }
946
Chris Mason7518a232007-03-12 12:01:18 -0400947 for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500948 item = right->items + i;
949 if (path->slots[0] == i)
950 push_space += data_size + sizeof(*item);
Chris Mason0783fcf2007-03-12 20:12:07 -0400951 if (btrfs_item_size(item) + sizeof(*item) + push_space >
952 free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500953 break;
954 push_items++;
Chris Mason0783fcf2007-03-12 20:12:07 -0400955 push_space += btrfs_item_size(item) + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500956 }
957 if (push_items == 0) {
Chris Mason234b63a2007-03-13 10:46:10 -0400958 btrfs_block_release(root, t);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500959 return 1;
960 }
961 /* push data from right to left */
Chris Mason7518a232007-03-12 12:01:18 -0400962 memcpy(left->items + btrfs_header_nritems(&left->header),
Chris Mason0783fcf2007-03-12 20:12:07 -0400963 right->items, push_items * sizeof(struct btrfs_item));
Chris Mason123abc82007-03-14 14:14:43 -0400964 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Mason0783fcf2007-03-12 20:12:07 -0400965 btrfs_item_offset(right->items + push_items -1);
Chris Mason123abc82007-03-14 14:14:43 -0400966 memcpy(btrfs_leaf_data(left) + leaf_data_end(root, left) - push_space,
967 btrfs_leaf_data(right) +
968 btrfs_item_offset(right->items + push_items - 1),
Chris Masonbe0e5c02007-01-26 15:51:26 -0500969 push_space);
Chris Mason7518a232007-03-12 12:01:18 -0400970 old_left_nritems = btrfs_header_nritems(&left->header);
Chris Masoneb60cea2007-02-02 09:18:22 -0500971 BUG_ON(old_left_nritems < 0);
972
Chris Mason0783fcf2007-03-12 20:12:07 -0400973 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason123abc82007-03-14 14:14:43 -0400974 u32 ioff = btrfs_item_offset(left->items + i);
975 btrfs_set_item_offset(left->items + i, ioff -
976 (BTRFS_LEAF_DATA_SIZE(root) -
Chris Mason0783fcf2007-03-12 20:12:07 -0400977 btrfs_item_offset(left->items +
978 old_left_nritems - 1)));
Chris Masonbe0e5c02007-01-26 15:51:26 -0500979 }
Chris Mason7518a232007-03-12 12:01:18 -0400980 btrfs_set_header_nritems(&left->header, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500981
982 /* fixup right node */
Chris Mason0783fcf2007-03-12 20:12:07 -0400983 push_space = btrfs_item_offset(right->items + push_items - 1) -
Chris Mason123abc82007-03-14 14:14:43 -0400984 leaf_data_end(root, right);
985 memmove(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
986 push_space, btrfs_leaf_data(right) +
987 leaf_data_end(root, right), push_space);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500988 memmove(right->items, right->items + push_items,
Chris Mason7518a232007-03-12 12:01:18 -0400989 (btrfs_header_nritems(&right->header) - push_items) *
Chris Mason0783fcf2007-03-12 20:12:07 -0400990 sizeof(struct btrfs_item));
Chris Mason7518a232007-03-12 12:01:18 -0400991 btrfs_set_header_nritems(&right->header,
992 btrfs_header_nritems(&right->header) -
993 push_items);
Chris Mason123abc82007-03-14 14:14:43 -0400994 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Masoneb60cea2007-02-02 09:18:22 -0500995
Chris Mason7518a232007-03-12 12:01:18 -0400996 for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
Chris Mason0783fcf2007-03-12 20:12:07 -0400997 btrfs_set_item_offset(right->items + i, push_space -
998 btrfs_item_size(right->items + i));
999 push_space = btrfs_item_offset(right->items + i);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001000 }
Chris Masoneb60cea2007-02-02 09:18:22 -05001001
Chris Mason02217ed2007-03-02 16:08:05 -05001002 BUG_ON(list_empty(&t->dirty));
1003 BUG_ON(list_empty(&right_buf->dirty));
Chris Masoneb60cea2007-02-02 09:18:22 -05001004
Chris Masone089f052007-03-16 16:20:31 -04001005 wret = fixup_low_keys(trans, root, path, &right->items[0].key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001006 if (wret)
1007 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001008
1009 /* then fixup the leaf pointer in the path */
1010 if (path->slots[0] < push_items) {
1011 path->slots[0] += old_left_nritems;
Chris Mason234b63a2007-03-13 10:46:10 -04001012 btrfs_block_release(root, path->nodes[0]);
Chris Masoneb60cea2007-02-02 09:18:22 -05001013 path->nodes[0] = t;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001014 path->slots[1] -= 1;
1015 } else {
Chris Mason234b63a2007-03-13 10:46:10 -04001016 btrfs_block_release(root, t);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001017 path->slots[0] -= push_items;
1018 }
Chris Masoneb60cea2007-02-02 09:18:22 -05001019 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001020 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001021}
1022
Chris Mason74123bd2007-02-02 11:05:29 -05001023/*
1024 * split the path's leaf in two, making sure there is at least data_size
1025 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001026 *
1027 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05001028 */
Chris Masone089f052007-03-16 16:20:31 -04001029static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
1030 *root, struct btrfs_path *path, int data_size)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001031{
Chris Mason234b63a2007-03-13 10:46:10 -04001032 struct btrfs_buffer *l_buf;
1033 struct btrfs_leaf *l;
Chris Mason7518a232007-03-12 12:01:18 -04001034 u32 nritems;
Chris Masoneb60cea2007-02-02 09:18:22 -05001035 int mid;
1036 int slot;
Chris Mason234b63a2007-03-13 10:46:10 -04001037 struct btrfs_leaf *right;
1038 struct btrfs_buffer *right_buffer;
Chris Mason0783fcf2007-03-12 20:12:07 -04001039 int space_needed = data_size + sizeof(struct btrfs_item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001040 int data_copy_size;
1041 int rt_data_off;
1042 int i;
1043 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001044 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001045
Chris Masone089f052007-03-16 16:20:31 -04001046 wret = push_leaf_left(trans, root, path, data_size);
Chris Masoneaee50e2007-03-13 11:17:52 -04001047 if (wret < 0)
1048 return wret;
1049 if (wret) {
Chris Masone089f052007-03-16 16:20:31 -04001050 wret = push_leaf_right(trans, root, path, data_size);
Chris Masoneaee50e2007-03-13 11:17:52 -04001051 if (wret < 0)
1052 return wret;
1053 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001054 l_buf = path->nodes[0];
1055 l = &l_buf->leaf;
1056
1057 /* did the pushes work? */
Chris Mason123abc82007-03-14 14:14:43 -04001058 if (btrfs_leaf_free_space(root, l) >=
1059 sizeof(struct btrfs_item) + data_size)
Chris Masonaa5d6be2007-02-28 16:35:06 -05001060 return 0;
1061
Chris Mason5c680ed2007-02-22 11:39:13 -05001062 if (!path->nodes[1]) {
Chris Masone089f052007-03-16 16:20:31 -04001063 ret = insert_new_root(trans, root, path, 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05001064 if (ret)
1065 return ret;
1066 }
Chris Masoneb60cea2007-02-02 09:18:22 -05001067 slot = path->slots[0];
Chris Mason7518a232007-03-12 12:01:18 -04001068 nritems = btrfs_header_nritems(&l->header);
Chris Masoneb60cea2007-02-02 09:18:22 -05001069 mid = (nritems + 1)/ 2;
Chris Masone089f052007-03-16 16:20:31 -04001070 right_buffer = btrfs_alloc_free_block(trans, root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001071 BUG_ON(!right_buffer);
1072 BUG_ON(mid == nritems);
1073 right = &right_buffer->leaf;
Chris Mason123abc82007-03-14 14:14:43 -04001074 memset(&right->header, 0, sizeof(right->header));
Chris Masonbe0e5c02007-01-26 15:51:26 -05001075 if (mid <= slot) {
Chris Mason97571fd2007-02-24 13:39:08 -05001076 /* FIXME, just alloc a new leaf here */
Chris Masonbe0e5c02007-01-26 15:51:26 -05001077 if (leaf_space_used(l, mid, nritems - mid) + space_needed >
Chris Mason123abc82007-03-14 14:14:43 -04001078 BTRFS_LEAF_DATA_SIZE(root))
Chris Masonbe0e5c02007-01-26 15:51:26 -05001079 BUG();
1080 } else {
Chris Mason97571fd2007-02-24 13:39:08 -05001081 /* FIXME, just alloc a new leaf here */
Chris Masonbe0e5c02007-01-26 15:51:26 -05001082 if (leaf_space_used(l, 0, mid + 1) + space_needed >
Chris Mason123abc82007-03-14 14:14:43 -04001083 BTRFS_LEAF_DATA_SIZE(root))
Chris Masonbe0e5c02007-01-26 15:51:26 -05001084 BUG();
1085 }
Chris Mason7518a232007-03-12 12:01:18 -04001086 btrfs_set_header_nritems(&right->header, nritems - mid);
1087 btrfs_set_header_blocknr(&right->header, right_buffer->blocknr);
1088 btrfs_set_header_level(&right->header, 0);
1089 btrfs_set_header_parentid(&right->header,
1090 btrfs_header_parentid(&root->node->node.header));
Chris Mason123abc82007-03-14 14:14:43 -04001091 data_copy_size = btrfs_item_end(l->items + mid) -
1092 leaf_data_end(root, l);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001093 memcpy(right->items, l->items + mid,
Chris Mason0783fcf2007-03-12 20:12:07 -04001094 (nritems - mid) * sizeof(struct btrfs_item));
Chris Mason123abc82007-03-14 14:14:43 -04001095 memcpy(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
1096 data_copy_size, btrfs_leaf_data(l) +
1097 leaf_data_end(root, l), data_copy_size);
1098 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
1099 btrfs_item_end(l->items + mid);
Chris Mason74123bd2007-02-02 11:05:29 -05001100
Chris Mason0783fcf2007-03-12 20:12:07 -04001101 for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
Chris Mason123abc82007-03-14 14:14:43 -04001102 u32 ioff = btrfs_item_offset(right->items + i);
Chris Mason0783fcf2007-03-12 20:12:07 -04001103 btrfs_set_item_offset(right->items + i, ioff + rt_data_off);
1104 }
Chris Mason74123bd2007-02-02 11:05:29 -05001105
Chris Mason7518a232007-03-12 12:01:18 -04001106 btrfs_set_header_nritems(&l->header, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001107 ret = 0;
Chris Masone089f052007-03-16 16:20:31 -04001108 wret = insert_ptr(trans, root, path, &right->items[0].key,
Chris Mason5c680ed2007-02-22 11:39:13 -05001109 right_buffer->blocknr, path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001110 if (wret)
1111 ret = wret;
Chris Mason02217ed2007-03-02 16:08:05 -05001112 BUG_ON(list_empty(&right_buffer->dirty));
1113 BUG_ON(list_empty(&l_buf->dirty));
Chris Masoneb60cea2007-02-02 09:18:22 -05001114 BUG_ON(path->slots[0] != slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001115 if (mid <= slot) {
Chris Mason234b63a2007-03-13 10:46:10 -04001116 btrfs_block_release(root, path->nodes[0]);
Chris Masoneb60cea2007-02-02 09:18:22 -05001117 path->nodes[0] = right_buffer;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001118 path->slots[0] -= mid;
1119 path->slots[1] += 1;
Chris Masoneb60cea2007-02-02 09:18:22 -05001120 } else
Chris Mason234b63a2007-03-13 10:46:10 -04001121 btrfs_block_release(root, right_buffer);
Chris Masoneb60cea2007-02-02 09:18:22 -05001122 BUG_ON(path->slots[0] < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001123 return ret;
1124}
1125
Chris Mason74123bd2007-02-02 11:05:29 -05001126/*
1127 * Given a key and some data, insert an item into the tree.
1128 * This does all the path init required, making room in the tree if needed.
1129 */
Chris Masone089f052007-03-16 16:20:31 -04001130int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
1131 *root, struct btrfs_path *path, struct btrfs_key
1132 *cpu_key, u32 data_size)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001133{
Chris Masonaa5d6be2007-02-28 16:35:06 -05001134 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001135 int slot;
Chris Masoneb60cea2007-02-02 09:18:22 -05001136 int slot_orig;
Chris Mason234b63a2007-03-13 10:46:10 -04001137 struct btrfs_leaf *leaf;
1138 struct btrfs_buffer *leaf_buf;
Chris Mason7518a232007-03-12 12:01:18 -04001139 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001140 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04001141 struct btrfs_disk_key disk_key;
1142
1143 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001144
Chris Mason74123bd2007-02-02 11:05:29 -05001145 /* create a root if there isn't one */
Chris Mason5c680ed2007-02-22 11:39:13 -05001146 if (!root->node)
Chris Masoncfaa7292007-02-21 17:04:57 -05001147 BUG();
Chris Masone089f052007-03-16 16:20:31 -04001148 ret = btrfs_search_slot(trans, root, cpu_key, path, data_size, 1);
Chris Masoneb60cea2007-02-02 09:18:22 -05001149 if (ret == 0) {
Chris Mason62e27492007-03-15 12:56:47 -04001150 btrfs_release_path(root, path);
Chris Masonf0930a32007-03-02 09:47:58 -05001151 return -EEXIST;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001152 }
Chris Masoned2ff2c2007-03-01 18:59:40 -05001153 if (ret < 0)
1154 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001155
Chris Mason62e27492007-03-15 12:56:47 -04001156 slot_orig = path->slots[0];
1157 leaf_buf = path->nodes[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05001158 leaf = &leaf_buf->leaf;
Chris Mason74123bd2007-02-02 11:05:29 -05001159
Chris Mason7518a232007-03-12 12:01:18 -04001160 nritems = btrfs_header_nritems(&leaf->header);
Chris Mason123abc82007-03-14 14:14:43 -04001161 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001162
Chris Mason123abc82007-03-14 14:14:43 -04001163 if (btrfs_leaf_free_space(root, leaf) <
Chris Mason234b63a2007-03-13 10:46:10 -04001164 sizeof(struct btrfs_item) + data_size)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001165 BUG();
1166
Chris Mason62e27492007-03-15 12:56:47 -04001167 slot = path->slots[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05001168 BUG_ON(slot < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001169 if (slot != nritems) {
1170 int i;
Chris Mason0783fcf2007-03-12 20:12:07 -04001171 unsigned int old_data = btrfs_item_end(leaf->items + slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001172
1173 /*
1174 * item0..itemN ... dataN.offset..dataN.size .. data0.size
1175 */
1176 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04001177 for (i = slot; i < nritems; i++) {
Chris Mason123abc82007-03-14 14:14:43 -04001178 u32 ioff = btrfs_item_offset(leaf->items + i);
Chris Mason0783fcf2007-03-12 20:12:07 -04001179 btrfs_set_item_offset(leaf->items + i,
1180 ioff - data_size);
1181 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001182
1183 /* shift the items */
1184 memmove(leaf->items + slot + 1, leaf->items + slot,
Chris Mason0783fcf2007-03-12 20:12:07 -04001185 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05001186
1187 /* shift the data */
Chris Mason123abc82007-03-14 14:14:43 -04001188 memmove(btrfs_leaf_data(leaf) + data_end - data_size,
1189 btrfs_leaf_data(leaf) +
Chris Masonbe0e5c02007-01-26 15:51:26 -05001190 data_end, old_data - data_end);
1191 data_end = old_data;
1192 }
Chris Mason62e27492007-03-15 12:56:47 -04001193 /* setup the item for the new data */
Chris Masone2fa7222007-03-12 16:22:34 -04001194 memcpy(&leaf->items[slot].key, &disk_key,
1195 sizeof(struct btrfs_disk_key));
Chris Mason0783fcf2007-03-12 20:12:07 -04001196 btrfs_set_item_offset(leaf->items + slot, data_end - data_size);
1197 btrfs_set_item_size(leaf->items + slot, data_size);
Chris Mason7518a232007-03-12 12:01:18 -04001198 btrfs_set_header_nritems(&leaf->header, nritems + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001199
1200 ret = 0;
Chris Mason8e19f2c2007-02-28 09:27:02 -05001201 if (slot == 0)
Chris Masone089f052007-03-16 16:20:31 -04001202 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001203
Chris Mason02217ed2007-03-02 16:08:05 -05001204 BUG_ON(list_empty(&leaf_buf->dirty));
Chris Mason123abc82007-03-14 14:14:43 -04001205 if (btrfs_leaf_free_space(root, leaf) < 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001206 BUG();
Chris Mason62e27492007-03-15 12:56:47 -04001207 check_leaf(root, path, 0);
Chris Masoned2ff2c2007-03-01 18:59:40 -05001208out:
Chris Mason62e27492007-03-15 12:56:47 -04001209 return ret;
1210}
1211
1212/*
1213 * Given a key and some data, insert an item into the tree.
1214 * This does all the path init required, making room in the tree if needed.
1215 */
Chris Masone089f052007-03-16 16:20:31 -04001216int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1217 *root, struct btrfs_key *cpu_key, void *data, u32
1218 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04001219{
1220 int ret = 0;
1221 struct btrfs_path path;
1222 u8 *ptr;
1223
1224 btrfs_init_path(&path);
Chris Masone089f052007-03-16 16:20:31 -04001225 ret = btrfs_insert_empty_item(trans, root, &path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04001226 if (!ret) {
1227 ptr = btrfs_item_ptr(&path.nodes[0]->leaf, path.slots[0], u8);
1228 memcpy(ptr, data, data_size);
1229 }
Chris Mason234b63a2007-03-13 10:46:10 -04001230 btrfs_release_path(root, &path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001231 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001232}
1233
Chris Mason74123bd2007-02-02 11:05:29 -05001234/*
Chris Mason5de08d72007-02-24 06:24:44 -05001235 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05001236 *
1237 * If the delete empties a node, the node is removed from the tree,
1238 * continuing all the way the root if required. The root is converted into
1239 * a leaf if all the nodes are emptied.
1240 */
Chris Masone089f052007-03-16 16:20:31 -04001241static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1242 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001243{
Chris Mason234b63a2007-03-13 10:46:10 -04001244 struct btrfs_node *node;
1245 struct btrfs_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04001246 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001247 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001248 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001249
Chris Masonbb803952007-03-01 12:04:21 -05001250 node = &parent->node;
Chris Mason7518a232007-03-12 12:01:18 -04001251 nritems = btrfs_header_nritems(&node->header);
Chris Masonbb803952007-03-01 12:04:21 -05001252 if (slot != nritems -1) {
Chris Mason123abc82007-03-14 14:14:43 -04001253 memmove(node->ptrs + slot, node->ptrs + slot + 1,
1254 sizeof(struct btrfs_key_ptr) * (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05001255 }
Chris Mason7518a232007-03-12 12:01:18 -04001256 nritems--;
1257 btrfs_set_header_nritems(&node->header, nritems);
1258 if (nritems == 0 && parent == root->node) {
1259 BUG_ON(btrfs_header_level(&root->node->node.header) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05001260 /* just turn the root into a leaf and break */
Chris Mason7518a232007-03-12 12:01:18 -04001261 btrfs_set_header_level(&root->node->node.header, 0);
Chris Masonbb803952007-03-01 12:04:21 -05001262 } else if (slot == 0) {
Chris Masone089f052007-03-16 16:20:31 -04001263 wret = fixup_low_keys(trans, root, path, &node->ptrs[0].key,
Chris Mason123abc82007-03-14 14:14:43 -04001264 level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05001265 if (wret)
1266 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001267 }
Chris Mason02217ed2007-03-02 16:08:05 -05001268 BUG_ON(list_empty(&parent->dirty));
Chris Masonaa5d6be2007-02-28 16:35:06 -05001269 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001270}
1271
Chris Mason74123bd2007-02-02 11:05:29 -05001272/*
1273 * delete the item at the leaf level in path. If that empties
1274 * the leaf, remove it from the tree
1275 */
Chris Masone089f052007-03-16 16:20:31 -04001276int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1277 struct btrfs_path *path)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001278{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001279 int slot;
Chris Mason234b63a2007-03-13 10:46:10 -04001280 struct btrfs_leaf *leaf;
1281 struct btrfs_buffer *leaf_buf;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001282 int doff;
1283 int dsize;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001284 int ret = 0;
1285 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04001286 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001287
Chris Masoneb60cea2007-02-02 09:18:22 -05001288 leaf_buf = path->nodes[0];
1289 leaf = &leaf_buf->leaf;
Chris Mason4920c9a2007-01-26 16:38:42 -05001290 slot = path->slots[0];
Chris Mason0783fcf2007-03-12 20:12:07 -04001291 doff = btrfs_item_offset(leaf->items + slot);
1292 dsize = btrfs_item_size(leaf->items + slot);
Chris Mason7518a232007-03-12 12:01:18 -04001293 nritems = btrfs_header_nritems(&leaf->header);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001294
Chris Mason7518a232007-03-12 12:01:18 -04001295 if (slot != nritems - 1) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001296 int i;
Chris Mason123abc82007-03-14 14:14:43 -04001297 int data_end = leaf_data_end(root, leaf);
1298 memmove(btrfs_leaf_data(leaf) + data_end + dsize,
1299 btrfs_leaf_data(leaf) + data_end,
Chris Masonbe0e5c02007-01-26 15:51:26 -05001300 doff - data_end);
Chris Mason0783fcf2007-03-12 20:12:07 -04001301 for (i = slot + 1; i < nritems; i++) {
Chris Mason123abc82007-03-14 14:14:43 -04001302 u32 ioff = btrfs_item_offset(leaf->items + i);
Chris Mason0783fcf2007-03-12 20:12:07 -04001303 btrfs_set_item_offset(leaf->items + i, ioff + dsize);
1304 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001305 memmove(leaf->items + slot, leaf->items + slot + 1,
Chris Mason0783fcf2007-03-12 20:12:07 -04001306 sizeof(struct btrfs_item) *
Chris Mason7518a232007-03-12 12:01:18 -04001307 (nritems - slot - 1));
Chris Masonbe0e5c02007-01-26 15:51:26 -05001308 }
Chris Mason7518a232007-03-12 12:01:18 -04001309 btrfs_set_header_nritems(&leaf->header, nritems - 1);
1310 nritems--;
Chris Mason74123bd2007-02-02 11:05:29 -05001311 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04001312 if (nritems == 0) {
Chris Masoneb60cea2007-02-02 09:18:22 -05001313 if (leaf_buf == root->node) {
Chris Mason7518a232007-03-12 12:01:18 -04001314 btrfs_set_header_level(&leaf->header, 0);
Chris Mason02217ed2007-03-02 16:08:05 -05001315 BUG_ON(list_empty(&leaf_buf->dirty));
Chris Mason9a8dd152007-02-23 08:38:36 -05001316 } else {
Chris Masone089f052007-03-16 16:20:31 -04001317 clean_tree_block(trans, root, leaf_buf);
1318 wret = del_ptr(trans, root, path, 1, path->slots[1]);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001319 if (wret)
1320 ret = wret;
Chris Masone089f052007-03-16 16:20:31 -04001321 wret = btrfs_free_extent(trans, root,
1322 leaf_buf->blocknr, 1, 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05001323 if (wret)
1324 ret = wret;
Chris Mason9a8dd152007-02-23 08:38:36 -05001325 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001326 } else {
Chris Mason7518a232007-03-12 12:01:18 -04001327 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001328 if (slot == 0) {
Chris Masone089f052007-03-16 16:20:31 -04001329 wret = fixup_low_keys(trans, root, path,
1330 &leaf->items[0].key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001331 if (wret)
1332 ret = wret;
1333 }
Chris Mason02217ed2007-03-02 16:08:05 -05001334 BUG_ON(list_empty(&leaf_buf->dirty));
Chris Masonaa5d6be2007-02-28 16:35:06 -05001335
Chris Mason74123bd2007-02-02 11:05:29 -05001336 /* delete the leaf if it is mostly empty */
Chris Mason123abc82007-03-14 14:14:43 -04001337 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001338 /* push_leaf_left fixes the path.
1339 * make sure the path still points to our leaf
1340 * for possible call to del_ptr below
1341 */
Chris Mason4920c9a2007-01-26 16:38:42 -05001342 slot = path->slots[1];
Chris Masoneb60cea2007-02-02 09:18:22 -05001343 leaf_buf->count++;
Chris Masone089f052007-03-16 16:20:31 -04001344 wret = push_leaf_left(trans, root, path, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001345 if (wret < 0)
1346 ret = wret;
Chris Masonf0930a32007-03-02 09:47:58 -05001347 if (path->nodes[0] == leaf_buf &&
Chris Mason7518a232007-03-12 12:01:18 -04001348 btrfs_header_nritems(&leaf->header)) {
Chris Masone089f052007-03-16 16:20:31 -04001349 wret = push_leaf_right(trans, root, path, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001350 if (wret < 0)
1351 ret = wret;
1352 }
Chris Mason7518a232007-03-12 12:01:18 -04001353 if (btrfs_header_nritems(&leaf->header) == 0) {
Chris Mason5de08d72007-02-24 06:24:44 -05001354 u64 blocknr = leaf_buf->blocknr;
Chris Masone089f052007-03-16 16:20:31 -04001355 clean_tree_block(trans, root, leaf_buf);
1356 wret = del_ptr(trans, root, path, 1, slot);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001357 if (wret)
1358 ret = wret;
Chris Mason234b63a2007-03-13 10:46:10 -04001359 btrfs_block_release(root, leaf_buf);
Chris Masone089f052007-03-16 16:20:31 -04001360 wret = btrfs_free_extent(trans, root, blocknr,
1361 1, 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05001362 if (wret)
1363 ret = wret;
Chris Mason5de08d72007-02-24 06:24:44 -05001364 } else {
Chris Mason234b63a2007-03-13 10:46:10 -04001365 btrfs_block_release(root, leaf_buf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001366 }
1367 }
1368 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001369 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001370}
1371
Chris Mason97571fd2007-02-24 13:39:08 -05001372/*
1373 * walk up the tree as far as required to find the next leaf.
Chris Mason0f70abe2007-02-28 16:46:22 -05001374 * returns 0 if it found something or 1 if there are no greater leaves.
1375 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05001376 */
Chris Mason234b63a2007-03-13 10:46:10 -04001377int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05001378{
1379 int slot;
1380 int level = 1;
1381 u64 blocknr;
Chris Mason234b63a2007-03-13 10:46:10 -04001382 struct btrfs_buffer *c;
1383 struct btrfs_buffer *next = NULL;
Chris Masond97e63b2007-02-20 16:40:44 -05001384
Chris Mason234b63a2007-03-13 10:46:10 -04001385 while(level < BTRFS_MAX_LEVEL) {
Chris Masond97e63b2007-02-20 16:40:44 -05001386 if (!path->nodes[level])
Chris Mason0f70abe2007-02-28 16:46:22 -05001387 return 1;
Chris Masond97e63b2007-02-20 16:40:44 -05001388 slot = path->slots[level] + 1;
1389 c = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04001390 if (slot >= btrfs_header_nritems(&c->node.header)) {
Chris Masond97e63b2007-02-20 16:40:44 -05001391 level++;
1392 continue;
1393 }
Chris Mason1d4f8a02007-03-13 09:28:32 -04001394 blocknr = btrfs_node_blockptr(&c->node, slot);
Chris Masoncfaa7292007-02-21 17:04:57 -05001395 if (next)
Chris Mason234b63a2007-03-13 10:46:10 -04001396 btrfs_block_release(root, next);
Chris Masond97e63b2007-02-20 16:40:44 -05001397 next = read_tree_block(root, blocknr);
1398 break;
1399 }
1400 path->slots[level] = slot;
1401 while(1) {
1402 level--;
1403 c = path->nodes[level];
Chris Mason234b63a2007-03-13 10:46:10 -04001404 btrfs_block_release(root, c);
Chris Masond97e63b2007-02-20 16:40:44 -05001405 path->nodes[level] = next;
1406 path->slots[level] = 0;
1407 if (!level)
1408 break;
Chris Mason1d4f8a02007-03-13 09:28:32 -04001409 next = read_tree_block(root,
1410 btrfs_node_blockptr(&next->node, 0));
Chris Masond97e63b2007-02-20 16:40:44 -05001411 }
1412 return 0;
1413}