blob: 60a45f3a4e916fe9af5a8c644b3a8eb9b5b73f81 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
Chris Masond352ac62008-09-29 15:18:18 -04002 * Copyright (C) 2007,2008 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Masona6b6e752007-10-15 16:22:39 -040019#include <linux/sched.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050020#include "ctree.h"
21#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040022#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040023#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040024#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050025
Chris Masone089f052007-03-16 16:20:31 -040026static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
27 *root, struct btrfs_path *path, int level);
28static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond4dbff92007-04-04 14:08:15 -040029 *root, struct btrfs_key *ins_key,
Chris Masoncc0c5532007-10-25 15:42:57 -040030 struct btrfs_path *path, int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040031static int push_node_left(struct btrfs_trans_handle *trans,
32 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040033 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040034static int balance_node_right(struct btrfs_trans_handle *trans,
35 struct btrfs_root *root,
36 struct extent_buffer *dst_buf,
37 struct extent_buffer *src_buf);
Chris Masone089f052007-03-16 16:20:31 -040038static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
39 struct btrfs_path *path, int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050040
Chris Mason2c90e5d2007-04-02 10:50:19 -040041struct btrfs_path *btrfs_alloc_path(void)
42{
Chris Masondf24a2b2007-04-04 09:36:31 -040043 struct btrfs_path *path;
Jeff Mahoneye00f7302009-02-12 14:11:25 -050044 path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
45 if (path)
Chris Mason2cc58cf2007-08-27 16:49:44 -040046 path->reada = 1;
Chris Masondf24a2b2007-04-04 09:36:31 -040047 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040048}
49
Chris Masonb4ce94d2009-02-04 09:25:08 -050050/*
51 * set all locked nodes in the path to blocking locks. This should
52 * be done before scheduling
53 */
54noinline void btrfs_set_path_blocking(struct btrfs_path *p)
55{
56 int i;
57 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
58 if (p->nodes[i] && p->locks[i])
59 btrfs_set_lock_blocking(p->nodes[i]);
60 }
61}
62
63/*
64 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050065 *
66 * held is used to keep lockdep happy, when lockdep is enabled
67 * we set held to a blocking lock before we go around and
68 * retake all the spinlocks in the path. You can safely use NULL
69 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050070 */
Chris Mason4008c042009-02-12 14:09:45 -050071noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
72 struct extent_buffer *held)
Chris Masonb4ce94d2009-02-04 09:25:08 -050073{
74 int i;
Chris Mason4008c042009-02-12 14:09:45 -050075
76#ifdef CONFIG_DEBUG_LOCK_ALLOC
77 /* lockdep really cares that we take all of these spinlocks
78 * in the right order. If any of the locks in the path are not
79 * currently blocking, it is going to complain. So, make really
80 * really sure by forcing the path to blocking before we clear
81 * the path blocking.
82 */
83 if (held)
84 btrfs_set_lock_blocking(held);
85 btrfs_set_path_blocking(p);
86#endif
87
88 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonb4ce94d2009-02-04 09:25:08 -050089 if (p->nodes[i] && p->locks[i])
90 btrfs_clear_lock_blocking(p->nodes[i]);
91 }
Chris Mason4008c042009-02-12 14:09:45 -050092
93#ifdef CONFIG_DEBUG_LOCK_ALLOC
94 if (held)
95 btrfs_clear_lock_blocking(held);
96#endif
Chris Masonb4ce94d2009-02-04 09:25:08 -050097}
98
Chris Masond352ac62008-09-29 15:18:18 -040099/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400100void btrfs_free_path(struct btrfs_path *p)
101{
Chris Masondf24a2b2007-04-04 09:36:31 -0400102 btrfs_release_path(NULL, p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400103 kmem_cache_free(btrfs_path_cachep, p);
104}
105
Chris Masond352ac62008-09-29 15:18:18 -0400106/*
107 * path release drops references on the extent buffers in the path
108 * and it drops any locks held by this path
109 *
110 * It is safe to call this on paths that no locks or extent buffers held.
111 */
Chris Masond3977122009-01-05 21:25:51 -0500112noinline void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500113{
114 int i;
Chris Masona2135012008-06-25 16:01:30 -0400115
Chris Mason234b63a2007-03-13 10:46:10 -0400116 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400117 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500118 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400119 continue;
120 if (p->locks[i]) {
121 btrfs_tree_unlock(p->nodes[i]);
122 p->locks[i] = 0;
123 }
Chris Mason5f39d392007-10-15 16:14:19 -0400124 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400125 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500126 }
127}
128
Chris Masond352ac62008-09-29 15:18:18 -0400129/*
130 * safely gets a reference on the root node of a tree. A lock
131 * is not taken, so a concurrent writer may put a different node
132 * at the root of the tree. See btrfs_lock_root_node for the
133 * looping required.
134 *
135 * The extent buffer returned by this has a reference taken, so
136 * it won't disappear. It may stop being the root of the tree
137 * at any time because there are no locks held.
138 */
Chris Mason925baed2008-06-25 16:01:30 -0400139struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
140{
141 struct extent_buffer *eb;
142 spin_lock(&root->node_lock);
143 eb = root->node;
144 extent_buffer_get(eb);
145 spin_unlock(&root->node_lock);
146 return eb;
147}
148
Chris Masond352ac62008-09-29 15:18:18 -0400149/* loop around taking references on and locking the root node of the
150 * tree until you end up with a lock on the root. A locked buffer
151 * is returned, with a reference held.
152 */
Chris Mason925baed2008-06-25 16:01:30 -0400153struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
154{
155 struct extent_buffer *eb;
156
Chris Masond3977122009-01-05 21:25:51 -0500157 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400158 eb = btrfs_root_node(root);
159 btrfs_tree_lock(eb);
160
161 spin_lock(&root->node_lock);
162 if (eb == root->node) {
163 spin_unlock(&root->node_lock);
164 break;
165 }
166 spin_unlock(&root->node_lock);
167
168 btrfs_tree_unlock(eb);
169 free_extent_buffer(eb);
170 }
171 return eb;
172}
173
Chris Masond352ac62008-09-29 15:18:18 -0400174/* cowonly root (everything not a reference counted cow subvolume), just get
175 * put onto a simple dirty list. transaction.c walks this to make sure they
176 * get properly updated on disk.
177 */
Chris Mason0b86a832008-03-24 15:01:56 -0400178static void add_root_to_dirty_list(struct btrfs_root *root)
179{
180 if (root->track_dirty && list_empty(&root->dirty_list)) {
181 list_add(&root->dirty_list,
182 &root->fs_info->dirty_cowonly_roots);
183 }
184}
185
Chris Masond352ac62008-09-29 15:18:18 -0400186/*
187 * used by snapshot creation to make a copy of a root for a tree with
188 * a given objectid. The buffer with the new root node is returned in
189 * cow_ret, and this func returns zero on success or a negative error code.
190 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500191int btrfs_copy_root(struct btrfs_trans_handle *trans,
192 struct btrfs_root *root,
193 struct extent_buffer *buf,
194 struct extent_buffer **cow_ret, u64 new_root_objectid)
195{
196 struct extent_buffer *cow;
197 u32 nritems;
198 int ret = 0;
199 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400200 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500201
202 WARN_ON(root->ref_cows && trans->transid !=
203 root->fs_info->running_transaction->transid);
204 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
205
206 level = btrfs_header_level(buf);
207 nritems = btrfs_header_nritems(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400208 if (level == 0)
209 btrfs_item_key(buf, &disk_key, 0);
210 else
211 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400212
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400213 cow = btrfs_alloc_free_block(trans, root, buf->len, 0,
214 new_root_objectid, &disk_key, level,
215 buf->start, 0);
216 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500217 return PTR_ERR(cow);
218
219 copy_extent_buffer(cow, buf, 0, 0, cow->len);
220 btrfs_set_header_bytenr(cow, cow->start);
221 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400222 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
223 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
224 BTRFS_HEADER_FLAG_RELOC);
225 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
226 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
227 else
228 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500229
Yan Zheng2b820322008-11-17 21:11:30 -0500230 write_extent_buffer(cow, root->fs_info->fsid,
231 (unsigned long)btrfs_header_fsid(cow),
232 BTRFS_FSID_SIZE);
233
Chris Masonbe20aa92007-12-17 20:14:01 -0500234 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400235 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
236 ret = btrfs_inc_ref(trans, root, cow, 1);
237 else
238 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500239
Chris Masonbe20aa92007-12-17 20:14:01 -0500240 if (ret)
241 return ret;
242
243 btrfs_mark_buffer_dirty(cow);
244 *cow_ret = cow;
245 return 0;
246}
247
Chris Masond352ac62008-09-29 15:18:18 -0400248/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400249 * check if the tree block can be shared by multiple trees
250 */
251int btrfs_block_can_be_shared(struct btrfs_root *root,
252 struct extent_buffer *buf)
253{
254 /*
255 * Tree blocks not in refernece counted trees and tree roots
256 * are never shared. If a block was allocated after the last
257 * snapshot and the block was not allocated by tree relocation,
258 * we know the block is not shared.
259 */
260 if (root->ref_cows &&
261 buf != root->node && buf != root->commit_root &&
262 (btrfs_header_generation(buf) <=
263 btrfs_root_last_snapshot(&root->root_item) ||
264 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
265 return 1;
266#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
267 if (root->ref_cows &&
268 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
269 return 1;
270#endif
271 return 0;
272}
273
274static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
275 struct btrfs_root *root,
276 struct extent_buffer *buf,
277 struct extent_buffer *cow)
278{
279 u64 refs;
280 u64 owner;
281 u64 flags;
282 u64 new_flags = 0;
283 int ret;
284
285 /*
286 * Backrefs update rules:
287 *
288 * Always use full backrefs for extent pointers in tree block
289 * allocated by tree relocation.
290 *
291 * If a shared tree block is no longer referenced by its owner
292 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
293 * use full backrefs for extent pointers in tree block.
294 *
295 * If a tree block is been relocating
296 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
297 * use full backrefs for extent pointers in tree block.
298 * The reason for this is some operations (such as drop tree)
299 * are only allowed for blocks use full backrefs.
300 */
301
302 if (btrfs_block_can_be_shared(root, buf)) {
303 ret = btrfs_lookup_extent_info(trans, root, buf->start,
304 buf->len, &refs, &flags);
305 BUG_ON(ret);
306 BUG_ON(refs == 0);
307 } else {
308 refs = 1;
309 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
310 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
311 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
312 else
313 flags = 0;
314 }
315
316 owner = btrfs_header_owner(buf);
317 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
318 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
319
320 if (refs > 1) {
321 if ((owner == root->root_key.objectid ||
322 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
323 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
324 ret = btrfs_inc_ref(trans, root, buf, 1);
325 BUG_ON(ret);
326
327 if (root->root_key.objectid ==
328 BTRFS_TREE_RELOC_OBJECTID) {
329 ret = btrfs_dec_ref(trans, root, buf, 0);
330 BUG_ON(ret);
331 ret = btrfs_inc_ref(trans, root, cow, 1);
332 BUG_ON(ret);
333 }
334 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
335 } else {
336
337 if (root->root_key.objectid ==
338 BTRFS_TREE_RELOC_OBJECTID)
339 ret = btrfs_inc_ref(trans, root, cow, 1);
340 else
341 ret = btrfs_inc_ref(trans, root, cow, 0);
342 BUG_ON(ret);
343 }
344 if (new_flags != 0) {
345 ret = btrfs_set_disk_extent_flags(trans, root,
346 buf->start,
347 buf->len,
348 new_flags, 0);
349 BUG_ON(ret);
350 }
351 } else {
352 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
353 if (root->root_key.objectid ==
354 BTRFS_TREE_RELOC_OBJECTID)
355 ret = btrfs_inc_ref(trans, root, cow, 1);
356 else
357 ret = btrfs_inc_ref(trans, root, cow, 0);
358 BUG_ON(ret);
359 ret = btrfs_dec_ref(trans, root, buf, 1);
360 BUG_ON(ret);
361 }
362 clean_tree_block(trans, root, buf);
363 }
364 return 0;
365}
366
367/*
Chris Masond3977122009-01-05 21:25:51 -0500368 * does the dirty work in cow of a single block. The parent block (if
369 * supplied) is updated to point to the new cow copy. The new buffer is marked
370 * dirty and returned locked. If you modify the block it needs to be marked
371 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400372 *
373 * search_start -- an allocation hint for the new block
374 *
Chris Masond3977122009-01-05 21:25:51 -0500375 * empty_size -- a hint that you plan on doing more cow. This is the size in
376 * bytes the allocator should try to find free next to the block it returns.
377 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400378 */
Chris Masond3977122009-01-05 21:25:51 -0500379static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400380 struct btrfs_root *root,
381 struct extent_buffer *buf,
382 struct extent_buffer *parent, int parent_slot,
383 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400384 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400385{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400386 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400387 struct extent_buffer *cow;
Chris Mason7bb86312007-12-11 09:25:06 -0500388 int level;
Chris Mason925baed2008-06-25 16:01:30 -0400389 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400390 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -0400391
Chris Mason925baed2008-06-25 16:01:30 -0400392 if (*cow_ret == buf)
393 unlock_orig = 1;
394
Chris Masonb9447ef2009-03-09 11:45:38 -0400395 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -0400396
Chris Mason7bb86312007-12-11 09:25:06 -0500397 WARN_ON(root->ref_cows && trans->transid !=
398 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400399 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400400
Chris Mason7bb86312007-12-11 09:25:06 -0500401 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400402
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400403 if (level == 0)
404 btrfs_item_key(buf, &disk_key, 0);
405 else
406 btrfs_node_key(buf, &disk_key, 0);
407
408 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
409 if (parent)
410 parent_start = parent->start;
411 else
412 parent_start = 0;
413 } else
414 parent_start = 0;
415
416 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
417 root->root_key.objectid, &disk_key,
418 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -0400419 if (IS_ERR(cow))
420 return PTR_ERR(cow);
421
Chris Masonb4ce94d2009-02-04 09:25:08 -0500422 /* cow is set to blocking by btrfs_init_new_buffer */
423
Chris Mason5f39d392007-10-15 16:14:19 -0400424 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400425 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400426 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400427 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
428 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
429 BTRFS_HEADER_FLAG_RELOC);
430 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
431 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
432 else
433 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -0400434
Yan Zheng2b820322008-11-17 21:11:30 -0500435 write_extent_buffer(cow, root->fs_info->fsid,
436 (unsigned long)btrfs_header_fsid(cow),
437 BTRFS_FSID_SIZE);
438
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400439 update_ref_for_cow(trans, root, buf, cow);
Zheng Yan1a40e232008-09-26 10:09:34 -0400440
Chris Mason6702ed42007-08-07 16:15:09 -0400441 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -0400442 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400443 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
444 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
445 parent_start = buf->start;
446 else
447 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400448
449 spin_lock(&root->node_lock);
Chris Mason6702ed42007-08-07 16:15:09 -0400450 root->node = cow;
Chris Mason5f39d392007-10-15 16:14:19 -0400451 extent_buffer_get(cow);
Chris Mason925baed2008-06-25 16:01:30 -0400452 spin_unlock(&root->node_lock);
453
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400454 btrfs_free_extent(trans, root, buf->start, buf->len,
455 parent_start, root->root_key.objectid,
456 level, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400457 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -0400458 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400459 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400460 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
461 parent_start = parent->start;
462 else
463 parent_start = 0;
464
465 WARN_ON(trans->transid != btrfs_header_generation(parent));
Chris Mason5f39d392007-10-15 16:14:19 -0400466 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -0400467 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -0500468 btrfs_set_node_ptr_generation(parent, parent_slot,
469 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400470 btrfs_mark_buffer_dirty(parent);
Chris Mason7bb86312007-12-11 09:25:06 -0500471 btrfs_free_extent(trans, root, buf->start, buf->len,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400472 parent_start, root->root_key.objectid,
473 level, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400474 }
Chris Mason925baed2008-06-25 16:01:30 -0400475 if (unlock_orig)
476 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400477 free_extent_buffer(buf);
Chris Mason6702ed42007-08-07 16:15:09 -0400478 btrfs_mark_buffer_dirty(cow);
479 *cow_ret = cow;
480 return 0;
481}
482
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400483static inline int should_cow_block(struct btrfs_trans_handle *trans,
484 struct btrfs_root *root,
485 struct extent_buffer *buf)
486{
487 if (btrfs_header_generation(buf) == trans->transid &&
488 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
489 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
490 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
491 return 0;
492 return 1;
493}
494
Chris Masond352ac62008-09-29 15:18:18 -0400495/*
496 * cows a single block, see __btrfs_cow_block for the real work.
497 * This version of it has extra checks so that a block isn't cow'd more than
498 * once per transaction, as long as it hasn't been written yet
499 */
Chris Masond3977122009-01-05 21:25:51 -0500500noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400501 struct btrfs_root *root, struct extent_buffer *buf,
502 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400503 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -0500504{
Chris Mason6702ed42007-08-07 16:15:09 -0400505 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400506 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500507
Chris Masonccd467d2007-06-28 15:57:36 -0400508 if (trans->transaction != root->fs_info->running_transaction) {
Chris Masond3977122009-01-05 21:25:51 -0500509 printk(KERN_CRIT "trans %llu running %llu\n",
510 (unsigned long long)trans->transid,
511 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -0400512 root->fs_info->running_transaction->transid);
513 WARN_ON(1);
514 }
515 if (trans->transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -0500516 printk(KERN_CRIT "trans %llu running %llu\n",
517 (unsigned long long)trans->transid,
518 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -0400519 WARN_ON(1);
520 }
Chris Masondc17ff82008-01-08 15:46:30 -0500521
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400522 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -0500523 *cow_ret = buf;
524 return 0;
525 }
Chris Masonc4876852009-02-04 09:24:25 -0500526
Chris Mason0b86a832008-03-24 15:01:56 -0400527 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500528
529 if (parent)
530 btrfs_set_lock_blocking(parent);
531 btrfs_set_lock_blocking(buf);
532
Chris Masonf510cfe2007-10-15 16:14:48 -0400533 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400534 parent_slot, cow_ret, search_start, 0);
Chris Masonf510cfe2007-10-15 16:14:48 -0400535 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400536}
537
Chris Masond352ac62008-09-29 15:18:18 -0400538/*
539 * helper function for defrag to decide if two blocks pointed to by a
540 * node are actually close by
541 */
Chris Mason6b800532007-10-15 16:17:34 -0400542static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -0400543{
Chris Mason6b800532007-10-15 16:17:34 -0400544 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400545 return 1;
Chris Mason6b800532007-10-15 16:17:34 -0400546 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400547 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -0500548 return 0;
549}
550
Chris Mason081e9572007-11-06 10:26:24 -0500551/*
552 * compare two keys in a memcmp fashion
553 */
554static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
555{
556 struct btrfs_key k1;
557
558 btrfs_disk_key_to_cpu(&k1, disk);
559
560 if (k1.objectid > k2->objectid)
561 return 1;
562 if (k1.objectid < k2->objectid)
563 return -1;
564 if (k1.type > k2->type)
565 return 1;
566 if (k1.type < k2->type)
567 return -1;
568 if (k1.offset > k2->offset)
569 return 1;
570 if (k1.offset < k2->offset)
571 return -1;
572 return 0;
573}
574
Josef Bacikf3465ca2008-11-12 14:19:50 -0500575/*
576 * same as comp_keys only with two btrfs_key's
577 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400578int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -0500579{
580 if (k1->objectid > k2->objectid)
581 return 1;
582 if (k1->objectid < k2->objectid)
583 return -1;
584 if (k1->type > k2->type)
585 return 1;
586 if (k1->type < k2->type)
587 return -1;
588 if (k1->offset > k2->offset)
589 return 1;
590 if (k1->offset < k2->offset)
591 return -1;
592 return 0;
593}
Chris Mason081e9572007-11-06 10:26:24 -0500594
Chris Masond352ac62008-09-29 15:18:18 -0400595/*
596 * this is used by the defrag code to go through all the
597 * leaves pointed to by a node and reallocate them so that
598 * disk order is close to key order
599 */
Chris Mason6702ed42007-08-07 16:15:09 -0400600int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400601 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400602 int start_slot, int cache_only, u64 *last_ret,
603 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400604{
Chris Mason6b800532007-10-15 16:17:34 -0400605 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400606 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400607 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400608 u64 search_start = *last_ret;
609 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400610 u64 other;
611 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400612 int end_slot;
613 int i;
614 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400615 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400616 int uptodate;
617 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500618 int progress_passed = 0;
619 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400620
Chris Mason5708b952007-10-25 15:43:18 -0400621 parent_level = btrfs_header_level(parent);
622 if (cache_only && parent_level != 1)
623 return 0;
624
Chris Masond3977122009-01-05 21:25:51 -0500625 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400626 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500627 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400628 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400629
Chris Mason6b800532007-10-15 16:17:34 -0400630 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400631 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400632 end_slot = parent_nritems;
633
634 if (parent_nritems == 1)
635 return 0;
636
Chris Masonb4ce94d2009-02-04 09:25:08 -0500637 btrfs_set_lock_blocking(parent);
638
Chris Mason6702ed42007-08-07 16:15:09 -0400639 for (i = start_slot; i < end_slot; i++) {
640 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400641
Chris Mason5708b952007-10-25 15:43:18 -0400642 if (!parent->map_token) {
643 map_extent_buffer(parent,
644 btrfs_node_key_ptr_offset(i),
645 sizeof(struct btrfs_key_ptr),
646 &parent->map_token, &parent->kaddr,
647 &parent->map_start, &parent->map_len,
648 KM_USER1);
649 }
Chris Mason081e9572007-11-06 10:26:24 -0500650 btrfs_node_key(parent, &disk_key, i);
651 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
652 continue;
653
654 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400655 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400656 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400657 if (last_block == 0)
658 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400659
Chris Mason6702ed42007-08-07 16:15:09 -0400660 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400661 other = btrfs_node_blockptr(parent, i - 1);
662 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400663 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400664 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400665 other = btrfs_node_blockptr(parent, i + 1);
666 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400667 }
Chris Masone9d0b132007-08-10 14:06:19 -0400668 if (close) {
669 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400670 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400671 }
Chris Mason5708b952007-10-25 15:43:18 -0400672 if (parent->map_token) {
673 unmap_extent_buffer(parent, parent->map_token,
674 KM_USER1);
675 parent->map_token = NULL;
676 }
Chris Mason6702ed42007-08-07 16:15:09 -0400677
Chris Mason6b800532007-10-15 16:17:34 -0400678 cur = btrfs_find_tree_block(root, blocknr, blocksize);
679 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400680 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400681 else
682 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400683 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400684 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400685 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400686 continue;
687 }
Chris Mason6b800532007-10-15 16:17:34 -0400688 if (!cur) {
689 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400690 blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400691 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400692 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400693 }
Chris Mason6702ed42007-08-07 16:15:09 -0400694 }
Chris Masone9d0b132007-08-10 14:06:19 -0400695 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400696 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400697
Chris Masone7a84562008-06-25 16:01:31 -0400698 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500699 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400700 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400701 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400702 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400703 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -0400704 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400705 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400706 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400707 break;
Yan252c38f2007-08-29 09:11:44 -0400708 }
Chris Masone7a84562008-06-25 16:01:31 -0400709 search_start = cur->start;
710 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400711 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400712 btrfs_tree_unlock(cur);
713 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400714 }
Chris Mason5708b952007-10-25 15:43:18 -0400715 if (parent->map_token) {
716 unmap_extent_buffer(parent, parent->map_token,
717 KM_USER1);
718 parent->map_token = NULL;
719 }
Chris Mason6702ed42007-08-07 16:15:09 -0400720 return err;
721}
722
Chris Mason74123bd2007-02-02 11:05:29 -0500723/*
724 * The leaf data grows from end-to-front in the node.
725 * this returns the address of the start of the last item,
726 * which is the stop of the leaf data stack
727 */
Chris Mason123abc82007-03-14 14:14:43 -0400728static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400729 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500730{
Chris Mason5f39d392007-10-15 16:14:19 -0400731 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500732 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400733 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400734 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500735}
736
Chris Masond352ac62008-09-29 15:18:18 -0400737/*
738 * extra debugging checks to make sure all the items in a key are
739 * well formed and in the proper order
740 */
Chris Mason123abc82007-03-14 14:14:43 -0400741static int check_node(struct btrfs_root *root, struct btrfs_path *path,
742 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500743{
Chris Mason5f39d392007-10-15 16:14:19 -0400744 struct extent_buffer *parent = NULL;
745 struct extent_buffer *node = path->nodes[level];
746 struct btrfs_disk_key parent_key;
747 struct btrfs_disk_key node_key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500748 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400749 int slot;
750 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400751 u32 nritems = btrfs_header_nritems(node);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500752
753 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400754 parent = path->nodes[level + 1];
Aneesha1f39632007-07-11 10:03:27 -0400755
Chris Mason8d7be552007-05-10 11:24:42 -0400756 slot = path->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400757 BUG_ON(nritems == 0);
758 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400759 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400760 btrfs_node_key(parent, &parent_key, parent_slot);
761 btrfs_node_key(node, &node_key, 0);
762 BUG_ON(memcmp(&parent_key, &node_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400763 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400764 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400765 btrfs_header_bytenr(node));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500766 }
Chris Mason123abc82007-03-14 14:14:43 -0400767 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason8d7be552007-05-10 11:24:42 -0400768 if (slot != 0) {
Chris Mason5f39d392007-10-15 16:14:19 -0400769 btrfs_node_key_to_cpu(node, &cpukey, slot - 1);
770 btrfs_node_key(node, &node_key, slot);
771 BUG_ON(comp_keys(&node_key, &cpukey) <= 0);
Chris Mason8d7be552007-05-10 11:24:42 -0400772 }
773 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400774 btrfs_node_key_to_cpu(node, &cpukey, slot + 1);
775 btrfs_node_key(node, &node_key, slot);
776 BUG_ON(comp_keys(&node_key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500777 }
778 return 0;
779}
780
Chris Masond352ac62008-09-29 15:18:18 -0400781/*
782 * extra checking to make sure all the items in a leaf are
783 * well formed and in the proper order
784 */
Chris Mason123abc82007-03-14 14:14:43 -0400785static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
786 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500787{
Chris Mason5f39d392007-10-15 16:14:19 -0400788 struct extent_buffer *leaf = path->nodes[level];
789 struct extent_buffer *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500790 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400791 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400792 struct btrfs_disk_key parent_key;
793 struct btrfs_disk_key leaf_key;
794 int slot = path->slots[0];
Chris Mason8d7be552007-05-10 11:24:42 -0400795
Chris Mason5f39d392007-10-15 16:14:19 -0400796 u32 nritems = btrfs_header_nritems(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500797
798 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400799 parent = path->nodes[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400800
801 if (nritems == 0)
802 return 0;
803
804 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400805 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400806 btrfs_node_key(parent, &parent_key, parent_slot);
807 btrfs_item_key(leaf, &leaf_key, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400808
Chris Mason5f39d392007-10-15 16:14:19 -0400809 BUG_ON(memcmp(&parent_key, &leaf_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400810 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400811 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400812 btrfs_header_bytenr(leaf));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500813 }
Chris Mason5f39d392007-10-15 16:14:19 -0400814 if (slot != 0 && slot < nritems - 1) {
815 btrfs_item_key(leaf, &leaf_key, slot);
816 btrfs_item_key_to_cpu(leaf, &cpukey, slot - 1);
817 if (comp_keys(&leaf_key, &cpukey) <= 0) {
818 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500819 printk(KERN_CRIT "slot %d offset bad key\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400820 BUG_ON(1);
821 }
822 if (btrfs_item_offset_nr(leaf, slot - 1) !=
823 btrfs_item_end_nr(leaf, slot)) {
824 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500825 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400826 BUG_ON(1);
827 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500828 }
Chris Mason8d7be552007-05-10 11:24:42 -0400829 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400830 btrfs_item_key(leaf, &leaf_key, slot);
831 btrfs_item_key_to_cpu(leaf, &cpukey, slot + 1);
832 BUG_ON(comp_keys(&leaf_key, &cpukey) >= 0);
833 if (btrfs_item_offset_nr(leaf, slot) !=
834 btrfs_item_end_nr(leaf, slot + 1)) {
835 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500836 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400837 BUG_ON(1);
838 }
Chris Mason8d7be552007-05-10 11:24:42 -0400839 }
Chris Mason5f39d392007-10-15 16:14:19 -0400840 BUG_ON(btrfs_item_offset_nr(leaf, 0) +
841 btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500842 return 0;
843}
844
Chris Masond3977122009-01-05 21:25:51 -0500845static noinline int check_block(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500846 struct btrfs_path *path, int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500847{
Chris Mason85d824c2008-04-10 10:23:19 -0400848 return 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500849 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400850 return check_leaf(root, path, level);
851 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500852}
853
Chris Mason74123bd2007-02-02 11:05:29 -0500854/*
Chris Mason5f39d392007-10-15 16:14:19 -0400855 * search for key in the extent_buffer. The items start at offset p,
856 * and they are item_size apart. There are 'max' items in p.
857 *
Chris Mason74123bd2007-02-02 11:05:29 -0500858 * the slot in the array is returned via slot, and it points to
859 * the place where you would insert key if it is not found in
860 * the array.
861 *
862 * slot may point to max if the key is bigger than all of the keys
863 */
Chris Masone02119d2008-09-05 16:13:11 -0400864static noinline int generic_bin_search(struct extent_buffer *eb,
865 unsigned long p,
866 int item_size, struct btrfs_key *key,
867 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500868{
869 int low = 0;
870 int high = max;
871 int mid;
872 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400873 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400874 struct btrfs_disk_key unaligned;
875 unsigned long offset;
876 char *map_token = NULL;
877 char *kaddr = NULL;
878 unsigned long map_start = 0;
879 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400880 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500881
Chris Masond3977122009-01-05 21:25:51 -0500882 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500883 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400884 offset = p + mid * item_size;
885
886 if (!map_token || offset < map_start ||
887 (offset + sizeof(struct btrfs_disk_key)) >
888 map_start + map_len) {
Chris Mason479965d2007-10-15 16:14:27 -0400889 if (map_token) {
Chris Mason5f39d392007-10-15 16:14:19 -0400890 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Mason479965d2007-10-15 16:14:27 -0400891 map_token = NULL;
892 }
Chris Mason934d3752008-12-08 16:43:10 -0500893
894 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400895 sizeof(struct btrfs_disk_key),
896 &map_token, &kaddr,
897 &map_start, &map_len, KM_USER0);
Chris Mason5f39d392007-10-15 16:14:19 -0400898
Chris Mason479965d2007-10-15 16:14:27 -0400899 if (!err) {
900 tmp = (struct btrfs_disk_key *)(kaddr + offset -
901 map_start);
902 } else {
903 read_extent_buffer(eb, &unaligned,
904 offset, sizeof(unaligned));
905 tmp = &unaligned;
906 }
907
Chris Mason5f39d392007-10-15 16:14:19 -0400908 } else {
909 tmp = (struct btrfs_disk_key *)(kaddr + offset -
910 map_start);
911 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500912 ret = comp_keys(tmp, key);
913
914 if (ret < 0)
915 low = mid + 1;
916 else if (ret > 0)
917 high = mid;
918 else {
919 *slot = mid;
Chris Mason479965d2007-10-15 16:14:27 -0400920 if (map_token)
921 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500922 return 0;
923 }
924 }
925 *slot = low;
Chris Mason5f39d392007-10-15 16:14:19 -0400926 if (map_token)
927 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500928 return 1;
929}
930
Chris Mason97571fd2007-02-24 13:39:08 -0500931/*
932 * simple bin_search frontend that does the right thing for
933 * leaves vs nodes
934 */
Chris Mason5f39d392007-10-15 16:14:19 -0400935static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
936 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500937{
Chris Mason5f39d392007-10-15 16:14:19 -0400938 if (level == 0) {
939 return generic_bin_search(eb,
940 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400941 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -0400942 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400943 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500944 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400945 return generic_bin_search(eb,
946 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400947 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400948 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400949 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500950 }
951 return -1;
952}
953
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400954int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
955 int level, int *slot)
956{
957 return bin_search(eb, key, level, slot);
958}
959
Chris Masond352ac62008-09-29 15:18:18 -0400960/* given a node and slot number, this reads the blocks it points to. The
961 * extent buffer is returned with a reference taken (but unlocked).
962 * NULL is returned on error.
963 */
Chris Masone02119d2008-09-05 16:13:11 -0400964static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400965 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500966{
Chris Masonca7a79a2008-05-12 12:59:19 -0400967 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500968 if (slot < 0)
969 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400970 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500971 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400972
973 BUG_ON(level == 0);
974
Chris Masondb945352007-10-15 16:15:53 -0400975 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400976 btrfs_level_size(root, level - 1),
977 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500978}
979
Chris Masond352ac62008-09-29 15:18:18 -0400980/*
981 * node level balancing, used to make sure nodes are in proper order for
982 * item deletion. We balance from the top down, so we have to make sure
983 * that a deletion won't leave an node completely empty later on.
984 */
Chris Masone02119d2008-09-05 16:13:11 -0400985static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -0500986 struct btrfs_root *root,
987 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500988{
Chris Mason5f39d392007-10-15 16:14:19 -0400989 struct extent_buffer *right = NULL;
990 struct extent_buffer *mid;
991 struct extent_buffer *left = NULL;
992 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500993 int ret = 0;
994 int wret;
995 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500996 int orig_slot = path->slots[level];
Chris Mason54aa1f42007-06-22 14:16:25 -0400997 int err_on_enospc = 0;
Chris Mason79f95c82007-03-01 15:16:26 -0500998 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500999
1000 if (level == 0)
1001 return 0;
1002
Chris Mason5f39d392007-10-15 16:14:19 -04001003 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001004
Chris Mason925baed2008-06-25 16:01:30 -04001005 WARN_ON(!path->locks[level]);
Chris Mason7bb86312007-12-11 09:25:06 -05001006 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1007
Chris Mason1d4f8a02007-03-13 09:28:32 -04001008 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001009
Chris Mason234b63a2007-03-13 10:46:10 -04001010 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001011 parent = path->nodes[level + 1];
Chris Masonbb803952007-03-01 12:04:21 -05001012 pslot = path->slots[level + 1];
1013
Chris Mason40689472007-03-17 14:29:23 -04001014 /*
1015 * deal with the case where there is only one pointer in the root
1016 * by promoting the node below to a root
1017 */
Chris Mason5f39d392007-10-15 16:14:19 -04001018 if (!parent) {
1019 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001020
Chris Mason5f39d392007-10-15 16:14:19 -04001021 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001022 return 0;
1023
1024 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001025 child = read_node_slot(root, mid, 0);
Jeff Mahoney7951f3c2009-02-12 10:06:15 -05001026 BUG_ON(!child);
Chris Mason925baed2008-06-25 16:01:30 -04001027 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001028 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001029 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan2f375ab2008-02-01 14:58:07 -05001030 BUG_ON(ret);
1031
Chris Mason925baed2008-06-25 16:01:30 -04001032 spin_lock(&root->node_lock);
Chris Masonbb803952007-03-01 12:04:21 -05001033 root->node = child;
Chris Mason925baed2008-06-25 16:01:30 -04001034 spin_unlock(&root->node_lock);
1035
Chris Mason0b86a832008-03-24 15:01:56 -04001036 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001037 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001038
Chris Mason925baed2008-06-25 16:01:30 -04001039 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001040 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001041 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001042 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001043 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001044 free_extent_buffer(mid);
Chris Mason7bb86312007-12-11 09:25:06 -05001045 ret = btrfs_free_extent(trans, root, mid->start, mid->len,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 0, root->root_key.objectid, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001047 /* once for the root ptr */
Chris Mason5f39d392007-10-15 16:14:19 -04001048 free_extent_buffer(mid);
Chris Masondb945352007-10-15 16:15:53 -04001049 return ret;
Chris Masonbb803952007-03-01 12:04:21 -05001050 }
Chris Mason5f39d392007-10-15 16:14:19 -04001051 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001052 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001053 return 0;
1054
Chris Masonb3612422009-05-13 19:12:15 -04001055 if (btrfs_header_nritems(mid) > 2)
Chris Masona4b6e072009-03-16 10:59:57 -04001056 return 0;
1057
Chris Mason5f39d392007-10-15 16:14:19 -04001058 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -04001059 err_on_enospc = 1;
1060
Chris Mason5f39d392007-10-15 16:14:19 -04001061 left = read_node_slot(root, parent, pslot - 1);
1062 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001063 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001064 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001065 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001066 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001067 if (wret) {
1068 ret = wret;
1069 goto enospc;
1070 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001071 }
Chris Mason5f39d392007-10-15 16:14:19 -04001072 right = read_node_slot(root, parent, pslot + 1);
1073 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001074 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001075 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001076 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001077 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001078 if (wret) {
1079 ret = wret;
1080 goto enospc;
1081 }
1082 }
1083
1084 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001085 if (left) {
1086 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001087 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001088 if (wret < 0)
1089 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001090 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -04001091 err_on_enospc = 1;
Chris Masonbb803952007-03-01 12:04:21 -05001092 }
Chris Mason79f95c82007-03-01 15:16:26 -05001093
1094 /*
1095 * then try to empty the right most buffer into the middle
1096 */
Chris Mason5f39d392007-10-15 16:14:19 -04001097 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001098 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001099 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001100 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001101 if (btrfs_header_nritems(right) == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001102 u64 bytenr = right->start;
1103 u32 blocksize = right->len;
1104
Chris Mason5f39d392007-10-15 16:14:19 -04001105 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001106 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001107 free_extent_buffer(right);
Chris Masonbb803952007-03-01 12:04:21 -05001108 right = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001109 wret = del_ptr(trans, root, path, level + 1, pslot +
1110 1);
Chris Masonbb803952007-03-01 12:04:21 -05001111 if (wret)
1112 ret = wret;
Chris Masondb945352007-10-15 16:15:53 -04001113 wret = btrfs_free_extent(trans, root, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001114 blocksize, 0,
1115 root->root_key.objectid,
1116 level, 0);
Chris Masonbb803952007-03-01 12:04:21 -05001117 if (wret)
1118 ret = wret;
1119 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001120 struct btrfs_disk_key right_key;
1121 btrfs_node_key(right, &right_key, 0);
1122 btrfs_set_node_key(parent, &right_key, pslot + 1);
1123 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001124 }
1125 }
Chris Mason5f39d392007-10-15 16:14:19 -04001126 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001127 /*
1128 * we're not allowed to leave a node with one item in the
1129 * tree during a delete. A deletion from lower in the tree
1130 * could try to delete the only pointer in this node.
1131 * So, pull some keys from the left.
1132 * There has to be a left pointer at this point because
1133 * otherwise we would have pulled some pointers from the
1134 * right
1135 */
Chris Mason5f39d392007-10-15 16:14:19 -04001136 BUG_ON(!left);
1137 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001138 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001139 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001140 goto enospc;
1141 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001142 if (wret == 1) {
1143 wret = push_node_left(trans, root, left, mid, 1);
1144 if (wret < 0)
1145 ret = wret;
1146 }
Chris Mason79f95c82007-03-01 15:16:26 -05001147 BUG_ON(wret == 1);
1148 }
Chris Mason5f39d392007-10-15 16:14:19 -04001149 if (btrfs_header_nritems(mid) == 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001150 /* we've managed to empty the middle node, drop it */
Chris Masondb945352007-10-15 16:15:53 -04001151 u64 bytenr = mid->start;
1152 u32 blocksize = mid->len;
Chris Mason925baed2008-06-25 16:01:30 -04001153
Chris Mason5f39d392007-10-15 16:14:19 -04001154 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001155 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001156 free_extent_buffer(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001157 mid = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001158 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001159 if (wret)
1160 ret = wret;
Chris Mason7bb86312007-12-11 09:25:06 -05001161 wret = btrfs_free_extent(trans, root, bytenr, blocksize,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001162 0, root->root_key.objectid,
1163 level, 0);
Chris Masonbb803952007-03-01 12:04:21 -05001164 if (wret)
1165 ret = wret;
Chris Mason79f95c82007-03-01 15:16:26 -05001166 } else {
1167 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001168 struct btrfs_disk_key mid_key;
1169 btrfs_node_key(mid, &mid_key, 0);
1170 btrfs_set_node_key(parent, &mid_key, pslot);
1171 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001172 }
Chris Masonbb803952007-03-01 12:04:21 -05001173
Chris Mason79f95c82007-03-01 15:16:26 -05001174 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001175 if (left) {
1176 if (btrfs_header_nritems(left) > orig_slot) {
1177 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001178 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001179 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001180 path->slots[level + 1] -= 1;
1181 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001182 if (mid) {
1183 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001184 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001185 }
Chris Masonbb803952007-03-01 12:04:21 -05001186 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001187 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001188 path->slots[level] = orig_slot;
1189 }
1190 }
Chris Mason79f95c82007-03-01 15:16:26 -05001191 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -04001192 check_block(root, path, level);
Chris Masone20d96d2007-03-22 12:13:20 -04001193 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001194 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001195 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001196enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001197 if (right) {
1198 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001199 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001200 }
1201 if (left) {
1202 if (path->nodes[level] != left)
1203 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001204 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001205 }
Chris Masonbb803952007-03-01 12:04:21 -05001206 return ret;
1207}
1208
Chris Masond352ac62008-09-29 15:18:18 -04001209/* Node balancing for insertion. Here we only split or push nodes around
1210 * when they are completely full. This is also done top down, so we
1211 * have to be pessimistic.
1212 */
Chris Masond3977122009-01-05 21:25:51 -05001213static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001214 struct btrfs_root *root,
1215 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001216{
Chris Mason5f39d392007-10-15 16:14:19 -04001217 struct extent_buffer *right = NULL;
1218 struct extent_buffer *mid;
1219 struct extent_buffer *left = NULL;
1220 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001221 int ret = 0;
1222 int wret;
1223 int pslot;
1224 int orig_slot = path->slots[level];
1225 u64 orig_ptr;
1226
1227 if (level == 0)
1228 return 1;
1229
Chris Mason5f39d392007-10-15 16:14:19 -04001230 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001231 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001232 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
1233
1234 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001235 parent = path->nodes[level + 1];
Chris Masone66f7092007-04-20 13:16:02 -04001236 pslot = path->slots[level + 1];
1237
Chris Mason5f39d392007-10-15 16:14:19 -04001238 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001239 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001240
Chris Mason5f39d392007-10-15 16:14:19 -04001241 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001242
1243 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001244 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001245 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001246
1247 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001248 btrfs_set_lock_blocking(left);
1249
Chris Mason5f39d392007-10-15 16:14:19 -04001250 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001251 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1252 wret = 1;
1253 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001254 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001255 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001256 if (ret)
1257 wret = 1;
1258 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001259 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001260 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001261 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001262 }
Chris Masone66f7092007-04-20 13:16:02 -04001263 if (wret < 0)
1264 ret = wret;
1265 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001266 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001267 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001268 btrfs_node_key(mid, &disk_key, 0);
1269 btrfs_set_node_key(parent, &disk_key, pslot);
1270 btrfs_mark_buffer_dirty(parent);
1271 if (btrfs_header_nritems(left) > orig_slot) {
1272 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001273 path->slots[level + 1] -= 1;
1274 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001275 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001276 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001277 } else {
1278 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001279 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001280 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001281 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001282 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001283 }
Chris Masone66f7092007-04-20 13:16:02 -04001284 return 0;
1285 }
Chris Mason925baed2008-06-25 16:01:30 -04001286 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001287 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001288 }
Chris Mason925baed2008-06-25 16:01:30 -04001289 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001290
1291 /*
1292 * then try to empty the right most buffer into the middle
1293 */
Chris Mason5f39d392007-10-15 16:14:19 -04001294 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001295 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001296
Chris Mason925baed2008-06-25 16:01:30 -04001297 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001298 btrfs_set_lock_blocking(right);
1299
Chris Mason5f39d392007-10-15 16:14:19 -04001300 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001301 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1302 wret = 1;
1303 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001304 ret = btrfs_cow_block(trans, root, right,
1305 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001306 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04001307 if (ret)
1308 wret = 1;
1309 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001310 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001311 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001312 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001313 }
Chris Masone66f7092007-04-20 13:16:02 -04001314 if (wret < 0)
1315 ret = wret;
1316 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001317 struct btrfs_disk_key disk_key;
1318
1319 btrfs_node_key(right, &disk_key, 0);
1320 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1321 btrfs_mark_buffer_dirty(parent);
1322
1323 if (btrfs_header_nritems(mid) <= orig_slot) {
1324 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001325 path->slots[level + 1] += 1;
1326 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001327 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001328 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001329 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001330 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001331 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001332 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001333 }
Chris Masone66f7092007-04-20 13:16:02 -04001334 return 0;
1335 }
Chris Mason925baed2008-06-25 16:01:30 -04001336 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001337 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001338 }
Chris Masone66f7092007-04-20 13:16:02 -04001339 return 1;
1340}
1341
Chris Mason74123bd2007-02-02 11:05:29 -05001342/*
Chris Masond352ac62008-09-29 15:18:18 -04001343 * readahead one full node of leaves, finding things that are close
1344 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001345 */
Chris Masonc8c42862009-04-03 10:14:18 -04001346static void reada_for_search(struct btrfs_root *root,
1347 struct btrfs_path *path,
1348 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001349{
Chris Mason5f39d392007-10-15 16:14:19 -04001350 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001351 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001352 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001353 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001354 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001355 u64 nread = 0;
Chris Mason3c69fae2007-08-07 15:52:22 -04001356 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001357 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001358 u32 nr;
1359 u32 blocksize;
1360 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001361
Chris Masona6b6e752007-10-15 16:22:39 -04001362 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001363 return;
1364
Chris Mason6702ed42007-08-07 16:15:09 -04001365 if (!path->nodes[level])
1366 return;
1367
Chris Mason5f39d392007-10-15 16:14:19 -04001368 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001369
Chris Mason3c69fae2007-08-07 15:52:22 -04001370 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001371 blocksize = btrfs_level_size(root, level - 1);
1372 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001373 if (eb) {
1374 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001375 return;
1376 }
1377
Chris Masona7175312009-01-22 09:23:10 -05001378 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001379
Chris Mason5f39d392007-10-15 16:14:19 -04001380 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001381 nr = slot;
Chris Masond3977122009-01-05 21:25:51 -05001382 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001383 if (direction < 0) {
1384 if (nr == 0)
1385 break;
1386 nr--;
1387 } else if (direction > 0) {
1388 nr++;
1389 if (nr >= nritems)
1390 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001391 }
Chris Mason01f46652007-12-21 16:24:26 -05001392 if (path->reada < 0 && objectid) {
1393 btrfs_node_key(node, &disk_key, nr);
1394 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1395 break;
1396 }
Chris Mason6b800532007-10-15 16:17:34 -04001397 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001398 if ((search <= target && target - search <= 65536) ||
1399 (search > target && search - target <= 65536)) {
Chris Masonca7a79a2008-05-12 12:59:19 -04001400 readahead_tree_block(root, search, blocksize,
1401 btrfs_node_ptr_generation(node, nr));
Chris Mason6b800532007-10-15 16:17:34 -04001402 nread += blocksize;
1403 }
1404 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001405 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001406 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001407 }
1408}
Chris Mason925baed2008-06-25 16:01:30 -04001409
Chris Masond352ac62008-09-29 15:18:18 -04001410/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001411 * returns -EAGAIN if it had to drop the path, or zero if everything was in
1412 * cache
1413 */
1414static noinline int reada_for_balance(struct btrfs_root *root,
1415 struct btrfs_path *path, int level)
1416{
1417 int slot;
1418 int nritems;
1419 struct extent_buffer *parent;
1420 struct extent_buffer *eb;
1421 u64 gen;
1422 u64 block1 = 0;
1423 u64 block2 = 0;
1424 int ret = 0;
1425 int blocksize;
1426
Chris Mason8c594ea2009-04-20 15:50:10 -04001427 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001428 if (!parent)
1429 return 0;
1430
1431 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04001432 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001433 blocksize = btrfs_level_size(root, level);
1434
1435 if (slot > 0) {
1436 block1 = btrfs_node_blockptr(parent, slot - 1);
1437 gen = btrfs_node_ptr_generation(parent, slot - 1);
1438 eb = btrfs_find_tree_block(root, block1, blocksize);
1439 if (eb && btrfs_buffer_uptodate(eb, gen))
1440 block1 = 0;
1441 free_extent_buffer(eb);
1442 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001443 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001444 block2 = btrfs_node_blockptr(parent, slot + 1);
1445 gen = btrfs_node_ptr_generation(parent, slot + 1);
1446 eb = btrfs_find_tree_block(root, block2, blocksize);
1447 if (eb && btrfs_buffer_uptodate(eb, gen))
1448 block2 = 0;
1449 free_extent_buffer(eb);
1450 }
1451 if (block1 || block2) {
1452 ret = -EAGAIN;
Chris Mason8c594ea2009-04-20 15:50:10 -04001453
1454 /* release the whole path */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001455 btrfs_release_path(root, path);
Chris Mason8c594ea2009-04-20 15:50:10 -04001456
1457 /* read the blocks */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001458 if (block1)
1459 readahead_tree_block(root, block1, blocksize, 0);
1460 if (block2)
1461 readahead_tree_block(root, block2, blocksize, 0);
1462
1463 if (block1) {
1464 eb = read_tree_block(root, block1, blocksize, 0);
1465 free_extent_buffer(eb);
1466 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001467 if (block2) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001468 eb = read_tree_block(root, block2, blocksize, 0);
1469 free_extent_buffer(eb);
1470 }
1471 }
1472 return ret;
1473}
1474
1475
1476/*
Chris Masond3977122009-01-05 21:25:51 -05001477 * when we walk down the tree, it is usually safe to unlock the higher layers
1478 * in the tree. The exceptions are when our path goes through slot 0, because
1479 * operations on the tree might require changing key pointers higher up in the
1480 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001481 *
Chris Masond3977122009-01-05 21:25:51 -05001482 * callers might also have set path->keep_locks, which tells this code to keep
1483 * the lock if the path points to the last slot in the block. This is part of
1484 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001485 *
Chris Masond3977122009-01-05 21:25:51 -05001486 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1487 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001488 */
Chris Masone02119d2008-09-05 16:13:11 -04001489static noinline void unlock_up(struct btrfs_path *path, int level,
1490 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001491{
1492 int i;
1493 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001494 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001495 struct extent_buffer *t;
1496
1497 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1498 if (!path->nodes[i])
1499 break;
1500 if (!path->locks[i])
1501 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001502 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001503 skip_level = i + 1;
1504 continue;
1505 }
Chris Mason051e1b92008-06-25 16:01:30 -04001506 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001507 u32 nritems;
1508 t = path->nodes[i];
1509 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001510 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001511 skip_level = i + 1;
1512 continue;
1513 }
1514 }
Chris Mason051e1b92008-06-25 16:01:30 -04001515 if (skip_level < i && i >= lowest_unlock)
1516 no_skips = 1;
1517
Chris Mason925baed2008-06-25 16:01:30 -04001518 t = path->nodes[i];
1519 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
1520 btrfs_tree_unlock(t);
1521 path->locks[i] = 0;
1522 }
1523 }
1524}
1525
Chris Mason3c69fae2007-08-07 15:52:22 -04001526/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001527 * This releases any locks held in the path starting at level and
1528 * going all the way up to the root.
1529 *
1530 * btrfs_search_slot will keep the lock held on higher nodes in a few
1531 * corner cases, such as COW of the block at slot zero in the node. This
1532 * ignores those rules, and it should only be called when there are no
1533 * more updates to be done higher up in the tree.
1534 */
1535noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
1536{
1537 int i;
1538
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001539 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05001540 return;
1541
1542 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1543 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001544 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001545 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001546 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001547 btrfs_tree_unlock(path->nodes[i]);
1548 path->locks[i] = 0;
1549 }
1550}
1551
1552/*
Chris Masonc8c42862009-04-03 10:14:18 -04001553 * helper function for btrfs_search_slot. The goal is to find a block
1554 * in cache without setting the path to blocking. If we find the block
1555 * we return zero and the path is unchanged.
1556 *
1557 * If we can't find the block, we set the path blocking and do some
1558 * reada. -EAGAIN is returned and the search must be repeated.
1559 */
1560static int
1561read_block_for_search(struct btrfs_trans_handle *trans,
1562 struct btrfs_root *root, struct btrfs_path *p,
1563 struct extent_buffer **eb_ret, int level, int slot,
1564 struct btrfs_key *key)
1565{
1566 u64 blocknr;
1567 u64 gen;
1568 u32 blocksize;
1569 struct extent_buffer *b = *eb_ret;
1570 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04001571 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001572
1573 blocknr = btrfs_node_blockptr(b, slot);
1574 gen = btrfs_node_ptr_generation(b, slot);
1575 blocksize = btrfs_level_size(root, level - 1);
1576
1577 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
1578 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
Chris Mason76a05b32009-05-14 13:24:30 -04001579 /*
1580 * we found an up to date block without sleeping, return
1581 * right away
1582 */
Chris Masonc8c42862009-04-03 10:14:18 -04001583 *eb_ret = tmp;
1584 return 0;
1585 }
1586
1587 /*
1588 * reduce lock contention at high levels
1589 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04001590 * we read. Don't release the lock on the current
1591 * level because we need to walk this node to figure
1592 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04001593 */
Chris Mason8c594ea2009-04-20 15:50:10 -04001594 btrfs_unlock_up_safe(p, level + 1);
1595 btrfs_set_path_blocking(p);
1596
Chris Masonc8c42862009-04-03 10:14:18 -04001597 if (tmp)
1598 free_extent_buffer(tmp);
1599 if (p->reada)
1600 reada_for_search(root, p, level, slot, key->objectid);
1601
Chris Mason8c594ea2009-04-20 15:50:10 -04001602 btrfs_release_path(NULL, p);
Chris Mason76a05b32009-05-14 13:24:30 -04001603
1604 ret = -EAGAIN;
Chris Masonc8c42862009-04-03 10:14:18 -04001605 tmp = read_tree_block(root, blocknr, blocksize, gen);
Chris Mason76a05b32009-05-14 13:24:30 -04001606 if (tmp) {
1607 /*
1608 * If the read above didn't mark this buffer up to date,
1609 * it will never end up being up to date. Set ret to EIO now
1610 * and give up so that our caller doesn't loop forever
1611 * on our EAGAINs.
1612 */
1613 if (!btrfs_buffer_uptodate(tmp, 0))
1614 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04001615 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04001616 }
1617 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001618}
1619
1620/*
1621 * helper function for btrfs_search_slot. This does all of the checks
1622 * for node-level blocks and does any balancing required based on
1623 * the ins_len.
1624 *
1625 * If no extra work was required, zero is returned. If we had to
1626 * drop the path, -EAGAIN is returned and btrfs_search_slot must
1627 * start over
1628 */
1629static int
1630setup_nodes_for_search(struct btrfs_trans_handle *trans,
1631 struct btrfs_root *root, struct btrfs_path *p,
1632 struct extent_buffer *b, int level, int ins_len)
1633{
1634 int ret;
1635 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
1636 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
1637 int sret;
1638
1639 sret = reada_for_balance(root, p, level);
1640 if (sret)
1641 goto again;
1642
1643 btrfs_set_path_blocking(p);
1644 sret = split_node(trans, root, p, level);
1645 btrfs_clear_path_blocking(p, NULL);
1646
1647 BUG_ON(sret > 0);
1648 if (sret) {
1649 ret = sret;
1650 goto done;
1651 }
1652 b = p->nodes[level];
1653 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04001654 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04001655 int sret;
1656
1657 sret = reada_for_balance(root, p, level);
1658 if (sret)
1659 goto again;
1660
1661 btrfs_set_path_blocking(p);
1662 sret = balance_level(trans, root, p, level);
1663 btrfs_clear_path_blocking(p, NULL);
1664
1665 if (sret) {
1666 ret = sret;
1667 goto done;
1668 }
1669 b = p->nodes[level];
1670 if (!b) {
1671 btrfs_release_path(NULL, p);
1672 goto again;
1673 }
1674 BUG_ON(btrfs_header_nritems(b) == 1);
1675 }
1676 return 0;
1677
1678again:
1679 ret = -EAGAIN;
1680done:
1681 return ret;
1682}
1683
1684/*
Chris Mason74123bd2007-02-02 11:05:29 -05001685 * look for key in the tree. path is filled in with nodes along the way
1686 * if key is found, we return zero and you can find the item in the leaf
1687 * level of the path (level 0)
1688 *
1689 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001690 * be inserted, and 1 is returned. If there are other errors during the
1691 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001692 *
1693 * if ins_len > 0, nodes and leaves will be split as we walk down the
1694 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1695 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001696 */
Chris Masone089f052007-03-16 16:20:31 -04001697int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1698 *root, struct btrfs_key *key, struct btrfs_path *p, int
1699 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001700{
Chris Mason5f39d392007-10-15 16:14:19 -04001701 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001702 int slot;
1703 int ret;
1704 int level;
Chris Mason925baed2008-06-25 16:01:30 -04001705 int lowest_unlock = 1;
Chris Mason9f3a7422007-08-07 15:52:19 -04001706 u8 lowest_level = 0;
1707
Chris Mason6702ed42007-08-07 16:15:09 -04001708 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001709 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001710 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001711
Chris Mason925baed2008-06-25 16:01:30 -04001712 if (ins_len < 0)
1713 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001714
Chris Masonbb803952007-03-01 12:04:21 -05001715again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001716 if (p->search_commit_root) {
1717 b = root->commit_root;
1718 extent_buffer_get(b);
1719 if (!p->skip_locking)
1720 btrfs_tree_lock(b);
1721 } else {
1722 if (p->skip_locking)
1723 b = btrfs_root_node(root);
1724 else
1725 b = btrfs_lock_root_node(root);
1726 }
Chris Mason925baed2008-06-25 16:01:30 -04001727
Chris Masoneb60cea2007-02-02 09:18:22 -05001728 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001729 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001730
1731 /*
1732 * setup the path here so we can release it under lock
1733 * contention with the cow code
1734 */
1735 p->nodes[level] = b;
1736 if (!p->skip_locking)
1737 p->locks[level] = 1;
1738
Chris Mason02217ed2007-03-02 16:08:05 -05001739 if (cow) {
1740 int wret;
Chris Mason65b51a02008-08-01 15:11:20 -04001741
Chris Masonc8c42862009-04-03 10:14:18 -04001742 /*
1743 * if we don't really need to cow this block
1744 * then we don't want to set the path blocking,
1745 * so we test it here
1746 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001747 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04001748 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001749
Chris Masonb4ce94d2009-02-04 09:25:08 -05001750 btrfs_set_path_blocking(p);
1751
Chris Masone20d96d2007-03-22 12:13:20 -04001752 wret = btrfs_cow_block(trans, root, b,
1753 p->nodes[level + 1],
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001754 p->slots[level + 1], &b);
Chris Mason54aa1f42007-06-22 14:16:25 -04001755 if (wret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001756 free_extent_buffer(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001757 ret = wret;
1758 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001759 }
Chris Mason02217ed2007-03-02 16:08:05 -05001760 }
Chris Mason65b51a02008-08-01 15:11:20 -04001761cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001762 BUG_ON(!cow && ins_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001763 if (level != btrfs_header_level(b))
Chris Mason2c90e5d2007-04-02 10:50:19 -04001764 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04001765 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001766
Chris Masoneb60cea2007-02-02 09:18:22 -05001767 p->nodes[level] = b;
Chris Mason5cd57b22008-06-25 16:01:30 -04001768 if (!p->skip_locking)
1769 p->locks[level] = 1;
Chris Mason65b51a02008-08-01 15:11:20 -04001770
Chris Mason4008c042009-02-12 14:09:45 -05001771 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001772
1773 /*
1774 * we have a lock on b and as long as we aren't changing
1775 * the tree, there is no way to for the items in b to change.
1776 * It is safe to drop the lock on our parent before we
1777 * go through the expensive btree search on b.
1778 *
1779 * If cow is true, then we might be changing slot zero,
1780 * which may require changing the parent. So, we can't
1781 * drop the lock until after we know which slot we're
1782 * operating on.
1783 */
1784 if (!cow)
1785 btrfs_unlock_up_safe(p, level + 1);
1786
Chris Mason123abc82007-03-14 14:14:43 -04001787 ret = check_block(root, p, level);
Chris Mason65b51a02008-08-01 15:11:20 -04001788 if (ret) {
1789 ret = -1;
1790 goto done;
1791 }
Chris Mason925baed2008-06-25 16:01:30 -04001792
Chris Mason5f39d392007-10-15 16:14:19 -04001793 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001794
Chris Mason5f39d392007-10-15 16:14:19 -04001795 if (level != 0) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001796 if (ret && slot > 0)
1797 slot -= 1;
1798 p->slots[level] = slot;
Chris Masonc8c42862009-04-03 10:14:18 -04001799 ret = setup_nodes_for_search(trans, root, p, b, level,
1800 ins_len);
1801 if (ret == -EAGAIN)
1802 goto again;
1803 else if (ret)
1804 goto done;
1805 b = p->nodes[level];
1806 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001807
Chris Masonf9efa9c2008-06-25 16:14:04 -04001808 unlock_up(p, level, lowest_unlock);
1809
Chris Mason9f3a7422007-08-07 15:52:19 -04001810 /* this is only true while dropping a snapshot */
Chris Mason925baed2008-06-25 16:01:30 -04001811 if (level == lowest_level) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001812 ret = 0;
1813 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001814 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001815
Chris Masonc8c42862009-04-03 10:14:18 -04001816 ret = read_block_for_search(trans, root, p,
1817 &b, level, slot, key);
1818 if (ret == -EAGAIN)
1819 goto again;
Chris Mason594a24e2008-06-25 16:01:30 -04001820
Chris Mason76a05b32009-05-14 13:24:30 -04001821 if (ret == -EIO)
1822 goto done;
1823
Chris Masonb4ce94d2009-02-04 09:25:08 -05001824 if (!p->skip_locking) {
1825 int lret;
1826
Chris Mason4008c042009-02-12 14:09:45 -05001827 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001828 lret = btrfs_try_spin_lock(b);
1829
1830 if (!lret) {
1831 btrfs_set_path_blocking(p);
1832 btrfs_tree_lock(b);
Chris Mason4008c042009-02-12 14:09:45 -05001833 btrfs_clear_path_blocking(p, b);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001834 }
1835 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001836 } else {
1837 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001838 if (ins_len > 0 &&
1839 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001840 int sret;
1841
1842 btrfs_set_path_blocking(p);
1843 sret = split_leaf(trans, root, key,
Chris Masoncc0c5532007-10-25 15:42:57 -04001844 p, ins_len, ret == 0);
Chris Mason4008c042009-02-12 14:09:45 -05001845 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001846
Chris Mason5c680ed2007-02-22 11:39:13 -05001847 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001848 if (sret) {
1849 ret = sret;
1850 goto done;
1851 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001852 }
Chris Mason459931e2008-12-10 09:10:46 -05001853 if (!p->search_for_split)
1854 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001855 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001856 }
1857 }
Chris Mason65b51a02008-08-01 15:11:20 -04001858 ret = 1;
1859done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001860 /*
1861 * we don't really know what they plan on doing with the path
1862 * from here on, so for now just mark it as blocking
1863 */
Chris Masonb9473432009-03-13 11:00:37 -04001864 if (!p->leave_spinning)
1865 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04001866 if (ret < 0)
1867 btrfs_release_path(root, p);
Chris Mason65b51a02008-08-01 15:11:20 -04001868 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001869}
1870
Chris Mason74123bd2007-02-02 11:05:29 -05001871/*
1872 * adjust the pointers going up the tree, starting at level
1873 * making sure the right key of each node is points to 'key'.
1874 * This is used after shifting pointers to the left, so it stops
1875 * fixing up pointers when a given leaf/node is not in slot 0 of the
1876 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001877 *
1878 * If this fails to write a tree block, it returns -1, but continues
1879 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001880 */
Chris Mason5f39d392007-10-15 16:14:19 -04001881static int fixup_low_keys(struct btrfs_trans_handle *trans,
1882 struct btrfs_root *root, struct btrfs_path *path,
1883 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001884{
1885 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001886 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001887 struct extent_buffer *t;
1888
Chris Mason234b63a2007-03-13 10:46:10 -04001889 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001890 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001891 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001892 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001893 t = path->nodes[i];
1894 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001895 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001896 if (tslot != 0)
1897 break;
1898 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001899 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001900}
1901
Chris Mason74123bd2007-02-02 11:05:29 -05001902/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001903 * update item key.
1904 *
1905 * This function isn't completely safe. It's the caller's responsibility
1906 * that the new key won't break the order
1907 */
1908int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1909 struct btrfs_root *root, struct btrfs_path *path,
1910 struct btrfs_key *new_key)
1911{
1912 struct btrfs_disk_key disk_key;
1913 struct extent_buffer *eb;
1914 int slot;
1915
1916 eb = path->nodes[0];
1917 slot = path->slots[0];
1918 if (slot > 0) {
1919 btrfs_item_key(eb, &disk_key, slot - 1);
1920 if (comp_keys(&disk_key, new_key) >= 0)
1921 return -1;
1922 }
1923 if (slot < btrfs_header_nritems(eb) - 1) {
1924 btrfs_item_key(eb, &disk_key, slot + 1);
1925 if (comp_keys(&disk_key, new_key) <= 0)
1926 return -1;
1927 }
1928
1929 btrfs_cpu_key_to_disk(&disk_key, new_key);
1930 btrfs_set_item_key(eb, &disk_key, slot);
1931 btrfs_mark_buffer_dirty(eb);
1932 if (slot == 0)
1933 fixup_low_keys(trans, root, path, &disk_key, 1);
1934 return 0;
1935}
1936
1937/*
Chris Mason74123bd2007-02-02 11:05:29 -05001938 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001939 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001940 *
1941 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1942 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001943 */
Chris Mason98ed5172008-01-03 10:01:48 -05001944static int push_node_left(struct btrfs_trans_handle *trans,
1945 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001946 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001947{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001948 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001949 int src_nritems;
1950 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001951 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001952
Chris Mason5f39d392007-10-15 16:14:19 -04001953 src_nritems = btrfs_header_nritems(src);
1954 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001955 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001956 WARN_ON(btrfs_header_generation(src) != trans->transid);
1957 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001958
Chris Masonbce4eae2008-04-24 14:42:46 -04001959 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001960 return 1;
1961
Chris Masond3977122009-01-05 21:25:51 -05001962 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001963 return 1;
1964
Chris Masonbce4eae2008-04-24 14:42:46 -04001965 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001966 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001967 if (push_items < src_nritems) {
1968 /* leave at least 8 pointers in the node if
1969 * we aren't going to empty it
1970 */
1971 if (src_nritems - push_items < 8) {
1972 if (push_items <= 8)
1973 return 1;
1974 push_items -= 8;
1975 }
1976 }
1977 } else
1978 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001979
Chris Mason5f39d392007-10-15 16:14:19 -04001980 copy_extent_buffer(dst, src,
1981 btrfs_node_key_ptr_offset(dst_nritems),
1982 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001983 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001984
Chris Masonbb803952007-03-01 12:04:21 -05001985 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001986 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1987 btrfs_node_key_ptr_offset(push_items),
1988 (src_nritems - push_items) *
1989 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001990 }
Chris Mason5f39d392007-10-15 16:14:19 -04001991 btrfs_set_header_nritems(src, src_nritems - push_items);
1992 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1993 btrfs_mark_buffer_dirty(src);
1994 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001995
Chris Masonbb803952007-03-01 12:04:21 -05001996 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001997}
1998
Chris Mason97571fd2007-02-24 13:39:08 -05001999/*
Chris Mason79f95c82007-03-01 15:16:26 -05002000 * try to push data from one node into the next node right in the
2001 * tree.
2002 *
2003 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
2004 * error, and > 0 if there was no room in the right hand block.
2005 *
2006 * this will only push up to 1/2 the contents of the left node over
2007 */
Chris Mason5f39d392007-10-15 16:14:19 -04002008static int balance_node_right(struct btrfs_trans_handle *trans,
2009 struct btrfs_root *root,
2010 struct extent_buffer *dst,
2011 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05002012{
Chris Mason79f95c82007-03-01 15:16:26 -05002013 int push_items = 0;
2014 int max_push;
2015 int src_nritems;
2016 int dst_nritems;
2017 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05002018
Chris Mason7bb86312007-12-11 09:25:06 -05002019 WARN_ON(btrfs_header_generation(src) != trans->transid);
2020 WARN_ON(btrfs_header_generation(dst) != trans->transid);
2021
Chris Mason5f39d392007-10-15 16:14:19 -04002022 src_nritems = btrfs_header_nritems(src);
2023 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002024 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05002025 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05002026 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04002027
Chris Masond3977122009-01-05 21:25:51 -05002028 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04002029 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05002030
2031 max_push = src_nritems / 2 + 1;
2032 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05002033 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05002034 return 1;
Yan252c38f2007-08-29 09:11:44 -04002035
Chris Mason79f95c82007-03-01 15:16:26 -05002036 if (max_push < push_items)
2037 push_items = max_push;
2038
Chris Mason5f39d392007-10-15 16:14:19 -04002039 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
2040 btrfs_node_key_ptr_offset(0),
2041 (dst_nritems) *
2042 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04002043
Chris Mason5f39d392007-10-15 16:14:19 -04002044 copy_extent_buffer(dst, src,
2045 btrfs_node_key_ptr_offset(0),
2046 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002047 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002048
Chris Mason5f39d392007-10-15 16:14:19 -04002049 btrfs_set_header_nritems(src, src_nritems - push_items);
2050 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002051
Chris Mason5f39d392007-10-15 16:14:19 -04002052 btrfs_mark_buffer_dirty(src);
2053 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002054
Chris Mason79f95c82007-03-01 15:16:26 -05002055 return ret;
2056}
2057
2058/*
Chris Mason97571fd2007-02-24 13:39:08 -05002059 * helper function to insert a new root level in the tree.
2060 * A new node is allocated, and a single item is inserted to
2061 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002062 *
2063 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002064 */
Chris Masond3977122009-01-05 21:25:51 -05002065static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002066 struct btrfs_root *root,
2067 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002068{
Chris Mason7bb86312007-12-11 09:25:06 -05002069 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002070 struct extent_buffer *lower;
2071 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002072 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002073 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05002074
2075 BUG_ON(path->nodes[level]);
2076 BUG_ON(path->nodes[level-1] != root->node);
2077
Chris Mason7bb86312007-12-11 09:25:06 -05002078 lower = path->nodes[level-1];
2079 if (level == 1)
2080 btrfs_item_key(lower, &lower_key, 0);
2081 else
2082 btrfs_node_key(lower, &lower_key, 0);
2083
Zheng Yan31840ae2008-09-23 13:14:14 -04002084 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002085 root->root_key.objectid, &lower_key,
Christoph Hellwigad3d81b2008-09-05 16:43:28 -04002086 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002087 if (IS_ERR(c))
2088 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002089
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002090 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002091 btrfs_set_header_nritems(c, 1);
2092 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002093 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002094 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002095 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002096 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002097
Chris Mason5f39d392007-10-15 16:14:19 -04002098 write_extent_buffer(c, root->fs_info->fsid,
2099 (unsigned long)btrfs_header_fsid(c),
2100 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002101
2102 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2103 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2104 BTRFS_UUID_SIZE);
2105
Chris Mason5f39d392007-10-15 16:14:19 -04002106 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002107 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002108 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002109 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002110
2111 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002112
2113 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002114
Chris Mason925baed2008-06-25 16:01:30 -04002115 spin_lock(&root->node_lock);
2116 old = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -04002117 root->node = c;
Chris Mason925baed2008-06-25 16:01:30 -04002118 spin_unlock(&root->node_lock);
2119
2120 /* the super has an extra ref to root->node */
2121 free_extent_buffer(old);
2122
Chris Mason0b86a832008-03-24 15:01:56 -04002123 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002124 extent_buffer_get(c);
2125 path->nodes[level] = c;
Chris Mason925baed2008-06-25 16:01:30 -04002126 path->locks[level] = 1;
Chris Mason5c680ed2007-02-22 11:39:13 -05002127 path->slots[level] = 0;
2128 return 0;
2129}
2130
Chris Mason74123bd2007-02-02 11:05:29 -05002131/*
2132 * worker function to insert a single pointer in a node.
2133 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002134 *
Chris Mason74123bd2007-02-02 11:05:29 -05002135 * slot and level indicate where you want the key to go, and
2136 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002137 *
2138 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002139 */
Chris Masone089f052007-03-16 16:20:31 -04002140static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2141 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002142 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002143{
Chris Mason5f39d392007-10-15 16:14:19 -04002144 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002145 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002146
2147 BUG_ON(!path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002148 lower = path->nodes[level];
2149 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04002150 BUG_ON(slot > nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002151 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002152 BUG();
2153 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002154 memmove_extent_buffer(lower,
2155 btrfs_node_key_ptr_offset(slot + 1),
2156 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002157 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002158 }
Chris Mason5f39d392007-10-15 16:14:19 -04002159 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002160 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002161 WARN_ON(trans->transid == 0);
2162 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002163 btrfs_set_header_nritems(lower, nritems + 1);
2164 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002165 return 0;
2166}
2167
Chris Mason97571fd2007-02-24 13:39:08 -05002168/*
2169 * split the node at the specified level in path in two.
2170 * The path is corrected to point to the appropriate node after the split
2171 *
2172 * Before splitting this tries to make some room in the node by pushing
2173 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002174 *
2175 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002176 */
Chris Masone02119d2008-09-05 16:13:11 -04002177static noinline int split_node(struct btrfs_trans_handle *trans,
2178 struct btrfs_root *root,
2179 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002180{
Chris Mason5f39d392007-10-15 16:14:19 -04002181 struct extent_buffer *c;
2182 struct extent_buffer *split;
2183 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002184 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002185 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002186 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002187 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002188
Chris Mason5f39d392007-10-15 16:14:19 -04002189 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002190 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002191 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002192 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002193 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002194 if (ret)
2195 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04002196 } else {
Chris Masone66f7092007-04-20 13:16:02 -04002197 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002198 c = path->nodes[level];
2199 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002200 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002201 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002202 if (ret < 0)
2203 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002204 }
Chris Masone66f7092007-04-20 13:16:02 -04002205
Chris Mason5f39d392007-10-15 16:14:19 -04002206 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002207 mid = (c_nritems + 1) / 2;
2208 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05002209
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002210 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04002211 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002212 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002213 if (IS_ERR(split))
2214 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002215
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002216 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002217 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002218 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002219 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002220 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002221 btrfs_set_header_owner(split, root->root_key.objectid);
2222 write_extent_buffer(split, root->fs_info->fsid,
2223 (unsigned long)btrfs_header_fsid(split),
2224 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002225 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2226 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2227 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002228
Chris Mason5f39d392007-10-15 16:14:19 -04002229
2230 copy_extent_buffer(split, c,
2231 btrfs_node_key_ptr_offset(0),
2232 btrfs_node_key_ptr_offset(mid),
2233 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2234 btrfs_set_header_nritems(split, c_nritems - mid);
2235 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002236 ret = 0;
2237
Chris Mason5f39d392007-10-15 16:14:19 -04002238 btrfs_mark_buffer_dirty(c);
2239 btrfs_mark_buffer_dirty(split);
2240
Chris Masondb945352007-10-15 16:15:53 -04002241 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002242 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002243 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002244 if (wret)
2245 ret = wret;
2246
Chris Mason5de08d72007-02-24 06:24:44 -05002247 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002248 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002249 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002250 free_extent_buffer(c);
2251 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002252 path->slots[level + 1] += 1;
2253 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002254 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002255 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002256 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002257 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002258}
2259
Chris Mason74123bd2007-02-02 11:05:29 -05002260/*
2261 * how many bytes are required to store the items in a leaf. start
2262 * and nr indicate which items in the leaf to check. This totals up the
2263 * space used both by the item structs and the item data
2264 */
Chris Mason5f39d392007-10-15 16:14:19 -04002265static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002266{
2267 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002268 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002269 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002270
2271 if (!nr)
2272 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002273 data_len = btrfs_item_end_nr(l, start);
2274 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002275 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002276 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002277 return data_len;
2278}
2279
Chris Mason74123bd2007-02-02 11:05:29 -05002280/*
Chris Masond4dbff92007-04-04 14:08:15 -04002281 * The space between the end of the leaf items and
2282 * the start of the leaf data. IOW, how much room
2283 * the leaf has left for both items and data
2284 */
Chris Masond3977122009-01-05 21:25:51 -05002285noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002286 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002287{
Chris Mason5f39d392007-10-15 16:14:19 -04002288 int nritems = btrfs_header_nritems(leaf);
2289 int ret;
2290 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2291 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002292 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2293 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002294 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002295 leaf_space_used(leaf, 0, nritems), nritems);
2296 }
2297 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002298}
2299
Chris Mason44871b12009-03-13 10:04:31 -04002300static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
2301 struct btrfs_root *root,
2302 struct btrfs_path *path,
2303 int data_size, int empty,
2304 struct extent_buffer *right,
2305 int free_space, u32 left_nritems)
Chris Mason00ec4c52007-02-24 12:47:20 -05002306{
Chris Mason5f39d392007-10-15 16:14:19 -04002307 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04002308 struct extent_buffer *upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002309 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002310 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002311 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002312 int push_space = 0;
2313 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002314 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05002315 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002316 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002317 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002318 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05002319
Chris Mason34a38212007-11-07 13:31:03 -05002320 if (empty)
2321 nr = 0;
2322 else
2323 nr = 1;
2324
Zheng Yan31840ae2008-09-23 13:14:14 -04002325 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002326 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002327
Chris Mason44871b12009-03-13 10:04:31 -04002328 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05002329 i = left_nritems - 1;
2330 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002331 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002332
Zheng Yan31840ae2008-09-23 13:14:14 -04002333 if (!empty && push_items > 0) {
2334 if (path->slots[0] > i)
2335 break;
2336 if (path->slots[0] == i) {
2337 int space = btrfs_leaf_free_space(root, left);
2338 if (space + push_space * 2 > free_space)
2339 break;
2340 }
2341 }
2342
Chris Mason00ec4c52007-02-24 12:47:20 -05002343 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002344 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002345
2346 if (!left->map_token) {
2347 map_extent_buffer(left, (unsigned long)item,
2348 sizeof(struct btrfs_item),
2349 &left->map_token, &left->kaddr,
2350 &left->map_start, &left->map_len,
2351 KM_USER1);
2352 }
2353
2354 this_item_size = btrfs_item_size(left, item);
2355 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002356 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002357
Chris Mason00ec4c52007-02-24 12:47:20 -05002358 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002359 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002360 if (i == 0)
2361 break;
2362 i--;
Chris Masondb945352007-10-15 16:15:53 -04002363 }
2364 if (left->map_token) {
2365 unmap_extent_buffer(left, left->map_token, KM_USER1);
2366 left->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002367 }
Chris Mason5f39d392007-10-15 16:14:19 -04002368
Chris Mason925baed2008-06-25 16:01:30 -04002369 if (push_items == 0)
2370 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002371
Chris Mason34a38212007-11-07 13:31:03 -05002372 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002373 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002374
Chris Mason00ec4c52007-02-24 12:47:20 -05002375 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002376 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002377
Chris Mason5f39d392007-10-15 16:14:19 -04002378 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002379 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002380
Chris Mason00ec4c52007-02-24 12:47:20 -05002381 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002382 data_end = leaf_data_end(root, right);
2383 memmove_extent_buffer(right,
2384 btrfs_leaf_data(right) + data_end - push_space,
2385 btrfs_leaf_data(right) + data_end,
2386 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2387
Chris Mason00ec4c52007-02-24 12:47:20 -05002388 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002389 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002390 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2391 btrfs_leaf_data(left) + leaf_data_end(root, left),
2392 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002393
2394 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2395 btrfs_item_nr_offset(0),
2396 right_nritems * sizeof(struct btrfs_item));
2397
Chris Mason00ec4c52007-02-24 12:47:20 -05002398 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002399 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2400 btrfs_item_nr_offset(left_nritems - push_items),
2401 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002402
2403 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002404 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002405 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002406 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002407 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002408 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002409 if (!right->map_token) {
2410 map_extent_buffer(right, (unsigned long)item,
2411 sizeof(struct btrfs_item),
2412 &right->map_token, &right->kaddr,
2413 &right->map_start, &right->map_len,
2414 KM_USER1);
2415 }
2416 push_space -= btrfs_item_size(right, item);
2417 btrfs_set_item_offset(right, item, push_space);
2418 }
2419
2420 if (right->map_token) {
2421 unmap_extent_buffer(right, right->map_token, KM_USER1);
2422 right->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002423 }
Chris Mason7518a232007-03-12 12:01:18 -04002424 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002425 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002426
Chris Mason34a38212007-11-07 13:31:03 -05002427 if (left_nritems)
2428 btrfs_mark_buffer_dirty(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002429 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002430
Chris Mason5f39d392007-10-15 16:14:19 -04002431 btrfs_item_key(right, &disk_key, 0);
2432 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002433 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002434
Chris Mason00ec4c52007-02-24 12:47:20 -05002435 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002436 if (path->slots[0] >= left_nritems) {
2437 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002438 if (btrfs_header_nritems(path->nodes[0]) == 0)
2439 clean_tree_block(trans, root, path->nodes[0]);
2440 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002441 free_extent_buffer(path->nodes[0]);
2442 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002443 path->slots[1] += 1;
2444 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002445 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002446 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002447 }
2448 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002449
2450out_unlock:
2451 btrfs_tree_unlock(right);
2452 free_extent_buffer(right);
2453 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002454}
Chris Mason925baed2008-06-25 16:01:30 -04002455
Chris Mason00ec4c52007-02-24 12:47:20 -05002456/*
Chris Mason44871b12009-03-13 10:04:31 -04002457 * push some data in the path leaf to the right, trying to free up at
2458 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2459 *
2460 * returns 1 if the push failed because the other node didn't have enough
2461 * room, 0 if everything worked out and < 0 if there were major errors.
2462 */
2463static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
2464 *root, struct btrfs_path *path, int data_size,
2465 int empty)
2466{
2467 struct extent_buffer *left = path->nodes[0];
2468 struct extent_buffer *right;
2469 struct extent_buffer *upper;
2470 int slot;
2471 int free_space;
2472 u32 left_nritems;
2473 int ret;
2474
2475 if (!path->nodes[1])
2476 return 1;
2477
2478 slot = path->slots[1];
2479 upper = path->nodes[1];
2480 if (slot >= btrfs_header_nritems(upper) - 1)
2481 return 1;
2482
2483 btrfs_assert_tree_locked(path->nodes[1]);
2484
2485 right = read_node_slot(root, upper, slot + 1);
2486 btrfs_tree_lock(right);
2487 btrfs_set_lock_blocking(right);
2488
2489 free_space = btrfs_leaf_free_space(root, right);
2490 if (free_space < data_size)
2491 goto out_unlock;
2492
2493 /* cow and double check */
2494 ret = btrfs_cow_block(trans, root, right, upper,
2495 slot + 1, &right);
2496 if (ret)
2497 goto out_unlock;
2498
2499 free_space = btrfs_leaf_free_space(root, right);
2500 if (free_space < data_size)
2501 goto out_unlock;
2502
2503 left_nritems = btrfs_header_nritems(left);
2504 if (left_nritems == 0)
2505 goto out_unlock;
2506
2507 return __push_leaf_right(trans, root, path, data_size, empty,
2508 right, free_space, left_nritems);
2509out_unlock:
2510 btrfs_tree_unlock(right);
2511 free_extent_buffer(right);
2512 return 1;
2513}
2514
2515/*
Chris Mason74123bd2007-02-02 11:05:29 -05002516 * push some data in the path leaf to the left, trying to free up at
2517 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2518 */
Chris Mason44871b12009-03-13 10:04:31 -04002519static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
2520 struct btrfs_root *root,
2521 struct btrfs_path *path, int data_size,
2522 int empty, struct extent_buffer *left,
2523 int free_space, int right_nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002524{
Chris Mason5f39d392007-10-15 16:14:19 -04002525 struct btrfs_disk_key disk_key;
2526 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05002527 int slot;
2528 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002529 int push_space = 0;
2530 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002531 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002532 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002533 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002534 int ret = 0;
2535 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002536 u32 this_item_size;
2537 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002538
2539 slot = path->slots[1];
Chris Mason02217ed2007-03-02 16:08:05 -05002540
Chris Mason34a38212007-11-07 13:31:03 -05002541 if (empty)
2542 nr = right_nritems;
2543 else
2544 nr = right_nritems - 1;
2545
2546 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002547 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002548 if (!right->map_token) {
2549 map_extent_buffer(right, (unsigned long)item,
2550 sizeof(struct btrfs_item),
2551 &right->map_token, &right->kaddr,
2552 &right->map_start, &right->map_len,
2553 KM_USER1);
2554 }
2555
Zheng Yan31840ae2008-09-23 13:14:14 -04002556 if (!empty && push_items > 0) {
2557 if (path->slots[0] < i)
2558 break;
2559 if (path->slots[0] == i) {
2560 int space = btrfs_leaf_free_space(root, right);
2561 if (space + push_space * 2 > free_space)
2562 break;
2563 }
2564 }
2565
Chris Masonbe0e5c02007-01-26 15:51:26 -05002566 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002567 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002568
2569 this_item_size = btrfs_item_size(right, item);
2570 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002571 break;
Chris Masondb945352007-10-15 16:15:53 -04002572
Chris Masonbe0e5c02007-01-26 15:51:26 -05002573 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002574 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002575 }
Chris Masondb945352007-10-15 16:15:53 -04002576
2577 if (right->map_token) {
2578 unmap_extent_buffer(right, right->map_token, KM_USER1);
2579 right->map_token = NULL;
2580 }
2581
Chris Masonbe0e5c02007-01-26 15:51:26 -05002582 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002583 ret = 1;
2584 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002585 }
Chris Mason34a38212007-11-07 13:31:03 -05002586 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002587 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002588
Chris Masonbe0e5c02007-01-26 15:51:26 -05002589 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002590 copy_extent_buffer(left, right,
2591 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2592 btrfs_item_nr_offset(0),
2593 push_items * sizeof(struct btrfs_item));
2594
Chris Mason123abc82007-03-14 14:14:43 -04002595 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002596 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002597
2598 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002599 leaf_data_end(root, left) - push_space,
2600 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002601 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002602 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002603 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002604 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002605
Chris Masondb945352007-10-15 16:15:53 -04002606 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002607 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002608 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002609
Chris Mason5f39d392007-10-15 16:14:19 -04002610 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002611 if (!left->map_token) {
2612 map_extent_buffer(left, (unsigned long)item,
2613 sizeof(struct btrfs_item),
2614 &left->map_token, &left->kaddr,
2615 &left->map_start, &left->map_len,
2616 KM_USER1);
2617 }
2618
Chris Mason5f39d392007-10-15 16:14:19 -04002619 ioff = btrfs_item_offset(left, item);
2620 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002621 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002622 }
Chris Mason5f39d392007-10-15 16:14:19 -04002623 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masondb945352007-10-15 16:15:53 -04002624 if (left->map_token) {
2625 unmap_extent_buffer(left, left->map_token, KM_USER1);
2626 left->map_token = NULL;
2627 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002628
2629 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002630 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002631 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2632 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002633 WARN_ON(1);
2634 }
Chris Mason5f39d392007-10-15 16:14:19 -04002635
Chris Mason34a38212007-11-07 13:31:03 -05002636 if (push_items < right_nritems) {
2637 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2638 leaf_data_end(root, right);
2639 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2640 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2641 btrfs_leaf_data(right) +
2642 leaf_data_end(root, right), push_space);
2643
2644 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002645 btrfs_item_nr_offset(push_items),
2646 (btrfs_header_nritems(right) - push_items) *
2647 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002648 }
Yaneef1c492007-11-26 10:58:13 -05002649 right_nritems -= push_items;
2650 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002651 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002652 for (i = 0; i < right_nritems; i++) {
2653 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002654
2655 if (!right->map_token) {
2656 map_extent_buffer(right, (unsigned long)item,
2657 sizeof(struct btrfs_item),
2658 &right->map_token, &right->kaddr,
2659 &right->map_start, &right->map_len,
2660 KM_USER1);
2661 }
2662
2663 push_space = push_space - btrfs_item_size(right, item);
2664 btrfs_set_item_offset(right, item, push_space);
2665 }
2666 if (right->map_token) {
2667 unmap_extent_buffer(right, right->map_token, KM_USER1);
2668 right->map_token = NULL;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002669 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002670
Chris Mason5f39d392007-10-15 16:14:19 -04002671 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002672 if (right_nritems)
2673 btrfs_mark_buffer_dirty(right);
Chris Mason098f59c2007-05-11 11:33:21 -04002674
Chris Mason5f39d392007-10-15 16:14:19 -04002675 btrfs_item_key(right, &disk_key, 0);
2676 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002677 if (wret)
2678 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002679
2680 /* then fixup the leaf pointer in the path */
2681 if (path->slots[0] < push_items) {
2682 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002683 if (btrfs_header_nritems(path->nodes[0]) == 0)
2684 clean_tree_block(trans, root, path->nodes[0]);
2685 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002686 free_extent_buffer(path->nodes[0]);
2687 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002688 path->slots[1] -= 1;
2689 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002690 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002691 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002692 path->slots[0] -= push_items;
2693 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002694 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002695 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002696out:
2697 btrfs_tree_unlock(left);
2698 free_extent_buffer(left);
2699 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002700}
2701
Chris Mason74123bd2007-02-02 11:05:29 -05002702/*
Chris Mason44871b12009-03-13 10:04:31 -04002703 * push some data in the path leaf to the left, trying to free up at
2704 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2705 */
2706static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
2707 *root, struct btrfs_path *path, int data_size,
2708 int empty)
2709{
2710 struct extent_buffer *right = path->nodes[0];
2711 struct extent_buffer *left;
2712 int slot;
2713 int free_space;
2714 u32 right_nritems;
2715 int ret = 0;
2716
2717 slot = path->slots[1];
2718 if (slot == 0)
2719 return 1;
2720 if (!path->nodes[1])
2721 return 1;
2722
2723 right_nritems = btrfs_header_nritems(right);
2724 if (right_nritems == 0)
2725 return 1;
2726
2727 btrfs_assert_tree_locked(path->nodes[1]);
2728
2729 left = read_node_slot(root, path->nodes[1], slot - 1);
2730 btrfs_tree_lock(left);
2731 btrfs_set_lock_blocking(left);
2732
2733 free_space = btrfs_leaf_free_space(root, left);
2734 if (free_space < data_size) {
2735 ret = 1;
2736 goto out;
2737 }
2738
2739 /* cow and double check */
2740 ret = btrfs_cow_block(trans, root, left,
2741 path->nodes[1], slot - 1, &left);
2742 if (ret) {
2743 /* we hit -ENOSPC, but it isn't fatal here */
2744 ret = 1;
2745 goto out;
2746 }
2747
2748 free_space = btrfs_leaf_free_space(root, left);
2749 if (free_space < data_size) {
2750 ret = 1;
2751 goto out;
2752 }
2753
2754 return __push_leaf_left(trans, root, path, data_size,
2755 empty, left, free_space, right_nritems);
2756out:
2757 btrfs_tree_unlock(left);
2758 free_extent_buffer(left);
2759 return ret;
2760}
2761
2762/*
Chris Mason74123bd2007-02-02 11:05:29 -05002763 * split the path's leaf in two, making sure there is at least data_size
2764 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002765 *
2766 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002767 */
Chris Mason44871b12009-03-13 10:04:31 -04002768static noinline int copy_for_split(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002769 struct btrfs_root *root,
Chris Mason44871b12009-03-13 10:04:31 -04002770 struct btrfs_path *path,
2771 struct extent_buffer *l,
2772 struct extent_buffer *right,
2773 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002774{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002775 int data_copy_size;
2776 int rt_data_off;
2777 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002778 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002779 int wret;
Chris Masond4dbff92007-04-04 14:08:15 -04002780 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002781
Chris Mason5f39d392007-10-15 16:14:19 -04002782 nritems = nritems - mid;
2783 btrfs_set_header_nritems(right, nritems);
2784 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2785
2786 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2787 btrfs_item_nr_offset(mid),
2788 nritems * sizeof(struct btrfs_item));
2789
2790 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002791 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2792 data_copy_size, btrfs_leaf_data(l) +
2793 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002794
Chris Mason5f39d392007-10-15 16:14:19 -04002795 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2796 btrfs_item_end_nr(l, mid);
2797
2798 for (i = 0; i < nritems; i++) {
2799 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002800 u32 ioff;
2801
2802 if (!right->map_token) {
2803 map_extent_buffer(right, (unsigned long)item,
2804 sizeof(struct btrfs_item),
2805 &right->map_token, &right->kaddr,
2806 &right->map_start, &right->map_len,
2807 KM_USER1);
2808 }
2809
2810 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002811 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002812 }
Chris Mason74123bd2007-02-02 11:05:29 -05002813
Chris Masondb945352007-10-15 16:15:53 -04002814 if (right->map_token) {
2815 unmap_extent_buffer(right, right->map_token, KM_USER1);
2816 right->map_token = NULL;
2817 }
2818
Chris Mason5f39d392007-10-15 16:14:19 -04002819 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002820 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002821 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002822 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2823 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002824 if (wret)
2825 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002826
2827 btrfs_mark_buffer_dirty(right);
2828 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002829 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002830
Chris Masonbe0e5c02007-01-26 15:51:26 -05002831 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002832 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002833 free_extent_buffer(path->nodes[0]);
2834 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002835 path->slots[0] -= mid;
2836 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002837 } else {
2838 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002839 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002840 }
Chris Mason5f39d392007-10-15 16:14:19 -04002841
Chris Masoneb60cea2007-02-02 09:18:22 -05002842 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002843
Chris Mason44871b12009-03-13 10:04:31 -04002844 return ret;
2845}
2846
2847/*
2848 * split the path's leaf in two, making sure there is at least data_size
2849 * available for the resulting leaf level of the path.
2850 *
2851 * returns 0 if all went well and < 0 on failure.
2852 */
2853static noinline int split_leaf(struct btrfs_trans_handle *trans,
2854 struct btrfs_root *root,
2855 struct btrfs_key *ins_key,
2856 struct btrfs_path *path, int data_size,
2857 int extend)
2858{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002859 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04002860 struct extent_buffer *l;
2861 u32 nritems;
2862 int mid;
2863 int slot;
2864 struct extent_buffer *right;
2865 int ret = 0;
2866 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002867 int split;
Chris Mason44871b12009-03-13 10:04:31 -04002868 int num_doubles = 0;
2869
2870 /* first try to make some room by pushing left and right */
Chris Masonb3612422009-05-13 19:12:15 -04002871 if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY) {
Chris Mason44871b12009-03-13 10:04:31 -04002872 wret = push_leaf_right(trans, root, path, data_size, 0);
2873 if (wret < 0)
2874 return wret;
2875 if (wret) {
2876 wret = push_leaf_left(trans, root, path, data_size, 0);
2877 if (wret < 0)
2878 return wret;
2879 }
2880 l = path->nodes[0];
2881
2882 /* did the pushes work? */
2883 if (btrfs_leaf_free_space(root, l) >= data_size)
2884 return 0;
2885 }
2886
2887 if (!path->nodes[1]) {
2888 ret = insert_new_root(trans, root, path, 1);
2889 if (ret)
2890 return ret;
2891 }
2892again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002893 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04002894 l = path->nodes[0];
2895 slot = path->slots[0];
2896 nritems = btrfs_header_nritems(l);
2897 mid = (nritems + 1) / 2;
2898
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002899 if (mid <= slot) {
2900 if (nritems == 1 ||
2901 leaf_space_used(l, mid, nritems - mid) + data_size >
2902 BTRFS_LEAF_DATA_SIZE(root)) {
2903 if (slot >= nritems) {
2904 split = 0;
2905 } else {
2906 mid = slot;
2907 if (mid != nritems &&
2908 leaf_space_used(l, mid, nritems - mid) +
2909 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2910 split = 2;
2911 }
2912 }
2913 }
2914 } else {
2915 if (leaf_space_used(l, 0, mid) + data_size >
2916 BTRFS_LEAF_DATA_SIZE(root)) {
2917 if (!extend && data_size && slot == 0) {
2918 split = 0;
2919 } else if ((extend || !data_size) && slot == 0) {
2920 mid = 1;
2921 } else {
2922 mid = slot;
2923 if (mid != nritems &&
2924 leaf_space_used(l, mid, nritems - mid) +
2925 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2926 split = 2 ;
2927 }
2928 }
2929 }
2930 }
2931
2932 if (split == 0)
2933 btrfs_cpu_key_to_disk(&disk_key, ins_key);
2934 else
2935 btrfs_item_key(l, &disk_key, mid);
2936
2937 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04002938 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002939 &disk_key, 0, l->start, 0);
Chris Mason44871b12009-03-13 10:04:31 -04002940 if (IS_ERR(right)) {
2941 BUG_ON(1);
2942 return PTR_ERR(right);
2943 }
2944
2945 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
2946 btrfs_set_header_bytenr(right, right->start);
2947 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002948 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04002949 btrfs_set_header_owner(right, root->root_key.objectid);
2950 btrfs_set_header_level(right, 0);
2951 write_extent_buffer(right, root->fs_info->fsid,
2952 (unsigned long)btrfs_header_fsid(right),
2953 BTRFS_FSID_SIZE);
2954
2955 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2956 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2957 BTRFS_UUID_SIZE);
2958
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002959 if (split == 0) {
2960 if (mid <= slot) {
2961 btrfs_set_header_nritems(right, 0);
2962 wret = insert_ptr(trans, root, path,
2963 &disk_key, right->start,
2964 path->slots[1] + 1, 1);
2965 if (wret)
2966 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04002967
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002968 btrfs_tree_unlock(path->nodes[0]);
2969 free_extent_buffer(path->nodes[0]);
2970 path->nodes[0] = right;
2971 path->slots[0] = 0;
2972 path->slots[1] += 1;
2973 } else {
2974 btrfs_set_header_nritems(right, 0);
2975 wret = insert_ptr(trans, root, path,
2976 &disk_key,
2977 right->start,
2978 path->slots[1], 1);
2979 if (wret)
2980 ret = wret;
2981 btrfs_tree_unlock(path->nodes[0]);
2982 free_extent_buffer(path->nodes[0]);
2983 path->nodes[0] = right;
2984 path->slots[0] = 0;
2985 if (path->slots[1] == 0) {
2986 wret = fixup_low_keys(trans, root,
2987 path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04002988 if (wret)
2989 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04002990 }
2991 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002992 btrfs_mark_buffer_dirty(right);
2993 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04002994 }
2995
2996 ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems);
2997 BUG_ON(ret);
2998
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002999 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04003000 BUG_ON(num_doubles != 0);
3001 num_doubles++;
3002 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04003003 }
Chris Mason44871b12009-03-13 10:04:31 -04003004
Chris Masonbe0e5c02007-01-26 15:51:26 -05003005 return ret;
3006}
3007
Chris Masond352ac62008-09-29 15:18:18 -04003008/*
Chris Mason459931e2008-12-10 09:10:46 -05003009 * This function splits a single item into two items,
3010 * giving 'new_key' to the new item and splitting the
3011 * old one at split_offset (from the start of the item).
3012 *
3013 * The path may be released by this operation. After
3014 * the split, the path is pointing to the old item. The
3015 * new item is going to be in the same node as the old one.
3016 *
3017 * Note, the item being split must be smaller enough to live alone on
3018 * a tree block with room for one extra struct btrfs_item
3019 *
3020 * This allows us to split the item in place, keeping a lock on the
3021 * leaf the entire time.
3022 */
3023int btrfs_split_item(struct btrfs_trans_handle *trans,
3024 struct btrfs_root *root,
3025 struct btrfs_path *path,
3026 struct btrfs_key *new_key,
3027 unsigned long split_offset)
3028{
3029 u32 item_size;
3030 struct extent_buffer *leaf;
3031 struct btrfs_key orig_key;
3032 struct btrfs_item *item;
3033 struct btrfs_item *new_item;
3034 int ret = 0;
3035 int slot;
3036 u32 nritems;
3037 u32 orig_offset;
3038 struct btrfs_disk_key disk_key;
3039 char *buf;
3040
3041 leaf = path->nodes[0];
3042 btrfs_item_key_to_cpu(leaf, &orig_key, path->slots[0]);
3043 if (btrfs_leaf_free_space(root, leaf) >= sizeof(struct btrfs_item))
3044 goto split;
3045
3046 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3047 btrfs_release_path(root, path);
3048
3049 path->search_for_split = 1;
3050 path->keep_locks = 1;
3051
3052 ret = btrfs_search_slot(trans, root, &orig_key, path, 0, 1);
3053 path->search_for_split = 0;
3054
3055 /* if our item isn't there or got smaller, return now */
3056 if (ret != 0 || item_size != btrfs_item_size_nr(path->nodes[0],
3057 path->slots[0])) {
3058 path->keep_locks = 0;
3059 return -EAGAIN;
3060 }
3061
Chris Masonb9473432009-03-13 11:00:37 -04003062 btrfs_set_path_blocking(path);
Yan Zheng87b29b22008-12-17 10:21:48 -05003063 ret = split_leaf(trans, root, &orig_key, path,
3064 sizeof(struct btrfs_item), 1);
Chris Mason459931e2008-12-10 09:10:46 -05003065 path->keep_locks = 0;
3066 BUG_ON(ret);
3067
Chris Masonb9473432009-03-13 11:00:37 -04003068 btrfs_unlock_up_safe(path, 1);
3069 leaf = path->nodes[0];
3070 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
3071
3072split:
Chris Masonb4ce94d2009-02-04 09:25:08 -05003073 /*
3074 * make sure any changes to the path from split_leaf leave it
3075 * in a blocking state
3076 */
3077 btrfs_set_path_blocking(path);
3078
Chris Mason459931e2008-12-10 09:10:46 -05003079 item = btrfs_item_nr(leaf, path->slots[0]);
3080 orig_offset = btrfs_item_offset(leaf, item);
3081 item_size = btrfs_item_size(leaf, item);
3082
Chris Mason459931e2008-12-10 09:10:46 -05003083 buf = kmalloc(item_size, GFP_NOFS);
3084 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3085 path->slots[0]), item_size);
3086 slot = path->slots[0] + 1;
3087 leaf = path->nodes[0];
3088
3089 nritems = btrfs_header_nritems(leaf);
3090
3091 if (slot != nritems) {
3092 /* shift the items */
3093 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
3094 btrfs_item_nr_offset(slot),
3095 (nritems - slot) * sizeof(struct btrfs_item));
3096
3097 }
3098
3099 btrfs_cpu_key_to_disk(&disk_key, new_key);
3100 btrfs_set_item_key(leaf, &disk_key, slot);
3101
3102 new_item = btrfs_item_nr(leaf, slot);
3103
3104 btrfs_set_item_offset(leaf, new_item, orig_offset);
3105 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3106
3107 btrfs_set_item_offset(leaf, item,
3108 orig_offset + item_size - split_offset);
3109 btrfs_set_item_size(leaf, item, split_offset);
3110
3111 btrfs_set_header_nritems(leaf, nritems + 1);
3112
3113 /* write the data for the start of the original item */
3114 write_extent_buffer(leaf, buf,
3115 btrfs_item_ptr_offset(leaf, path->slots[0]),
3116 split_offset);
3117
3118 /* write the data for the new item */
3119 write_extent_buffer(leaf, buf + split_offset,
3120 btrfs_item_ptr_offset(leaf, slot),
3121 item_size - split_offset);
3122 btrfs_mark_buffer_dirty(leaf);
3123
3124 ret = 0;
3125 if (btrfs_leaf_free_space(root, leaf) < 0) {
3126 btrfs_print_leaf(root, leaf);
3127 BUG();
3128 }
3129 kfree(buf);
3130 return ret;
3131}
3132
3133/*
Chris Masond352ac62008-09-29 15:18:18 -04003134 * make the item pointed to by the path smaller. new_size indicates
3135 * how small to make it, and from_end tells us if we just chop bytes
3136 * off the end of the item or if we shift the item to chop bytes off
3137 * the front.
3138 */
Chris Masonb18c6682007-04-17 13:26:50 -04003139int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3140 struct btrfs_root *root,
3141 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003142 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003143{
3144 int ret = 0;
3145 int slot;
3146 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003147 struct extent_buffer *leaf;
3148 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003149 u32 nritems;
3150 unsigned int data_end;
3151 unsigned int old_data_start;
3152 unsigned int old_size;
3153 unsigned int size_diff;
3154 int i;
3155
3156 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003157 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003158 slot = path->slots[0];
3159
3160 old_size = btrfs_item_size_nr(leaf, slot);
3161 if (old_size == new_size)
3162 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003163
Chris Mason5f39d392007-10-15 16:14:19 -04003164 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003165 data_end = leaf_data_end(root, leaf);
3166
Chris Mason5f39d392007-10-15 16:14:19 -04003167 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003168
Chris Masonb18c6682007-04-17 13:26:50 -04003169 size_diff = old_size - new_size;
3170
3171 BUG_ON(slot < 0);
3172 BUG_ON(slot >= nritems);
3173
3174 /*
3175 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3176 */
3177 /* first correct the data pointers */
3178 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003179 u32 ioff;
3180 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003181
3182 if (!leaf->map_token) {
3183 map_extent_buffer(leaf, (unsigned long)item,
3184 sizeof(struct btrfs_item),
3185 &leaf->map_token, &leaf->kaddr,
3186 &leaf->map_start, &leaf->map_len,
3187 KM_USER1);
3188 }
3189
Chris Mason5f39d392007-10-15 16:14:19 -04003190 ioff = btrfs_item_offset(leaf, item);
3191 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003192 }
Chris Masondb945352007-10-15 16:15:53 -04003193
3194 if (leaf->map_token) {
3195 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3196 leaf->map_token = NULL;
3197 }
3198
Chris Masonb18c6682007-04-17 13:26:50 -04003199 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003200 if (from_end) {
3201 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3202 data_end + size_diff, btrfs_leaf_data(leaf) +
3203 data_end, old_data_start + new_size - data_end);
3204 } else {
3205 struct btrfs_disk_key disk_key;
3206 u64 offset;
3207
3208 btrfs_item_key(leaf, &disk_key, slot);
3209
3210 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3211 unsigned long ptr;
3212 struct btrfs_file_extent_item *fi;
3213
3214 fi = btrfs_item_ptr(leaf, slot,
3215 struct btrfs_file_extent_item);
3216 fi = (struct btrfs_file_extent_item *)(
3217 (unsigned long)fi - size_diff);
3218
3219 if (btrfs_file_extent_type(leaf, fi) ==
3220 BTRFS_FILE_EXTENT_INLINE) {
3221 ptr = btrfs_item_ptr_offset(leaf, slot);
3222 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003223 (unsigned long)fi,
3224 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003225 disk_bytenr));
3226 }
3227 }
3228
3229 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3230 data_end + size_diff, btrfs_leaf_data(leaf) +
3231 data_end, old_data_start - data_end);
3232
3233 offset = btrfs_disk_key_offset(&disk_key);
3234 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3235 btrfs_set_item_key(leaf, &disk_key, slot);
3236 if (slot == 0)
3237 fixup_low_keys(trans, root, path, &disk_key, 1);
3238 }
Chris Mason5f39d392007-10-15 16:14:19 -04003239
3240 item = btrfs_item_nr(leaf, slot);
3241 btrfs_set_item_size(leaf, item, new_size);
3242 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003243
3244 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003245 if (btrfs_leaf_free_space(root, leaf) < 0) {
3246 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003247 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003248 }
Chris Masonb18c6682007-04-17 13:26:50 -04003249 return ret;
3250}
3251
Chris Masond352ac62008-09-29 15:18:18 -04003252/*
3253 * make the item pointed to by the path bigger, data_size is the new size.
3254 */
Chris Mason5f39d392007-10-15 16:14:19 -04003255int btrfs_extend_item(struct btrfs_trans_handle *trans,
3256 struct btrfs_root *root, struct btrfs_path *path,
3257 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003258{
3259 int ret = 0;
3260 int slot;
3261 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003262 struct extent_buffer *leaf;
3263 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003264 u32 nritems;
3265 unsigned int data_end;
3266 unsigned int old_data;
3267 unsigned int old_size;
3268 int i;
3269
3270 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003271 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003272
Chris Mason5f39d392007-10-15 16:14:19 -04003273 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003274 data_end = leaf_data_end(root, leaf);
3275
Chris Mason5f39d392007-10-15 16:14:19 -04003276 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3277 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003278 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003279 }
Chris Mason6567e832007-04-16 09:22:45 -04003280 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003281 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003282
3283 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003284 if (slot >= nritems) {
3285 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003286 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3287 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003288 BUG_ON(1);
3289 }
Chris Mason6567e832007-04-16 09:22:45 -04003290
3291 /*
3292 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3293 */
3294 /* first correct the data pointers */
3295 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003296 u32 ioff;
3297 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003298
3299 if (!leaf->map_token) {
3300 map_extent_buffer(leaf, (unsigned long)item,
3301 sizeof(struct btrfs_item),
3302 &leaf->map_token, &leaf->kaddr,
3303 &leaf->map_start, &leaf->map_len,
3304 KM_USER1);
3305 }
Chris Mason5f39d392007-10-15 16:14:19 -04003306 ioff = btrfs_item_offset(leaf, item);
3307 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003308 }
Chris Mason5f39d392007-10-15 16:14:19 -04003309
Chris Masondb945352007-10-15 16:15:53 -04003310 if (leaf->map_token) {
3311 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3312 leaf->map_token = NULL;
3313 }
3314
Chris Mason6567e832007-04-16 09:22:45 -04003315 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003316 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003317 data_end - data_size, btrfs_leaf_data(leaf) +
3318 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003319
Chris Mason6567e832007-04-16 09:22:45 -04003320 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003321 old_size = btrfs_item_size_nr(leaf, slot);
3322 item = btrfs_item_nr(leaf, slot);
3323 btrfs_set_item_size(leaf, item, old_size + data_size);
3324 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003325
3326 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003327 if (btrfs_leaf_free_space(root, leaf) < 0) {
3328 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003329 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003330 }
Chris Mason6567e832007-04-16 09:22:45 -04003331 return ret;
3332}
3333
Chris Mason74123bd2007-02-02 11:05:29 -05003334/*
Chris Masond352ac62008-09-29 15:18:18 -04003335 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003336 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003337 * Returns the number of keys that were inserted.
3338 */
3339int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3340 struct btrfs_root *root,
3341 struct btrfs_path *path,
3342 struct btrfs_key *cpu_key, u32 *data_size,
3343 int nr)
3344{
3345 struct extent_buffer *leaf;
3346 struct btrfs_item *item;
3347 int ret = 0;
3348 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003349 int i;
3350 u32 nritems;
3351 u32 total_data = 0;
3352 u32 total_size = 0;
3353 unsigned int data_end;
3354 struct btrfs_disk_key disk_key;
3355 struct btrfs_key found_key;
3356
Yan Zheng87b29b22008-12-17 10:21:48 -05003357 for (i = 0; i < nr; i++) {
3358 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3359 BTRFS_LEAF_DATA_SIZE(root)) {
3360 break;
3361 nr = i;
3362 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003363 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003364 total_size += data_size[i] + sizeof(struct btrfs_item);
3365 }
3366 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003367
Josef Bacikf3465ca2008-11-12 14:19:50 -05003368 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3369 if (ret == 0)
3370 return -EEXIST;
3371 if (ret < 0)
3372 goto out;
3373
Josef Bacikf3465ca2008-11-12 14:19:50 -05003374 leaf = path->nodes[0];
3375
3376 nritems = btrfs_header_nritems(leaf);
3377 data_end = leaf_data_end(root, leaf);
3378
3379 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3380 for (i = nr; i >= 0; i--) {
3381 total_data -= data_size[i];
3382 total_size -= data_size[i] + sizeof(struct btrfs_item);
3383 if (total_size < btrfs_leaf_free_space(root, leaf))
3384 break;
3385 }
3386 nr = i;
3387 }
3388
3389 slot = path->slots[0];
3390 BUG_ON(slot < 0);
3391
3392 if (slot != nritems) {
3393 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3394
3395 item = btrfs_item_nr(leaf, slot);
3396 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3397
3398 /* figure out how many keys we can insert in here */
3399 total_data = data_size[0];
3400 for (i = 1; i < nr; i++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003401 if (btrfs_comp_cpu_keys(&found_key, cpu_key + i) <= 0)
Josef Bacikf3465ca2008-11-12 14:19:50 -05003402 break;
3403 total_data += data_size[i];
3404 }
3405 nr = i;
3406
3407 if (old_data < data_end) {
3408 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003409 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003410 slot, old_data, data_end);
3411 BUG_ON(1);
3412 }
3413 /*
3414 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3415 */
3416 /* first correct the data pointers */
3417 WARN_ON(leaf->map_token);
3418 for (i = slot; i < nritems; i++) {
3419 u32 ioff;
3420
3421 item = btrfs_item_nr(leaf, i);
3422 if (!leaf->map_token) {
3423 map_extent_buffer(leaf, (unsigned long)item,
3424 sizeof(struct btrfs_item),
3425 &leaf->map_token, &leaf->kaddr,
3426 &leaf->map_start, &leaf->map_len,
3427 KM_USER1);
3428 }
3429
3430 ioff = btrfs_item_offset(leaf, item);
3431 btrfs_set_item_offset(leaf, item, ioff - total_data);
3432 }
3433 if (leaf->map_token) {
3434 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3435 leaf->map_token = NULL;
3436 }
3437
3438 /* shift the items */
3439 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3440 btrfs_item_nr_offset(slot),
3441 (nritems - slot) * sizeof(struct btrfs_item));
3442
3443 /* shift the data */
3444 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3445 data_end - total_data, btrfs_leaf_data(leaf) +
3446 data_end, old_data - data_end);
3447 data_end = old_data;
3448 } else {
3449 /*
3450 * this sucks but it has to be done, if we are inserting at
3451 * the end of the leaf only insert 1 of the items, since we
3452 * have no way of knowing whats on the next leaf and we'd have
3453 * to drop our current locks to figure it out
3454 */
3455 nr = 1;
3456 }
3457
3458 /* setup the item for the new data */
3459 for (i = 0; i < nr; i++) {
3460 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3461 btrfs_set_item_key(leaf, &disk_key, slot + i);
3462 item = btrfs_item_nr(leaf, slot + i);
3463 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3464 data_end -= data_size[i];
3465 btrfs_set_item_size(leaf, item, data_size[i]);
3466 }
3467 btrfs_set_header_nritems(leaf, nritems + nr);
3468 btrfs_mark_buffer_dirty(leaf);
3469
3470 ret = 0;
3471 if (slot == 0) {
3472 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3473 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3474 }
3475
3476 if (btrfs_leaf_free_space(root, leaf) < 0) {
3477 btrfs_print_leaf(root, leaf);
3478 BUG();
3479 }
3480out:
3481 if (!ret)
3482 ret = nr;
3483 return ret;
3484}
3485
3486/*
Chris Mason44871b12009-03-13 10:04:31 -04003487 * this is a helper for btrfs_insert_empty_items, the main goal here is
3488 * to save stack depth by doing the bulk of the work in a function
3489 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05003490 */
Chris Mason44871b12009-03-13 10:04:31 -04003491static noinline_for_stack int
3492setup_items_for_insert(struct btrfs_trans_handle *trans,
3493 struct btrfs_root *root, struct btrfs_path *path,
3494 struct btrfs_key *cpu_key, u32 *data_size,
3495 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003496{
Chris Mason5f39d392007-10-15 16:14:19 -04003497 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05003498 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003499 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003500 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003501 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003502 int ret;
3503 struct extent_buffer *leaf;
3504 int slot;
Chris Masone2fa7222007-03-12 16:22:34 -04003505
Chris Mason5f39d392007-10-15 16:14:19 -04003506 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003507 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003508
Chris Mason5f39d392007-10-15 16:14:19 -04003509 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003510 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003511
Chris Masonf25956c2008-09-12 15:32:53 -04003512 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003513 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003514 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003515 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003516 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003517 }
Chris Mason5f39d392007-10-15 16:14:19 -04003518
Chris Masonbe0e5c02007-01-26 15:51:26 -05003519 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003520 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003521
Chris Mason5f39d392007-10-15 16:14:19 -04003522 if (old_data < data_end) {
3523 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003524 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003525 slot, old_data, data_end);
3526 BUG_ON(1);
3527 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003528 /*
3529 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3530 */
3531 /* first correct the data pointers */
Chris Masondb945352007-10-15 16:15:53 -04003532 WARN_ON(leaf->map_token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003533 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003534 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003535
Chris Mason5f39d392007-10-15 16:14:19 -04003536 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003537 if (!leaf->map_token) {
3538 map_extent_buffer(leaf, (unsigned long)item,
3539 sizeof(struct btrfs_item),
3540 &leaf->map_token, &leaf->kaddr,
3541 &leaf->map_start, &leaf->map_len,
3542 KM_USER1);
3543 }
3544
Chris Mason5f39d392007-10-15 16:14:19 -04003545 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003546 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003547 }
Chris Masondb945352007-10-15 16:15:53 -04003548 if (leaf->map_token) {
3549 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3550 leaf->map_token = NULL;
3551 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003552
3553 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003554 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003555 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003556 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003557
3558 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003559 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003560 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003561 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003562 data_end = old_data;
3563 }
Chris Mason5f39d392007-10-15 16:14:19 -04003564
Chris Mason62e27492007-03-15 12:56:47 -04003565 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003566 for (i = 0; i < nr; i++) {
3567 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3568 btrfs_set_item_key(leaf, &disk_key, slot + i);
3569 item = btrfs_item_nr(leaf, slot + i);
3570 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3571 data_end -= data_size[i];
3572 btrfs_set_item_size(leaf, item, data_size[i]);
3573 }
Chris Mason44871b12009-03-13 10:04:31 -04003574
Chris Mason9c583092008-01-29 15:15:18 -05003575 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003576
3577 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003578 if (slot == 0) {
Chris Mason44871b12009-03-13 10:04:31 -04003579 struct btrfs_disk_key disk_key;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003580 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003581 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003582 }
Chris Masonb9473432009-03-13 11:00:37 -04003583 btrfs_unlock_up_safe(path, 1);
3584 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003585
Chris Mason5f39d392007-10-15 16:14:19 -04003586 if (btrfs_leaf_free_space(root, leaf) < 0) {
3587 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003588 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003589 }
Chris Mason44871b12009-03-13 10:04:31 -04003590 return ret;
3591}
3592
3593/*
3594 * Given a key and some data, insert items into the tree.
3595 * This does all the path init required, making room in the tree if needed.
3596 */
3597int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
3598 struct btrfs_root *root,
3599 struct btrfs_path *path,
3600 struct btrfs_key *cpu_key, u32 *data_size,
3601 int nr)
3602{
3603 struct extent_buffer *leaf;
3604 int ret = 0;
3605 int slot;
3606 int i;
3607 u32 total_size = 0;
3608 u32 total_data = 0;
3609
3610 for (i = 0; i < nr; i++)
3611 total_data += data_size[i];
3612
3613 total_size = total_data + (nr * sizeof(struct btrfs_item));
3614 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3615 if (ret == 0)
3616 return -EEXIST;
3617 if (ret < 0)
3618 goto out;
3619
3620 leaf = path->nodes[0];
3621 slot = path->slots[0];
3622 BUG_ON(slot < 0);
3623
3624 ret = setup_items_for_insert(trans, root, path, cpu_key, data_size,
3625 total_data, total_size, nr);
3626
Chris Masoned2ff2c2007-03-01 18:59:40 -05003627out:
Chris Mason62e27492007-03-15 12:56:47 -04003628 return ret;
3629}
3630
3631/*
3632 * Given a key and some data, insert an item into the tree.
3633 * This does all the path init required, making room in the tree if needed.
3634 */
Chris Masone089f052007-03-16 16:20:31 -04003635int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3636 *root, struct btrfs_key *cpu_key, void *data, u32
3637 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003638{
3639 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003640 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003641 struct extent_buffer *leaf;
3642 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003643
Chris Mason2c90e5d2007-04-02 10:50:19 -04003644 path = btrfs_alloc_path();
3645 BUG_ON(!path);
Chris Mason2c90e5d2007-04-02 10:50:19 -04003646 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003647 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003648 leaf = path->nodes[0];
3649 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3650 write_extent_buffer(leaf, data, ptr, data_size);
3651 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003652 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003653 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003654 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003655}
3656
Chris Mason74123bd2007-02-02 11:05:29 -05003657/*
Chris Mason5de08d72007-02-24 06:24:44 -05003658 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003659 *
Chris Masond352ac62008-09-29 15:18:18 -04003660 * the tree should have been previously balanced so the deletion does not
3661 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003662 */
Chris Masone089f052007-03-16 16:20:31 -04003663static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3664 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003665{
Chris Mason5f39d392007-10-15 16:14:19 -04003666 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003667 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003668 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003669 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003670
Chris Mason5f39d392007-10-15 16:14:19 -04003671 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003672 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003673 memmove_extent_buffer(parent,
3674 btrfs_node_key_ptr_offset(slot),
3675 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003676 sizeof(struct btrfs_key_ptr) *
3677 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003678 }
Chris Mason7518a232007-03-12 12:01:18 -04003679 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003680 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003681 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003682 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003683 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003684 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003685 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003686 struct btrfs_disk_key disk_key;
3687
3688 btrfs_node_key(parent, &disk_key, 0);
3689 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003690 if (wret)
3691 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003692 }
Chris Masond6025572007-03-30 14:27:56 -04003693 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003694 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003695}
3696
Chris Mason74123bd2007-02-02 11:05:29 -05003697/*
Chris Mason323ac952008-10-01 19:05:46 -04003698 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003699 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04003700 *
3701 * This deletes the pointer in path->nodes[1] and frees the leaf
3702 * block extent. zero is returned if it all worked out, < 0 otherwise.
3703 *
3704 * The path must have already been setup for deleting the leaf, including
3705 * all the proper balancing. path->nodes[1] must be locked.
3706 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003707static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3708 struct btrfs_root *root,
3709 struct btrfs_path *path,
3710 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04003711{
3712 int ret;
Chris Mason323ac952008-10-01 19:05:46 -04003713
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003714 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Chris Mason323ac952008-10-01 19:05:46 -04003715 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3716 if (ret)
3717 return ret;
3718
Chris Mason4d081c42009-02-04 09:31:28 -05003719 /*
3720 * btrfs_free_extent is expensive, we want to make sure we
3721 * aren't holding any locks when we call it
3722 */
3723 btrfs_unlock_up_safe(path, 0);
3724
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003725 ret = btrfs_free_extent(trans, root, leaf->start, leaf->len,
3726 0, root->root_key.objectid, 0, 0);
Chris Mason323ac952008-10-01 19:05:46 -04003727 return ret;
3728}
3729/*
Chris Mason74123bd2007-02-02 11:05:29 -05003730 * delete the item at the leaf level in path. If that empties
3731 * the leaf, remove it from the tree
3732 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003733int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3734 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003735{
Chris Mason5f39d392007-10-15 16:14:19 -04003736 struct extent_buffer *leaf;
3737 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003738 int last_off;
3739 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003740 int ret = 0;
3741 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003742 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003743 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003744
Chris Mason5f39d392007-10-15 16:14:19 -04003745 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003746 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3747
3748 for (i = 0; i < nr; i++)
3749 dsize += btrfs_item_size_nr(leaf, slot + i);
3750
Chris Mason5f39d392007-10-15 16:14:19 -04003751 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003752
Chris Mason85e21ba2008-01-29 15:11:36 -05003753 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003754 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003755
3756 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003757 data_end + dsize,
3758 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003759 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003760
Chris Mason85e21ba2008-01-29 15:11:36 -05003761 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003762 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003763
Chris Mason5f39d392007-10-15 16:14:19 -04003764 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003765 if (!leaf->map_token) {
3766 map_extent_buffer(leaf, (unsigned long)item,
3767 sizeof(struct btrfs_item),
3768 &leaf->map_token, &leaf->kaddr,
3769 &leaf->map_start, &leaf->map_len,
3770 KM_USER1);
3771 }
Chris Mason5f39d392007-10-15 16:14:19 -04003772 ioff = btrfs_item_offset(leaf, item);
3773 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003774 }
Chris Masondb945352007-10-15 16:15:53 -04003775
3776 if (leaf->map_token) {
3777 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3778 leaf->map_token = NULL;
3779 }
3780
Chris Mason5f39d392007-10-15 16:14:19 -04003781 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003782 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003783 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003784 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003785 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003786 btrfs_set_header_nritems(leaf, nritems - nr);
3787 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003788
Chris Mason74123bd2007-02-02 11:05:29 -05003789 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003790 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003791 if (leaf == root->node) {
3792 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003793 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003794 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003795 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003796 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003797 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003798 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003799 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003800 struct btrfs_disk_key disk_key;
3801
3802 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003803 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003804 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003805 if (wret)
3806 ret = wret;
3807 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003808
Chris Mason74123bd2007-02-02 11:05:29 -05003809 /* delete the leaf if it is mostly empty */
Chris Masoncfbb9302009-05-18 10:41:58 -04003810 if (used < BTRFS_LEAF_DATA_SIZE(root) / 2) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003811 /* push_leaf_left fixes the path.
3812 * make sure the path still points to our leaf
3813 * for possible call to del_ptr below
3814 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003815 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003816 extent_buffer_get(leaf);
3817
Chris Masonb9473432009-03-13 11:00:37 -04003818 btrfs_set_path_blocking(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003819 wret = push_leaf_left(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003820 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003821 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003822
3823 if (path->nodes[0] == leaf &&
3824 btrfs_header_nritems(leaf)) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003825 wret = push_leaf_right(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003826 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003827 ret = wret;
3828 }
Chris Mason5f39d392007-10-15 16:14:19 -04003829
3830 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003831 path->slots[1] = slot;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003832 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003833 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003834 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003835 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003836 /* if we're still in the path, make sure
3837 * we're dirty. Otherwise, one of the
3838 * push_leaf functions must have already
3839 * dirtied this buffer
3840 */
3841 if (path->nodes[0] == leaf)
3842 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003843 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003844 }
Chris Masond5719762007-03-23 10:01:08 -04003845 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003846 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003847 }
3848 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003849 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003850}
3851
Chris Mason97571fd2007-02-24 13:39:08 -05003852/*
Chris Mason925baed2008-06-25 16:01:30 -04003853 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003854 * returns 0 if it found something or 1 if there are no lesser leaves.
3855 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003856 *
3857 * This may release the path, and so you may lose any locks held at the
3858 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003859 */
3860int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3861{
Chris Mason925baed2008-06-25 16:01:30 -04003862 struct btrfs_key key;
3863 struct btrfs_disk_key found_key;
3864 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003865
Chris Mason925baed2008-06-25 16:01:30 -04003866 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003867
Chris Mason925baed2008-06-25 16:01:30 -04003868 if (key.offset > 0)
3869 key.offset--;
3870 else if (key.type > 0)
3871 key.type--;
3872 else if (key.objectid > 0)
3873 key.objectid--;
3874 else
3875 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003876
Chris Mason925baed2008-06-25 16:01:30 -04003877 btrfs_release_path(root, path);
3878 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3879 if (ret < 0)
3880 return ret;
3881 btrfs_item_key(path->nodes[0], &found_key, 0);
3882 ret = comp_keys(&found_key, &key);
3883 if (ret < 0)
3884 return 0;
3885 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003886}
3887
Chris Mason3f157a22008-06-25 16:01:31 -04003888/*
3889 * A helper function to walk down the tree starting at min_key, and looking
3890 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003891 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003892 *
3893 * This does not cow, but it does stuff the starting key it finds back
3894 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3895 * key and get a writable path.
3896 *
3897 * This does lock as it descends, and path->keep_locks should be set
3898 * to 1 by the caller.
3899 *
3900 * This honors path->lowest_level to prevent descent past a given level
3901 * of the tree.
3902 *
Chris Masond352ac62008-09-29 15:18:18 -04003903 * min_trans indicates the oldest transaction that you are interested
3904 * in walking through. Any nodes or leaves older than min_trans are
3905 * skipped over (without reading them).
3906 *
Chris Mason3f157a22008-06-25 16:01:31 -04003907 * returns zero if something useful was found, < 0 on error and 1 if there
3908 * was nothing in the tree that matched the search criteria.
3909 */
3910int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003911 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003912 struct btrfs_path *path, int cache_only,
3913 u64 min_trans)
3914{
3915 struct extent_buffer *cur;
3916 struct btrfs_key found_key;
3917 int slot;
Yan96524802008-07-24 12:19:49 -04003918 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003919 u32 nritems;
3920 int level;
3921 int ret = 1;
3922
Chris Mason934d3752008-12-08 16:43:10 -05003923 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003924again:
3925 cur = btrfs_lock_root_node(root);
3926 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003927 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003928 path->nodes[level] = cur;
3929 path->locks[level] = 1;
3930
3931 if (btrfs_header_generation(cur) < min_trans) {
3932 ret = 1;
3933 goto out;
3934 }
Chris Masond3977122009-01-05 21:25:51 -05003935 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04003936 nritems = btrfs_header_nritems(cur);
3937 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04003938 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003939
Chris Mason323ac952008-10-01 19:05:46 -04003940 /* at the lowest level, we're done, setup the path and exit */
3941 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04003942 if (slot >= nritems)
3943 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04003944 ret = 0;
3945 path->slots[level] = slot;
3946 btrfs_item_key_to_cpu(cur, &found_key, slot);
3947 goto out;
3948 }
Yan96524802008-07-24 12:19:49 -04003949 if (sret && slot > 0)
3950 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04003951 /*
3952 * check this node pointer against the cache_only and
3953 * min_trans parameters. If it isn't in cache or is too
3954 * old, skip to the next one.
3955 */
Chris Masond3977122009-01-05 21:25:51 -05003956 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04003957 u64 blockptr;
3958 u64 gen;
3959 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04003960 struct btrfs_disk_key disk_key;
3961
Chris Mason3f157a22008-06-25 16:01:31 -04003962 blockptr = btrfs_node_blockptr(cur, slot);
3963 gen = btrfs_node_ptr_generation(cur, slot);
3964 if (gen < min_trans) {
3965 slot++;
3966 continue;
3967 }
3968 if (!cache_only)
3969 break;
3970
Chris Masone02119d2008-09-05 16:13:11 -04003971 if (max_key) {
3972 btrfs_node_key(cur, &disk_key, slot);
3973 if (comp_keys(&disk_key, max_key) >= 0) {
3974 ret = 1;
3975 goto out;
3976 }
3977 }
3978
Chris Mason3f157a22008-06-25 16:01:31 -04003979 tmp = btrfs_find_tree_block(root, blockptr,
3980 btrfs_level_size(root, level - 1));
3981
3982 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
3983 free_extent_buffer(tmp);
3984 break;
3985 }
3986 if (tmp)
3987 free_extent_buffer(tmp);
3988 slot++;
3989 }
Chris Masone02119d2008-09-05 16:13:11 -04003990find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04003991 /*
3992 * we didn't find a candidate key in this node, walk forward
3993 * and find another one
3994 */
3995 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04003996 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003997 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04003998 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04003999 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04004000 if (sret == 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04004001 btrfs_release_path(root, path);
4002 goto again;
4003 } else {
4004 goto out;
4005 }
4006 }
4007 /* save our key for returning back */
4008 btrfs_node_key_to_cpu(cur, &found_key, slot);
4009 path->slots[level] = slot;
4010 if (level == path->lowest_level) {
4011 ret = 0;
4012 unlock_up(path, level, 1);
4013 goto out;
4014 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05004015 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004016 cur = read_node_slot(root, cur, slot);
4017
4018 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004019
Chris Mason3f157a22008-06-25 16:01:31 -04004020 path->locks[level - 1] = 1;
4021 path->nodes[level - 1] = cur;
4022 unlock_up(path, level, 1);
Chris Mason4008c042009-02-12 14:09:45 -05004023 btrfs_clear_path_blocking(path, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04004024 }
4025out:
4026 if (ret == 0)
4027 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004028 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004029 return ret;
4030}
4031
4032/*
4033 * this is similar to btrfs_next_leaf, but does not try to preserve
4034 * and fixup the path. It looks for and returns the next key in the
4035 * tree based on the current path and the cache_only and min_trans
4036 * parameters.
4037 *
4038 * 0 is returned if another key is found, < 0 if there are any errors
4039 * and 1 is returned if there are no higher keys in the tree
4040 *
4041 * path->keep_locks should be set to 1 on the search made before
4042 * calling this function.
4043 */
Chris Masone7a84562008-06-25 16:01:31 -04004044int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04004045 struct btrfs_key *key, int lowest_level,
4046 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04004047{
4048 int level = lowest_level;
4049 int slot;
4050 struct extent_buffer *c;
4051
Chris Mason934d3752008-12-08 16:43:10 -05004052 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05004053 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04004054 if (!path->nodes[level])
4055 return 1;
4056
4057 slot = path->slots[level] + 1;
4058 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04004059next:
Chris Masone7a84562008-06-25 16:01:31 -04004060 if (slot >= btrfs_header_nritems(c)) {
4061 level++;
Chris Masond3977122009-01-05 21:25:51 -05004062 if (level == BTRFS_MAX_LEVEL)
Chris Masone7a84562008-06-25 16:01:31 -04004063 return 1;
Chris Masone7a84562008-06-25 16:01:31 -04004064 continue;
4065 }
4066 if (level == 0)
4067 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004068 else {
4069 u64 blockptr = btrfs_node_blockptr(c, slot);
4070 u64 gen = btrfs_node_ptr_generation(c, slot);
4071
4072 if (cache_only) {
4073 struct extent_buffer *cur;
4074 cur = btrfs_find_tree_block(root, blockptr,
4075 btrfs_level_size(root, level - 1));
4076 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4077 slot++;
4078 if (cur)
4079 free_extent_buffer(cur);
4080 goto next;
4081 }
4082 free_extent_buffer(cur);
4083 }
4084 if (gen < min_trans) {
4085 slot++;
4086 goto next;
4087 }
Chris Masone7a84562008-06-25 16:01:31 -04004088 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004089 }
Chris Masone7a84562008-06-25 16:01:31 -04004090 return 0;
4091 }
4092 return 1;
4093}
4094
Chris Mason7bb86312007-12-11 09:25:06 -05004095/*
Chris Mason925baed2008-06-25 16:01:30 -04004096 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004097 * returns 0 if it found something or 1 if there are no greater leaves.
4098 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004099 */
Chris Mason234b63a2007-03-13 10:46:10 -04004100int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004101{
4102 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04004103 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04004104 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04004105 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04004106 struct btrfs_key key;
4107 u32 nritems;
4108 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04004109 int old_spinning = path->leave_spinning;
4110 int force_blocking = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004111
4112 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004113 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004114 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004115
Chris Mason8e73f272009-04-03 10:14:18 -04004116 /*
4117 * we take the blocks in an order that upsets lockdep. Using
4118 * blocking mode is the only way around it.
4119 */
4120#ifdef CONFIG_DEBUG_LOCK_ALLOC
4121 force_blocking = 1;
4122#endif
Chris Mason925baed2008-06-25 16:01:30 -04004123
Chris Mason8e73f272009-04-03 10:14:18 -04004124 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4125again:
4126 level = 1;
4127 next = NULL;
Chris Mason925baed2008-06-25 16:01:30 -04004128 btrfs_release_path(root, path);
Chris Mason8e73f272009-04-03 10:14:18 -04004129
Chris Masona2135012008-06-25 16:01:30 -04004130 path->keep_locks = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004131
4132 if (!force_blocking)
4133 path->leave_spinning = 1;
4134
Chris Mason925baed2008-06-25 16:01:30 -04004135 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4136 path->keep_locks = 0;
4137
4138 if (ret < 0)
4139 return ret;
4140
Chris Masona2135012008-06-25 16:01:30 -04004141 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004142 /*
4143 * by releasing the path above we dropped all our locks. A balance
4144 * could have added more items next to the key that used to be
4145 * at the very end of the block. So, check again here and
4146 * advance the path if there are now more items available.
4147 */
Chris Masona2135012008-06-25 16:01:30 -04004148 if (nritems > 0 && path->slots[0] < nritems - 1) {
Chris Mason168fd7d2008-06-25 16:01:30 -04004149 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04004150 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004151 goto done;
4152 }
Chris Masond97e63b2007-02-20 16:40:44 -05004153
Chris Masond3977122009-01-05 21:25:51 -05004154 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04004155 if (!path->nodes[level]) {
4156 ret = 1;
4157 goto done;
4158 }
Chris Mason5f39d392007-10-15 16:14:19 -04004159
Chris Masond97e63b2007-02-20 16:40:44 -05004160 slot = path->slots[level] + 1;
4161 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004162 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004163 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04004164 if (level == BTRFS_MAX_LEVEL) {
4165 ret = 1;
4166 goto done;
4167 }
Chris Masond97e63b2007-02-20 16:40:44 -05004168 continue;
4169 }
Chris Mason5f39d392007-10-15 16:14:19 -04004170
Chris Mason925baed2008-06-25 16:01:30 -04004171 if (next) {
4172 btrfs_tree_unlock(next);
Chris Mason5f39d392007-10-15 16:14:19 -04004173 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004174 }
Chris Mason5f39d392007-10-15 16:14:19 -04004175
Chris Mason8e73f272009-04-03 10:14:18 -04004176 next = c;
4177 ret = read_block_for_search(NULL, root, path, &next, level,
4178 slot, &key);
4179 if (ret == -EAGAIN)
4180 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04004181
Chris Mason76a05b32009-05-14 13:24:30 -04004182 if (ret < 0) {
4183 btrfs_release_path(root, path);
4184 goto done;
4185 }
4186
Chris Mason5cd57b22008-06-25 16:01:30 -04004187 if (!path->skip_locking) {
Chris Mason8e73f272009-04-03 10:14:18 -04004188 ret = btrfs_try_spin_lock(next);
4189 if (!ret) {
4190 btrfs_set_path_blocking(path);
4191 btrfs_tree_lock(next);
4192 if (!force_blocking)
4193 btrfs_clear_path_blocking(path, next);
4194 }
4195 if (force_blocking)
4196 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004197 }
Chris Masond97e63b2007-02-20 16:40:44 -05004198 break;
4199 }
4200 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004201 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004202 level--;
4203 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004204 if (path->locks[level])
4205 btrfs_tree_unlock(c);
Chris Mason8e73f272009-04-03 10:14:18 -04004206
Chris Mason5f39d392007-10-15 16:14:19 -04004207 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004208 path->nodes[level] = next;
4209 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004210 if (!path->skip_locking)
4211 path->locks[level] = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004212
Chris Masond97e63b2007-02-20 16:40:44 -05004213 if (!level)
4214 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004215
Chris Mason8e73f272009-04-03 10:14:18 -04004216 ret = read_block_for_search(NULL, root, path, &next, level,
4217 0, &key);
4218 if (ret == -EAGAIN)
4219 goto again;
4220
Chris Mason76a05b32009-05-14 13:24:30 -04004221 if (ret < 0) {
4222 btrfs_release_path(root, path);
4223 goto done;
4224 }
4225
Chris Mason5cd57b22008-06-25 16:01:30 -04004226 if (!path->skip_locking) {
Chris Masonb9447ef2009-03-09 11:45:38 -04004227 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04004228 ret = btrfs_try_spin_lock(next);
4229 if (!ret) {
4230 btrfs_set_path_blocking(path);
4231 btrfs_tree_lock(next);
4232 if (!force_blocking)
4233 btrfs_clear_path_blocking(path, next);
4234 }
4235 if (force_blocking)
4236 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004237 }
Chris Masond97e63b2007-02-20 16:40:44 -05004238 }
Chris Mason8e73f272009-04-03 10:14:18 -04004239 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004240done:
4241 unlock_up(path, 0, 1);
Chris Mason8e73f272009-04-03 10:14:18 -04004242 path->leave_spinning = old_spinning;
4243 if (!old_spinning)
4244 btrfs_set_path_blocking(path);
4245
4246 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05004247}
Chris Mason0b86a832008-03-24 15:01:56 -04004248
Chris Mason3f157a22008-06-25 16:01:31 -04004249/*
4250 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4251 * searching until it gets past min_objectid or finds an item of 'type'
4252 *
4253 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4254 */
Chris Mason0b86a832008-03-24 15:01:56 -04004255int btrfs_previous_item(struct btrfs_root *root,
4256 struct btrfs_path *path, u64 min_objectid,
4257 int type)
4258{
4259 struct btrfs_key found_key;
4260 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004261 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004262 int ret;
4263
Chris Masond3977122009-01-05 21:25:51 -05004264 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004265 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004266 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004267 ret = btrfs_prev_leaf(root, path);
4268 if (ret != 0)
4269 return ret;
4270 } else {
4271 path->slots[0]--;
4272 }
4273 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004274 nritems = btrfs_header_nritems(leaf);
4275 if (nritems == 0)
4276 return 1;
4277 if (path->slots[0] == nritems)
4278 path->slots[0]--;
4279
Chris Mason0b86a832008-03-24 15:01:56 -04004280 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4281 if (found_key.type == type)
4282 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004283 if (found_key.objectid < min_objectid)
4284 break;
4285 if (found_key.objectid == min_objectid &&
4286 found_key.type < type)
4287 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004288 }
4289 return 1;
4290}