blob: 3764248bdc059d4ec05bf5cfe1d3b146d7559c24 [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;
Chris Mason4aec2b52007-12-18 16:25:45 -0500200 struct btrfs_root *new_root;
Chris Masonbe20aa92007-12-17 20:14:01 -0500201
Chris Mason4aec2b52007-12-18 16:25:45 -0500202 new_root = kmalloc(sizeof(*new_root), GFP_NOFS);
203 if (!new_root)
204 return -ENOMEM;
205
206 memcpy(new_root, root, sizeof(*new_root));
207 new_root->root_key.objectid = new_root_objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500208
209 WARN_ON(root->ref_cows && trans->transid !=
210 root->fs_info->running_transaction->transid);
211 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
212
213 level = btrfs_header_level(buf);
214 nritems = btrfs_header_nritems(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400215
216 cow = btrfs_alloc_free_block(trans, new_root, buf->len, 0,
217 new_root_objectid, trans->transid,
218 level, buf->start, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500219 if (IS_ERR(cow)) {
220 kfree(new_root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500221 return PTR_ERR(cow);
Chris Mason4aec2b52007-12-18 16:25:45 -0500222 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500223
224 copy_extent_buffer(cow, buf, 0, 0, cow->len);
225 btrfs_set_header_bytenr(cow, cow->start);
226 btrfs_set_header_generation(cow, trans->transid);
227 btrfs_set_header_owner(cow, new_root_objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -0400228 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN);
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);
Zheng Yan31840ae2008-09-23 13:14:14 -0400235 ret = btrfs_inc_ref(trans, new_root, buf, cow, NULL);
Chris Mason4aec2b52007-12-18 16:25:45 -0500236 kfree(new_root);
237
Chris Masonbe20aa92007-12-17 20:14:01 -0500238 if (ret)
239 return ret;
240
241 btrfs_mark_buffer_dirty(cow);
242 *cow_ret = cow;
243 return 0;
244}
245
Chris Masond352ac62008-09-29 15:18:18 -0400246/*
Chris Masond3977122009-01-05 21:25:51 -0500247 * does the dirty work in cow of a single block. The parent block (if
248 * supplied) is updated to point to the new cow copy. The new buffer is marked
249 * dirty and returned locked. If you modify the block it needs to be marked
250 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400251 *
252 * search_start -- an allocation hint for the new block
253 *
Chris Masond3977122009-01-05 21:25:51 -0500254 * empty_size -- a hint that you plan on doing more cow. This is the size in
255 * bytes the allocator should try to find free next to the block it returns.
256 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400257 */
Chris Masond3977122009-01-05 21:25:51 -0500258static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400259 struct btrfs_root *root,
260 struct extent_buffer *buf,
261 struct extent_buffer *parent, int parent_slot,
262 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400263 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400264{
Zheng Yan31840ae2008-09-23 13:14:14 -0400265 u64 parent_start;
Chris Mason5f39d392007-10-15 16:14:19 -0400266 struct extent_buffer *cow;
Chris Mason7bb86312007-12-11 09:25:06 -0500267 u32 nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400268 int ret = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500269 int level;
Chris Mason925baed2008-06-25 16:01:30 -0400270 int unlock_orig = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400271
Chris Mason925baed2008-06-25 16:01:30 -0400272 if (*cow_ret == buf)
273 unlock_orig = 1;
274
Chris Masonb9447ef82009-03-09 11:45:38 -0400275 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -0400276
Zheng Yan31840ae2008-09-23 13:14:14 -0400277 if (parent)
278 parent_start = parent->start;
279 else
280 parent_start = 0;
281
Chris Mason7bb86312007-12-11 09:25:06 -0500282 WARN_ON(root->ref_cows && trans->transid !=
283 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400284 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400285
Chris Mason7bb86312007-12-11 09:25:06 -0500286 level = btrfs_header_level(buf);
287 nritems = btrfs_header_nritems(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400288
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400289 cow = btrfs_alloc_free_block(trans, root, buf->len,
290 parent_start, root->root_key.objectid,
291 trans->transid, level,
292 search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -0400293 if (IS_ERR(cow))
294 return PTR_ERR(cow);
295
Chris Masonb4ce94d2009-02-04 09:25:08 -0500296 /* cow is set to blocking by btrfs_init_new_buffer */
297
Chris Mason5f39d392007-10-15 16:14:19 -0400298 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400299 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400300 btrfs_set_header_generation(cow, trans->transid);
301 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -0400302 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN);
Chris Mason6702ed42007-08-07 16:15:09 -0400303
Yan Zheng2b820322008-11-17 21:11:30 -0500304 write_extent_buffer(cow, root->fs_info->fsid,
305 (unsigned long)btrfs_header_fsid(cow),
306 BTRFS_FSID_SIZE);
307
Chris Mason5f39d392007-10-15 16:14:19 -0400308 WARN_ON(btrfs_header_generation(buf) > trans->transid);
309 if (btrfs_header_generation(buf) != trans->transid) {
Zheng Yan31840ae2008-09-23 13:14:14 -0400310 u32 nr_extents;
Zheng Yan31840ae2008-09-23 13:14:14 -0400311 ret = btrfs_inc_ref(trans, root, buf, cow, &nr_extents);
Chris Mason6702ed42007-08-07 16:15:09 -0400312 if (ret)
313 return ret;
Zheng Yan31840ae2008-09-23 13:14:14 -0400314
315 ret = btrfs_cache_ref(trans, root, buf, nr_extents);
316 WARN_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -0400317 } else if (btrfs_header_owner(buf) == BTRFS_TREE_RELOC_OBJECTID) {
318 /*
319 * There are only two places that can drop reference to
320 * tree blocks owned by living reloc trees, one is here,
Yan Zhengf82d02d2008-10-29 14:49:05 -0400321 * the other place is btrfs_drop_subtree. In both places,
Zheng Yan1a40e232008-09-26 10:09:34 -0400322 * we check reference count while tree block is locked.
323 * Furthermore, if reference count is one, it won't get
324 * increased by someone else.
325 */
326 u32 refs;
327 ret = btrfs_lookup_extent_ref(trans, root, buf->start,
328 buf->len, &refs);
329 BUG_ON(ret);
330 if (refs == 1) {
331 ret = btrfs_update_ref(trans, root, buf, cow,
332 0, nritems);
333 clean_tree_block(trans, root, buf);
334 } else {
335 ret = btrfs_inc_ref(trans, root, buf, cow, NULL);
336 }
337 BUG_ON(ret);
Chris Mason6702ed42007-08-07 16:15:09 -0400338 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -0400339 ret = btrfs_update_ref(trans, root, buf, cow, 0, nritems);
340 if (ret)
341 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400342 clean_tree_block(trans, root, buf);
343 }
344
Zheng Yan1a40e232008-09-26 10:09:34 -0400345 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
Zheng Yan1a40e232008-09-26 10:09:34 -0400346 ret = btrfs_reloc_tree_cache_ref(trans, root, cow, buf->start);
347 WARN_ON(ret);
348 }
349
Chris Mason6702ed42007-08-07 16:15:09 -0400350 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -0400351 WARN_ON(parent && parent != buf);
Chris Mason925baed2008-06-25 16:01:30 -0400352
353 spin_lock(&root->node_lock);
Chris Mason6702ed42007-08-07 16:15:09 -0400354 root->node = cow;
Chris Mason5f39d392007-10-15 16:14:19 -0400355 extent_buffer_get(cow);
Chris Mason925baed2008-06-25 16:01:30 -0400356 spin_unlock(&root->node_lock);
357
Chris Mason6702ed42007-08-07 16:15:09 -0400358 if (buf != root->commit_root) {
Chris Masondb945352007-10-15 16:15:53 -0400359 btrfs_free_extent(trans, root, buf->start,
Zheng Yan31840ae2008-09-23 13:14:14 -0400360 buf->len, buf->start,
361 root->root_key.objectid,
362 btrfs_header_generation(buf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400363 level, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400364 }
Chris Mason5f39d392007-10-15 16:14:19 -0400365 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -0400366 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400367 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400368 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -0400369 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -0500370 WARN_ON(trans->transid == 0);
371 btrfs_set_node_ptr_generation(parent, parent_slot,
372 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400373 btrfs_mark_buffer_dirty(parent);
Chris Mason5f39d392007-10-15 16:14:19 -0400374 WARN_ON(btrfs_header_generation(parent) != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -0500375 btrfs_free_extent(trans, root, buf->start, buf->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400376 parent_start, btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400377 btrfs_header_generation(parent), level, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400378 }
Chris Mason925baed2008-06-25 16:01:30 -0400379 if (unlock_orig)
380 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400381 free_extent_buffer(buf);
Chris Mason6702ed42007-08-07 16:15:09 -0400382 btrfs_mark_buffer_dirty(cow);
383 *cow_ret = cow;
384 return 0;
385}
386
Chris Masond352ac62008-09-29 15:18:18 -0400387/*
388 * cows a single block, see __btrfs_cow_block for the real work.
389 * This version of it has extra checks so that a block isn't cow'd more than
390 * once per transaction, as long as it hasn't been written yet
391 */
Chris Masond3977122009-01-05 21:25:51 -0500392noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400393 struct btrfs_root *root, struct extent_buffer *buf,
394 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400395 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -0500396{
Chris Mason6702ed42007-08-07 16:15:09 -0400397 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400398 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500399
Chris Masonccd467d2007-06-28 15:57:36 -0400400 if (trans->transaction != root->fs_info->running_transaction) {
Chris Masond3977122009-01-05 21:25:51 -0500401 printk(KERN_CRIT "trans %llu running %llu\n",
402 (unsigned long long)trans->transid,
403 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -0400404 root->fs_info->running_transaction->transid);
405 WARN_ON(1);
406 }
407 if (trans->transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -0500408 printk(KERN_CRIT "trans %llu running %llu\n",
409 (unsigned long long)trans->transid,
410 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -0400411 WARN_ON(1);
412 }
Chris Masondc17ff82008-01-08 15:46:30 -0500413
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400414 if (btrfs_header_generation(buf) == trans->transid &&
415 btrfs_header_owner(buf) == root->root_key.objectid &&
Chris Mason63b10fc2008-04-01 11:21:32 -0400416 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason02217ed2007-03-02 16:08:05 -0500417 *cow_ret = buf;
418 return 0;
419 }
Chris Masonc4876852009-02-04 09:24:25 -0500420
Chris Mason0b86a832008-03-24 15:01:56 -0400421 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500422
423 if (parent)
424 btrfs_set_lock_blocking(parent);
425 btrfs_set_lock_blocking(buf);
426
Chris Masonf510cfe2007-10-15 16:14:48 -0400427 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400428 parent_slot, cow_ret, search_start, 0);
Chris Masonf510cfe2007-10-15 16:14:48 -0400429 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400430}
431
Chris Masond352ac62008-09-29 15:18:18 -0400432/*
433 * helper function for defrag to decide if two blocks pointed to by a
434 * node are actually close by
435 */
Chris Mason6b800532007-10-15 16:17:34 -0400436static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -0400437{
Chris Mason6b800532007-10-15 16:17:34 -0400438 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400439 return 1;
Chris Mason6b800532007-10-15 16:17:34 -0400440 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400441 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -0500442 return 0;
443}
444
Chris Mason081e9572007-11-06 10:26:24 -0500445/*
446 * compare two keys in a memcmp fashion
447 */
448static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
449{
450 struct btrfs_key k1;
451
452 btrfs_disk_key_to_cpu(&k1, disk);
453
454 if (k1.objectid > k2->objectid)
455 return 1;
456 if (k1.objectid < k2->objectid)
457 return -1;
458 if (k1.type > k2->type)
459 return 1;
460 if (k1.type < k2->type)
461 return -1;
462 if (k1.offset > k2->offset)
463 return 1;
464 if (k1.offset < k2->offset)
465 return -1;
466 return 0;
467}
468
Josef Bacikf3465ca2008-11-12 14:19:50 -0500469/*
470 * same as comp_keys only with two btrfs_key's
471 */
472static int comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
473{
474 if (k1->objectid > k2->objectid)
475 return 1;
476 if (k1->objectid < k2->objectid)
477 return -1;
478 if (k1->type > k2->type)
479 return 1;
480 if (k1->type < k2->type)
481 return -1;
482 if (k1->offset > k2->offset)
483 return 1;
484 if (k1->offset < k2->offset)
485 return -1;
486 return 0;
487}
Chris Mason081e9572007-11-06 10:26:24 -0500488
Chris Masond352ac62008-09-29 15:18:18 -0400489/*
490 * this is used by the defrag code to go through all the
491 * leaves pointed to by a node and reallocate them so that
492 * disk order is close to key order
493 */
Chris Mason6702ed42007-08-07 16:15:09 -0400494int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400495 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400496 int start_slot, int cache_only, u64 *last_ret,
497 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400498{
Chris Mason6b800532007-10-15 16:17:34 -0400499 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400500 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400501 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400502 u64 search_start = *last_ret;
503 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400504 u64 other;
505 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400506 int end_slot;
507 int i;
508 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400509 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400510 int uptodate;
511 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500512 int progress_passed = 0;
513 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400514
Chris Mason5708b952007-10-25 15:43:18 -0400515 parent_level = btrfs_header_level(parent);
516 if (cache_only && parent_level != 1)
517 return 0;
518
Chris Masond3977122009-01-05 21:25:51 -0500519 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400520 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500521 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400522 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400523
Chris Mason6b800532007-10-15 16:17:34 -0400524 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400525 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400526 end_slot = parent_nritems;
527
528 if (parent_nritems == 1)
529 return 0;
530
Chris Masonb4ce94d2009-02-04 09:25:08 -0500531 btrfs_set_lock_blocking(parent);
532
Chris Mason6702ed42007-08-07 16:15:09 -0400533 for (i = start_slot; i < end_slot; i++) {
534 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400535
Chris Mason5708b952007-10-25 15:43:18 -0400536 if (!parent->map_token) {
537 map_extent_buffer(parent,
538 btrfs_node_key_ptr_offset(i),
539 sizeof(struct btrfs_key_ptr),
540 &parent->map_token, &parent->kaddr,
541 &parent->map_start, &parent->map_len,
542 KM_USER1);
543 }
Chris Mason081e9572007-11-06 10:26:24 -0500544 btrfs_node_key(parent, &disk_key, i);
545 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
546 continue;
547
548 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400549 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400550 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400551 if (last_block == 0)
552 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400553
Chris Mason6702ed42007-08-07 16:15:09 -0400554 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400555 other = btrfs_node_blockptr(parent, i - 1);
556 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400557 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400558 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400559 other = btrfs_node_blockptr(parent, i + 1);
560 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400561 }
Chris Masone9d0b132007-08-10 14:06:19 -0400562 if (close) {
563 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400564 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400565 }
Chris Mason5708b952007-10-25 15:43:18 -0400566 if (parent->map_token) {
567 unmap_extent_buffer(parent, parent->map_token,
568 KM_USER1);
569 parent->map_token = NULL;
570 }
Chris Mason6702ed42007-08-07 16:15:09 -0400571
Chris Mason6b800532007-10-15 16:17:34 -0400572 cur = btrfs_find_tree_block(root, blocknr, blocksize);
573 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400574 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400575 else
576 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400577 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400578 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400579 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400580 continue;
581 }
Chris Mason6b800532007-10-15 16:17:34 -0400582 if (!cur) {
583 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400584 blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400585 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400586 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400587 }
Chris Mason6702ed42007-08-07 16:15:09 -0400588 }
Chris Masone9d0b132007-08-10 14:06:19 -0400589 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400590 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400591
Chris Masone7a84562008-06-25 16:01:31 -0400592 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500593 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400594 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400595 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400596 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400597 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -0400598 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400599 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400600 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400601 break;
Yan252c38f2007-08-29 09:11:44 -0400602 }
Chris Masone7a84562008-06-25 16:01:31 -0400603 search_start = cur->start;
604 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400605 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400606 btrfs_tree_unlock(cur);
607 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400608 }
Chris Mason5708b952007-10-25 15:43:18 -0400609 if (parent->map_token) {
610 unmap_extent_buffer(parent, parent->map_token,
611 KM_USER1);
612 parent->map_token = NULL;
613 }
Chris Mason6702ed42007-08-07 16:15:09 -0400614 return err;
615}
616
Chris Mason74123bd2007-02-02 11:05:29 -0500617/*
618 * The leaf data grows from end-to-front in the node.
619 * this returns the address of the start of the last item,
620 * which is the stop of the leaf data stack
621 */
Chris Mason123abc82007-03-14 14:14:43 -0400622static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400623 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500624{
Chris Mason5f39d392007-10-15 16:14:19 -0400625 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500626 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400627 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400628 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500629}
630
Chris Masond352ac62008-09-29 15:18:18 -0400631/*
632 * extra debugging checks to make sure all the items in a key are
633 * well formed and in the proper order
634 */
Chris Mason123abc82007-03-14 14:14:43 -0400635static int check_node(struct btrfs_root *root, struct btrfs_path *path,
636 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500637{
Chris Mason5f39d392007-10-15 16:14:19 -0400638 struct extent_buffer *parent = NULL;
639 struct extent_buffer *node = path->nodes[level];
640 struct btrfs_disk_key parent_key;
641 struct btrfs_disk_key node_key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500642 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400643 int slot;
644 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400645 u32 nritems = btrfs_header_nritems(node);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500646
647 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400648 parent = path->nodes[level + 1];
Aneesha1f396302007-07-11 10:03:27 -0400649
Chris Mason8d7be552007-05-10 11:24:42 -0400650 slot = path->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400651 BUG_ON(nritems == 0);
652 if (parent) {
Aneesha1f396302007-07-11 10:03:27 -0400653 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400654 btrfs_node_key(parent, &parent_key, parent_slot);
655 btrfs_node_key(node, &node_key, 0);
656 BUG_ON(memcmp(&parent_key, &node_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400657 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400658 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400659 btrfs_header_bytenr(node));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500660 }
Chris Mason123abc82007-03-14 14:14:43 -0400661 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason8d7be552007-05-10 11:24:42 -0400662 if (slot != 0) {
Chris Mason5f39d392007-10-15 16:14:19 -0400663 btrfs_node_key_to_cpu(node, &cpukey, slot - 1);
664 btrfs_node_key(node, &node_key, slot);
665 BUG_ON(comp_keys(&node_key, &cpukey) <= 0);
Chris Mason8d7be552007-05-10 11:24:42 -0400666 }
667 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400668 btrfs_node_key_to_cpu(node, &cpukey, slot + 1);
669 btrfs_node_key(node, &node_key, slot);
670 BUG_ON(comp_keys(&node_key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500671 }
672 return 0;
673}
674
Chris Masond352ac62008-09-29 15:18:18 -0400675/*
676 * extra checking to make sure all the items in a leaf are
677 * well formed and in the proper order
678 */
Chris Mason123abc82007-03-14 14:14:43 -0400679static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
680 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500681{
Chris Mason5f39d392007-10-15 16:14:19 -0400682 struct extent_buffer *leaf = path->nodes[level];
683 struct extent_buffer *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500684 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400685 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400686 struct btrfs_disk_key parent_key;
687 struct btrfs_disk_key leaf_key;
688 int slot = path->slots[0];
Chris Mason8d7be552007-05-10 11:24:42 -0400689
Chris Mason5f39d392007-10-15 16:14:19 -0400690 u32 nritems = btrfs_header_nritems(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500691
692 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400693 parent = path->nodes[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400694
695 if (nritems == 0)
696 return 0;
697
698 if (parent) {
Aneesha1f396302007-07-11 10:03:27 -0400699 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400700 btrfs_node_key(parent, &parent_key, parent_slot);
701 btrfs_item_key(leaf, &leaf_key, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400702
Chris Mason5f39d392007-10-15 16:14:19 -0400703 BUG_ON(memcmp(&parent_key, &leaf_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400704 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400705 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400706 btrfs_header_bytenr(leaf));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500707 }
Chris Mason5f39d392007-10-15 16:14:19 -0400708 if (slot != 0 && slot < nritems - 1) {
709 btrfs_item_key(leaf, &leaf_key, slot);
710 btrfs_item_key_to_cpu(leaf, &cpukey, slot - 1);
711 if (comp_keys(&leaf_key, &cpukey) <= 0) {
712 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500713 printk(KERN_CRIT "slot %d offset bad key\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400714 BUG_ON(1);
715 }
716 if (btrfs_item_offset_nr(leaf, slot - 1) !=
717 btrfs_item_end_nr(leaf, slot)) {
718 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500719 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400720 BUG_ON(1);
721 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500722 }
Chris Mason8d7be552007-05-10 11:24:42 -0400723 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400724 btrfs_item_key(leaf, &leaf_key, slot);
725 btrfs_item_key_to_cpu(leaf, &cpukey, slot + 1);
726 BUG_ON(comp_keys(&leaf_key, &cpukey) >= 0);
727 if (btrfs_item_offset_nr(leaf, slot) !=
728 btrfs_item_end_nr(leaf, slot + 1)) {
729 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500730 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400731 BUG_ON(1);
732 }
Chris Mason8d7be552007-05-10 11:24:42 -0400733 }
Chris Mason5f39d392007-10-15 16:14:19 -0400734 BUG_ON(btrfs_item_offset_nr(leaf, 0) +
735 btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500736 return 0;
737}
738
Chris Masond3977122009-01-05 21:25:51 -0500739static noinline int check_block(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500740 struct btrfs_path *path, int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500741{
Chris Mason85d824c2008-04-10 10:23:19 -0400742 return 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500743 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400744 return check_leaf(root, path, level);
745 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500746}
747
Chris Mason74123bd2007-02-02 11:05:29 -0500748/*
Chris Mason5f39d392007-10-15 16:14:19 -0400749 * search for key in the extent_buffer. The items start at offset p,
750 * and they are item_size apart. There are 'max' items in p.
751 *
Chris Mason74123bd2007-02-02 11:05:29 -0500752 * the slot in the array is returned via slot, and it points to
753 * the place where you would insert key if it is not found in
754 * the array.
755 *
756 * slot may point to max if the key is bigger than all of the keys
757 */
Chris Masone02119d2008-09-05 16:13:11 -0400758static noinline int generic_bin_search(struct extent_buffer *eb,
759 unsigned long p,
760 int item_size, struct btrfs_key *key,
761 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500762{
763 int low = 0;
764 int high = max;
765 int mid;
766 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400767 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400768 struct btrfs_disk_key unaligned;
769 unsigned long offset;
770 char *map_token = NULL;
771 char *kaddr = NULL;
772 unsigned long map_start = 0;
773 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400774 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500775
Chris Masond3977122009-01-05 21:25:51 -0500776 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500777 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400778 offset = p + mid * item_size;
779
780 if (!map_token || offset < map_start ||
781 (offset + sizeof(struct btrfs_disk_key)) >
782 map_start + map_len) {
Chris Mason479965d2007-10-15 16:14:27 -0400783 if (map_token) {
Chris Mason5f39d392007-10-15 16:14:19 -0400784 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Mason479965d2007-10-15 16:14:27 -0400785 map_token = NULL;
786 }
Chris Mason934d3752008-12-08 16:43:10 -0500787
788 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400789 sizeof(struct btrfs_disk_key),
790 &map_token, &kaddr,
791 &map_start, &map_len, KM_USER0);
Chris Mason5f39d392007-10-15 16:14:19 -0400792
Chris Mason479965d2007-10-15 16:14:27 -0400793 if (!err) {
794 tmp = (struct btrfs_disk_key *)(kaddr + offset -
795 map_start);
796 } else {
797 read_extent_buffer(eb, &unaligned,
798 offset, sizeof(unaligned));
799 tmp = &unaligned;
800 }
801
Chris Mason5f39d392007-10-15 16:14:19 -0400802 } else {
803 tmp = (struct btrfs_disk_key *)(kaddr + offset -
804 map_start);
805 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500806 ret = comp_keys(tmp, key);
807
808 if (ret < 0)
809 low = mid + 1;
810 else if (ret > 0)
811 high = mid;
812 else {
813 *slot = mid;
Chris Mason479965d2007-10-15 16:14:27 -0400814 if (map_token)
815 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500816 return 0;
817 }
818 }
819 *slot = low;
Chris Mason5f39d392007-10-15 16:14:19 -0400820 if (map_token)
821 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500822 return 1;
823}
824
Chris Mason97571fd2007-02-24 13:39:08 -0500825/*
826 * simple bin_search frontend that does the right thing for
827 * leaves vs nodes
828 */
Chris Mason5f39d392007-10-15 16:14:19 -0400829static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
830 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500831{
Chris Mason5f39d392007-10-15 16:14:19 -0400832 if (level == 0) {
833 return generic_bin_search(eb,
834 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400835 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -0400836 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400837 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500838 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400839 return generic_bin_search(eb,
840 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400841 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400842 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400843 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500844 }
845 return -1;
846}
847
Chris Masond352ac62008-09-29 15:18:18 -0400848/* given a node and slot number, this reads the blocks it points to. The
849 * extent buffer is returned with a reference taken (but unlocked).
850 * NULL is returned on error.
851 */
Chris Masone02119d2008-09-05 16:13:11 -0400852static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400853 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500854{
Chris Masonca7a79a2008-05-12 12:59:19 -0400855 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500856 if (slot < 0)
857 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400858 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500859 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400860
861 BUG_ON(level == 0);
862
Chris Masondb945352007-10-15 16:15:53 -0400863 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400864 btrfs_level_size(root, level - 1),
865 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500866}
867
Chris Masond352ac62008-09-29 15:18:18 -0400868/*
869 * node level balancing, used to make sure nodes are in proper order for
870 * item deletion. We balance from the top down, so we have to make sure
871 * that a deletion won't leave an node completely empty later on.
872 */
Chris Masone02119d2008-09-05 16:13:11 -0400873static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -0500874 struct btrfs_root *root,
875 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500876{
Chris Mason5f39d392007-10-15 16:14:19 -0400877 struct extent_buffer *right = NULL;
878 struct extent_buffer *mid;
879 struct extent_buffer *left = NULL;
880 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500881 int ret = 0;
882 int wret;
883 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500884 int orig_slot = path->slots[level];
Chris Mason54aa1f42007-06-22 14:16:25 -0400885 int err_on_enospc = 0;
Chris Mason79f95c82007-03-01 15:16:26 -0500886 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500887
888 if (level == 0)
889 return 0;
890
Chris Mason5f39d392007-10-15 16:14:19 -0400891 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -0500892
Chris Mason925baed2008-06-25 16:01:30 -0400893 WARN_ON(!path->locks[level]);
Chris Mason7bb86312007-12-11 09:25:06 -0500894 WARN_ON(btrfs_header_generation(mid) != trans->transid);
895
Chris Mason1d4f8a02007-03-13 09:28:32 -0400896 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -0500897
Chris Mason234b63a2007-03-13 10:46:10 -0400898 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -0400899 parent = path->nodes[level + 1];
Chris Masonbb803952007-03-01 12:04:21 -0500900 pslot = path->slots[level + 1];
901
Chris Mason40689472007-03-17 14:29:23 -0400902 /*
903 * deal with the case where there is only one pointer in the root
904 * by promoting the node below to a root
905 */
Chris Mason5f39d392007-10-15 16:14:19 -0400906 if (!parent) {
907 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -0500908
Chris Mason5f39d392007-10-15 16:14:19 -0400909 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -0500910 return 0;
911
912 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -0400913 child = read_node_slot(root, mid, 0);
Jeff Mahoney7951f3c2009-02-12 10:06:15 -0500914 BUG_ON(!child);
Chris Mason925baed2008-06-25 16:01:30 -0400915 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500916 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400917 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan2f375ab2008-02-01 14:58:07 -0500918 BUG_ON(ret);
919
Chris Mason925baed2008-06-25 16:01:30 -0400920 spin_lock(&root->node_lock);
Chris Masonbb803952007-03-01 12:04:21 -0500921 root->node = child;
Chris Mason925baed2008-06-25 16:01:30 -0400922 spin_unlock(&root->node_lock);
923
Zheng Yan31840ae2008-09-23 13:14:14 -0400924 ret = btrfs_update_extent_ref(trans, root, child->start,
Chris Mason56bec292009-03-13 10:10:06 -0400925 child->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400926 mid->start, child->start,
927 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400928 trans->transid, level - 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400929 BUG_ON(ret);
930
Chris Mason0b86a832008-03-24 15:01:56 -0400931 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -0400932 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500933
Chris Mason925baed2008-06-25 16:01:30 -0400934 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -0500935 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400936 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -0400937 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -0500938 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -0400939 free_extent_buffer(mid);
Chris Mason7bb86312007-12-11 09:25:06 -0500940 ret = btrfs_free_extent(trans, root, mid->start, mid->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400941 mid->start, root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400942 btrfs_header_generation(mid),
943 level, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500944 /* once for the root ptr */
Chris Mason5f39d392007-10-15 16:14:19 -0400945 free_extent_buffer(mid);
Chris Masondb945352007-10-15 16:15:53 -0400946 return ret;
Chris Masonbb803952007-03-01 12:04:21 -0500947 }
Chris Mason5f39d392007-10-15 16:14:19 -0400948 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -0400949 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -0500950 return 0;
951
Chris Mason5f39d392007-10-15 16:14:19 -0400952 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -0400953 err_on_enospc = 1;
954
Chris Mason5f39d392007-10-15 16:14:19 -0400955 left = read_node_slot(root, parent, pslot - 1);
956 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -0400957 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500958 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -0400959 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400960 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -0400961 if (wret) {
962 ret = wret;
963 goto enospc;
964 }
Chris Mason2cc58cf2007-08-27 16:49:44 -0400965 }
Chris Mason5f39d392007-10-15 16:14:19 -0400966 right = read_node_slot(root, parent, pslot + 1);
967 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -0400968 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500969 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -0400970 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400971 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -0400972 if (wret) {
973 ret = wret;
974 goto enospc;
975 }
976 }
977
978 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -0400979 if (left) {
980 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -0400981 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -0500982 if (wret < 0)
983 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -0400984 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -0400985 err_on_enospc = 1;
Chris Masonbb803952007-03-01 12:04:21 -0500986 }
Chris Mason79f95c82007-03-01 15:16:26 -0500987
988 /*
989 * then try to empty the right most buffer into the middle
990 */
Chris Mason5f39d392007-10-15 16:14:19 -0400991 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -0400992 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400993 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -0500994 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -0400995 if (btrfs_header_nritems(right) == 0) {
Chris Masondb945352007-10-15 16:15:53 -0400996 u64 bytenr = right->start;
Chris Mason7bb86312007-12-11 09:25:06 -0500997 u64 generation = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -0400998 u32 blocksize = right->len;
999
Chris Mason5f39d392007-10-15 16:14:19 -04001000 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001001 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001002 free_extent_buffer(right);
Chris Masonbb803952007-03-01 12:04:21 -05001003 right = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001004 wret = del_ptr(trans, root, path, level + 1, pslot +
1005 1);
Chris Masonbb803952007-03-01 12:04:21 -05001006 if (wret)
1007 ret = wret;
Chris Masondb945352007-10-15 16:15:53 -04001008 wret = btrfs_free_extent(trans, root, bytenr,
Zheng Yan31840ae2008-09-23 13:14:14 -04001009 blocksize, parent->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001010 btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001011 generation, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001012 if (wret)
1013 ret = wret;
1014 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001015 struct btrfs_disk_key right_key;
1016 btrfs_node_key(right, &right_key, 0);
1017 btrfs_set_node_key(parent, &right_key, pslot + 1);
1018 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001019 }
1020 }
Chris Mason5f39d392007-10-15 16:14:19 -04001021 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001022 /*
1023 * we're not allowed to leave a node with one item in the
1024 * tree during a delete. A deletion from lower in the tree
1025 * could try to delete the only pointer in this node.
1026 * So, pull some keys from the left.
1027 * There has to be a left pointer at this point because
1028 * otherwise we would have pulled some pointers from the
1029 * right
1030 */
Chris Mason5f39d392007-10-15 16:14:19 -04001031 BUG_ON(!left);
1032 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001033 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001034 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001035 goto enospc;
1036 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001037 if (wret == 1) {
1038 wret = push_node_left(trans, root, left, mid, 1);
1039 if (wret < 0)
1040 ret = wret;
1041 }
Chris Mason79f95c82007-03-01 15:16:26 -05001042 BUG_ON(wret == 1);
1043 }
Chris Mason5f39d392007-10-15 16:14:19 -04001044 if (btrfs_header_nritems(mid) == 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001045 /* we've managed to empty the middle node, drop it */
Chris Mason7bb86312007-12-11 09:25:06 -05001046 u64 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04001047 u64 bytenr = mid->start;
1048 u32 blocksize = mid->len;
Chris Mason925baed2008-06-25 16:01:30 -04001049
Chris Mason5f39d392007-10-15 16:14:19 -04001050 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001051 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001052 free_extent_buffer(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001053 mid = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001054 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001055 if (wret)
1056 ret = wret;
Chris Mason7bb86312007-12-11 09:25:06 -05001057 wret = btrfs_free_extent(trans, root, bytenr, blocksize,
Zheng Yan31840ae2008-09-23 13:14:14 -04001058 parent->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001059 btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001060 root_gen, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001061 if (wret)
1062 ret = wret;
Chris Mason79f95c82007-03-01 15:16:26 -05001063 } else {
1064 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001065 struct btrfs_disk_key mid_key;
1066 btrfs_node_key(mid, &mid_key, 0);
1067 btrfs_set_node_key(parent, &mid_key, pslot);
1068 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001069 }
Chris Masonbb803952007-03-01 12:04:21 -05001070
Chris Mason79f95c82007-03-01 15:16:26 -05001071 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001072 if (left) {
1073 if (btrfs_header_nritems(left) > orig_slot) {
1074 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001075 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001076 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001077 path->slots[level + 1] -= 1;
1078 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001079 if (mid) {
1080 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001081 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001082 }
Chris Masonbb803952007-03-01 12:04:21 -05001083 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001084 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001085 path->slots[level] = orig_slot;
1086 }
1087 }
Chris Mason79f95c82007-03-01 15:16:26 -05001088 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -04001089 check_block(root, path, level);
Chris Masone20d96d2007-03-22 12:13:20 -04001090 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001091 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001092 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001093enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001094 if (right) {
1095 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001096 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001097 }
1098 if (left) {
1099 if (path->nodes[level] != left)
1100 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001101 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001102 }
Chris Masonbb803952007-03-01 12:04:21 -05001103 return ret;
1104}
1105
Chris Masond352ac62008-09-29 15:18:18 -04001106/* Node balancing for insertion. Here we only split or push nodes around
1107 * when they are completely full. This is also done top down, so we
1108 * have to be pessimistic.
1109 */
Chris Masond3977122009-01-05 21:25:51 -05001110static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001111 struct btrfs_root *root,
1112 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001113{
Chris Mason5f39d392007-10-15 16:14:19 -04001114 struct extent_buffer *right = NULL;
1115 struct extent_buffer *mid;
1116 struct extent_buffer *left = NULL;
1117 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001118 int ret = 0;
1119 int wret;
1120 int pslot;
1121 int orig_slot = path->slots[level];
1122 u64 orig_ptr;
1123
1124 if (level == 0)
1125 return 1;
1126
Chris Mason5f39d392007-10-15 16:14:19 -04001127 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001128 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001129 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
1130
1131 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001132 parent = path->nodes[level + 1];
Chris Masone66f7092007-04-20 13:16:02 -04001133 pslot = path->slots[level + 1];
1134
Chris Mason5f39d392007-10-15 16:14:19 -04001135 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001136 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001137
Chris Mason5f39d392007-10-15 16:14:19 -04001138 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001139
1140 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001141 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001142 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001143
1144 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001145 btrfs_set_lock_blocking(left);
1146
Chris Mason5f39d392007-10-15 16:14:19 -04001147 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001148 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1149 wret = 1;
1150 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001151 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001152 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001153 if (ret)
1154 wret = 1;
1155 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001156 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001157 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001158 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001159 }
Chris Masone66f7092007-04-20 13:16:02 -04001160 if (wret < 0)
1161 ret = wret;
1162 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001163 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001164 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001165 btrfs_node_key(mid, &disk_key, 0);
1166 btrfs_set_node_key(parent, &disk_key, pslot);
1167 btrfs_mark_buffer_dirty(parent);
1168 if (btrfs_header_nritems(left) > orig_slot) {
1169 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001170 path->slots[level + 1] -= 1;
1171 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001172 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001173 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001174 } else {
1175 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001176 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001177 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001178 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001179 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001180 }
Chris Masone66f7092007-04-20 13:16:02 -04001181 return 0;
1182 }
Chris Mason925baed2008-06-25 16:01:30 -04001183 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001184 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001185 }
Chris Mason925baed2008-06-25 16:01:30 -04001186 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001187
1188 /*
1189 * then try to empty the right most buffer into the middle
1190 */
Chris Mason5f39d392007-10-15 16:14:19 -04001191 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001192 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001193
Chris Mason925baed2008-06-25 16:01:30 -04001194 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001195 btrfs_set_lock_blocking(right);
1196
Chris Mason5f39d392007-10-15 16:14:19 -04001197 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001198 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1199 wret = 1;
1200 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001201 ret = btrfs_cow_block(trans, root, right,
1202 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001203 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04001204 if (ret)
1205 wret = 1;
1206 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001207 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001208 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001209 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001210 }
Chris Masone66f7092007-04-20 13:16:02 -04001211 if (wret < 0)
1212 ret = wret;
1213 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001214 struct btrfs_disk_key disk_key;
1215
1216 btrfs_node_key(right, &disk_key, 0);
1217 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1218 btrfs_mark_buffer_dirty(parent);
1219
1220 if (btrfs_header_nritems(mid) <= orig_slot) {
1221 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001222 path->slots[level + 1] += 1;
1223 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001224 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001225 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001226 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001227 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001228 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001229 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001230 }
Chris Masone66f7092007-04-20 13:16:02 -04001231 return 0;
1232 }
Chris Mason925baed2008-06-25 16:01:30 -04001233 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001234 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001235 }
Chris Masone66f7092007-04-20 13:16:02 -04001236 return 1;
1237}
1238
Chris Mason74123bd2007-02-02 11:05:29 -05001239/*
Chris Masond352ac62008-09-29 15:18:18 -04001240 * readahead one full node of leaves, finding things that are close
1241 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001242 */
Chris Masone02119d2008-09-05 16:13:11 -04001243static noinline void reada_for_search(struct btrfs_root *root,
1244 struct btrfs_path *path,
1245 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001246{
Chris Mason5f39d392007-10-15 16:14:19 -04001247 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001248 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001249 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001250 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001251 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001252 u64 nread = 0;
Chris Mason3c69fae2007-08-07 15:52:22 -04001253 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001254 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001255 u32 nr;
1256 u32 blocksize;
1257 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001258
Chris Masona6b6e752007-10-15 16:22:39 -04001259 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001260 return;
1261
Chris Mason6702ed42007-08-07 16:15:09 -04001262 if (!path->nodes[level])
1263 return;
1264
Chris Mason5f39d392007-10-15 16:14:19 -04001265 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001266
Chris Mason3c69fae2007-08-07 15:52:22 -04001267 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001268 blocksize = btrfs_level_size(root, level - 1);
1269 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001270 if (eb) {
1271 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001272 return;
1273 }
1274
Chris Masona7175312009-01-22 09:23:10 -05001275 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001276
Chris Mason5f39d392007-10-15 16:14:19 -04001277 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001278 nr = slot;
Chris Masond3977122009-01-05 21:25:51 -05001279 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001280 if (direction < 0) {
1281 if (nr == 0)
1282 break;
1283 nr--;
1284 } else if (direction > 0) {
1285 nr++;
1286 if (nr >= nritems)
1287 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001288 }
Chris Mason01f46652007-12-21 16:24:26 -05001289 if (path->reada < 0 && objectid) {
1290 btrfs_node_key(node, &disk_key, nr);
1291 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1292 break;
1293 }
Chris Mason6b800532007-10-15 16:17:34 -04001294 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001295 if ((search <= target && target - search <= 65536) ||
1296 (search > target && search - target <= 65536)) {
Chris Masonca7a79a2008-05-12 12:59:19 -04001297 readahead_tree_block(root, search, blocksize,
1298 btrfs_node_ptr_generation(node, nr));
Chris Mason6b800532007-10-15 16:17:34 -04001299 nread += blocksize;
1300 }
1301 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001302 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001303 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001304 }
1305}
Chris Mason925baed2008-06-25 16:01:30 -04001306
Chris Masond352ac62008-09-29 15:18:18 -04001307/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001308 * returns -EAGAIN if it had to drop the path, or zero if everything was in
1309 * cache
1310 */
1311static noinline int reada_for_balance(struct btrfs_root *root,
1312 struct btrfs_path *path, int level)
1313{
1314 int slot;
1315 int nritems;
1316 struct extent_buffer *parent;
1317 struct extent_buffer *eb;
1318 u64 gen;
1319 u64 block1 = 0;
1320 u64 block2 = 0;
1321 int ret = 0;
1322 int blocksize;
1323
1324 parent = path->nodes[level - 1];
1325 if (!parent)
1326 return 0;
1327
1328 nritems = btrfs_header_nritems(parent);
1329 slot = path->slots[level];
1330 blocksize = btrfs_level_size(root, level);
1331
1332 if (slot > 0) {
1333 block1 = btrfs_node_blockptr(parent, slot - 1);
1334 gen = btrfs_node_ptr_generation(parent, slot - 1);
1335 eb = btrfs_find_tree_block(root, block1, blocksize);
1336 if (eb && btrfs_buffer_uptodate(eb, gen))
1337 block1 = 0;
1338 free_extent_buffer(eb);
1339 }
1340 if (slot < nritems) {
1341 block2 = btrfs_node_blockptr(parent, slot + 1);
1342 gen = btrfs_node_ptr_generation(parent, slot + 1);
1343 eb = btrfs_find_tree_block(root, block2, blocksize);
1344 if (eb && btrfs_buffer_uptodate(eb, gen))
1345 block2 = 0;
1346 free_extent_buffer(eb);
1347 }
1348 if (block1 || block2) {
1349 ret = -EAGAIN;
1350 btrfs_release_path(root, path);
1351 if (block1)
1352 readahead_tree_block(root, block1, blocksize, 0);
1353 if (block2)
1354 readahead_tree_block(root, block2, blocksize, 0);
1355
1356 if (block1) {
1357 eb = read_tree_block(root, block1, blocksize, 0);
1358 free_extent_buffer(eb);
1359 }
1360 if (block1) {
1361 eb = read_tree_block(root, block2, blocksize, 0);
1362 free_extent_buffer(eb);
1363 }
1364 }
1365 return ret;
1366}
1367
1368
1369/*
Chris Masond3977122009-01-05 21:25:51 -05001370 * when we walk down the tree, it is usually safe to unlock the higher layers
1371 * in the tree. The exceptions are when our path goes through slot 0, because
1372 * operations on the tree might require changing key pointers higher up in the
1373 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001374 *
Chris Masond3977122009-01-05 21:25:51 -05001375 * callers might also have set path->keep_locks, which tells this code to keep
1376 * the lock if the path points to the last slot in the block. This is part of
1377 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001378 *
Chris Masond3977122009-01-05 21:25:51 -05001379 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1380 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001381 */
Chris Masone02119d2008-09-05 16:13:11 -04001382static noinline void unlock_up(struct btrfs_path *path, int level,
1383 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001384{
1385 int i;
1386 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001387 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001388 struct extent_buffer *t;
1389
1390 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1391 if (!path->nodes[i])
1392 break;
1393 if (!path->locks[i])
1394 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001395 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001396 skip_level = i + 1;
1397 continue;
1398 }
Chris Mason051e1b92008-06-25 16:01:30 -04001399 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001400 u32 nritems;
1401 t = path->nodes[i];
1402 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001403 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001404 skip_level = i + 1;
1405 continue;
1406 }
1407 }
Chris Mason051e1b92008-06-25 16:01:30 -04001408 if (skip_level < i && i >= lowest_unlock)
1409 no_skips = 1;
1410
Chris Mason925baed2008-06-25 16:01:30 -04001411 t = path->nodes[i];
1412 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
1413 btrfs_tree_unlock(t);
1414 path->locks[i] = 0;
1415 }
1416 }
1417}
1418
Chris Mason3c69fae2007-08-07 15:52:22 -04001419/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001420 * This releases any locks held in the path starting at level and
1421 * going all the way up to the root.
1422 *
1423 * btrfs_search_slot will keep the lock held on higher nodes in a few
1424 * corner cases, such as COW of the block at slot zero in the node. This
1425 * ignores those rules, and it should only be called when there are no
1426 * more updates to be done higher up in the tree.
1427 */
1428noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
1429{
1430 int i;
1431
1432 if (path->keep_locks || path->lowest_level)
1433 return;
1434
1435 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1436 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001437 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001438 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001439 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001440 btrfs_tree_unlock(path->nodes[i]);
1441 path->locks[i] = 0;
1442 }
1443}
1444
1445/*
Chris Mason74123bd2007-02-02 11:05:29 -05001446 * look for key in the tree. path is filled in with nodes along the way
1447 * if key is found, we return zero and you can find the item in the leaf
1448 * level of the path (level 0)
1449 *
1450 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001451 * be inserted, and 1 is returned. If there are other errors during the
1452 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001453 *
1454 * if ins_len > 0, nodes and leaves will be split as we walk down the
1455 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1456 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001457 */
Chris Masone089f052007-03-16 16:20:31 -04001458int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1459 *root, struct btrfs_key *key, struct btrfs_path *p, int
1460 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001461{
Chris Mason5f39d392007-10-15 16:14:19 -04001462 struct extent_buffer *b;
Chris Mason051e1b92008-06-25 16:01:30 -04001463 struct extent_buffer *tmp;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001464 int slot;
1465 int ret;
1466 int level;
Chris Mason3c69fae2007-08-07 15:52:22 -04001467 int should_reada = p->reada;
Chris Mason925baed2008-06-25 16:01:30 -04001468 int lowest_unlock = 1;
Chris Mason594a24e2008-06-25 16:01:30 -04001469 int blocksize;
Chris Mason9f3a7422007-08-07 15:52:19 -04001470 u8 lowest_level = 0;
Chris Mason594a24e2008-06-25 16:01:30 -04001471 u64 blocknr;
1472 u64 gen;
Chris Mason9f3a7422007-08-07 15:52:19 -04001473
Chris Mason6702ed42007-08-07 16:15:09 -04001474 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001475 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001476 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001477
Chris Mason925baed2008-06-25 16:01:30 -04001478 if (ins_len < 0)
1479 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001480
Chris Masonbb803952007-03-01 12:04:21 -05001481again:
Chris Mason5cd57b22008-06-25 16:01:30 -04001482 if (p->skip_locking)
1483 b = btrfs_root_node(root);
1484 else
1485 b = btrfs_lock_root_node(root);
Chris Mason925baed2008-06-25 16:01:30 -04001486
Chris Masoneb60cea2007-02-02 09:18:22 -05001487 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001488 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001489
1490 /*
1491 * setup the path here so we can release it under lock
1492 * contention with the cow code
1493 */
1494 p->nodes[level] = b;
1495 if (!p->skip_locking)
1496 p->locks[level] = 1;
1497
Chris Mason02217ed2007-03-02 16:08:05 -05001498 if (cow) {
1499 int wret;
Chris Mason65b51a02008-08-01 15:11:20 -04001500
1501 /* is a cow on this block not required */
Chris Mason65b51a02008-08-01 15:11:20 -04001502 if (btrfs_header_generation(b) == trans->transid &&
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001503 btrfs_header_owner(b) == root->root_key.objectid &&
Chris Mason65b51a02008-08-01 15:11:20 -04001504 !btrfs_header_flag(b, BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason65b51a02008-08-01 15:11:20 -04001505 goto cow_done;
1506 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05001507 btrfs_set_path_blocking(p);
1508
Chris Masone20d96d2007-03-22 12:13:20 -04001509 wret = btrfs_cow_block(trans, root, b,
1510 p->nodes[level + 1],
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001511 p->slots[level + 1], &b);
Chris Mason54aa1f42007-06-22 14:16:25 -04001512 if (wret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001513 free_extent_buffer(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001514 ret = wret;
1515 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001516 }
Chris Mason02217ed2007-03-02 16:08:05 -05001517 }
Chris Mason65b51a02008-08-01 15:11:20 -04001518cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001519 BUG_ON(!cow && ins_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001520 if (level != btrfs_header_level(b))
Chris Mason2c90e5d2007-04-02 10:50:19 -04001521 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04001522 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001523
Chris Masoneb60cea2007-02-02 09:18:22 -05001524 p->nodes[level] = b;
Chris Mason5cd57b22008-06-25 16:01:30 -04001525 if (!p->skip_locking)
1526 p->locks[level] = 1;
Chris Mason65b51a02008-08-01 15:11:20 -04001527
Chris Mason4008c042009-02-12 14:09:45 -05001528 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001529
1530 /*
1531 * we have a lock on b and as long as we aren't changing
1532 * the tree, there is no way to for the items in b to change.
1533 * It is safe to drop the lock on our parent before we
1534 * go through the expensive btree search on b.
1535 *
1536 * If cow is true, then we might be changing slot zero,
1537 * which may require changing the parent. So, we can't
1538 * drop the lock until after we know which slot we're
1539 * operating on.
1540 */
1541 if (!cow)
1542 btrfs_unlock_up_safe(p, level + 1);
1543
Chris Mason123abc82007-03-14 14:14:43 -04001544 ret = check_block(root, p, level);
Chris Mason65b51a02008-08-01 15:11:20 -04001545 if (ret) {
1546 ret = -1;
1547 goto done;
1548 }
Chris Mason925baed2008-06-25 16:01:30 -04001549
Chris Mason5f39d392007-10-15 16:14:19 -04001550 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001551
Chris Mason5f39d392007-10-15 16:14:19 -04001552 if (level != 0) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001553 if (ret && slot > 0)
1554 slot -= 1;
1555 p->slots[level] = slot;
Chris Mason459931e2008-12-10 09:10:46 -05001556 if ((p->search_for_split || ins_len > 0) &&
1557 btrfs_header_nritems(b) >=
Chris Mason15147942008-04-24 09:22:51 -04001558 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001559 int sret;
1560
1561 sret = reada_for_balance(root, p, level);
1562 if (sret)
1563 goto again;
1564
1565 btrfs_set_path_blocking(p);
1566 sret = split_node(trans, root, p, level);
Chris Mason4008c042009-02-12 14:09:45 -05001567 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001568
Chris Mason5c680ed2007-02-22 11:39:13 -05001569 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001570 if (sret) {
1571 ret = sret;
1572 goto done;
1573 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001574 b = p->nodes[level];
Chris Mason5c680ed2007-02-22 11:39:13 -05001575 slot = p->slots[level];
Chris Mason7b78c172009-02-04 09:12:46 -05001576 } else if (ins_len < 0 &&
1577 btrfs_header_nritems(b) <
1578 BTRFS_NODEPTRS_PER_BLOCK(root) / 4) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001579 int sret;
1580
1581 sret = reada_for_balance(root, p, level);
1582 if (sret)
1583 goto again;
1584
1585 btrfs_set_path_blocking(p);
1586 sret = balance_level(trans, root, p, level);
Chris Mason4008c042009-02-12 14:09:45 -05001587 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001588
Chris Mason65b51a02008-08-01 15:11:20 -04001589 if (sret) {
1590 ret = sret;
1591 goto done;
1592 }
Chris Masonbb803952007-03-01 12:04:21 -05001593 b = p->nodes[level];
Chris Masonf510cfe2007-10-15 16:14:48 -04001594 if (!b) {
1595 btrfs_release_path(NULL, p);
Chris Masonbb803952007-03-01 12:04:21 -05001596 goto again;
Chris Masonf510cfe2007-10-15 16:14:48 -04001597 }
Chris Masonbb803952007-03-01 12:04:21 -05001598 slot = p->slots[level];
Chris Mason5f39d392007-10-15 16:14:19 -04001599 BUG_ON(btrfs_header_nritems(b) == 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05001600 }
Chris Masonf9efa9c2008-06-25 16:14:04 -04001601 unlock_up(p, level, lowest_unlock);
1602
Chris Mason9f3a7422007-08-07 15:52:19 -04001603 /* this is only true while dropping a snapshot */
Chris Mason925baed2008-06-25 16:01:30 -04001604 if (level == lowest_level) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001605 ret = 0;
1606 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001607 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001608
Chris Mason594a24e2008-06-25 16:01:30 -04001609 blocknr = btrfs_node_blockptr(b, slot);
1610 gen = btrfs_node_ptr_generation(b, slot);
1611 blocksize = btrfs_level_size(root, level - 1);
1612
1613 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
1614 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
Chris Mason051e1b92008-06-25 16:01:30 -04001615 b = tmp;
1616 } else {
1617 /*
1618 * reduce lock contention at high levels
1619 * of the btree by dropping locks before
1620 * we read.
1621 */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001622 if (level > 0) {
Chris Mason051e1b92008-06-25 16:01:30 -04001623 btrfs_release_path(NULL, p);
1624 if (tmp)
1625 free_extent_buffer(tmp);
Chris Masonf9efa9c2008-06-25 16:14:04 -04001626 if (should_reada)
1627 reada_for_search(root, p,
1628 level, slot,
1629 key->objectid);
1630
Chris Mason594a24e2008-06-25 16:01:30 -04001631 tmp = read_tree_block(root, blocknr,
1632 blocksize, gen);
1633 if (tmp)
1634 free_extent_buffer(tmp);
Chris Mason051e1b92008-06-25 16:01:30 -04001635 goto again;
1636 } else {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001637 btrfs_set_path_blocking(p);
Chris Masona74a4b92008-06-25 16:01:31 -04001638 if (tmp)
1639 free_extent_buffer(tmp);
Chris Masonf9efa9c2008-06-25 16:14:04 -04001640 if (should_reada)
1641 reada_for_search(root, p,
1642 level, slot,
1643 key->objectid);
Chris Mason051e1b92008-06-25 16:01:30 -04001644 b = read_node_slot(root, b, slot);
1645 }
1646 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05001647 if (!p->skip_locking) {
1648 int lret;
1649
Chris Mason4008c042009-02-12 14:09:45 -05001650 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001651 lret = btrfs_try_spin_lock(b);
1652
1653 if (!lret) {
1654 btrfs_set_path_blocking(p);
1655 btrfs_tree_lock(b);
Chris Mason4008c042009-02-12 14:09:45 -05001656 btrfs_clear_path_blocking(p, b);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001657 }
1658 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001659 } else {
1660 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001661 if (ins_len > 0 &&
1662 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001663 int sret;
1664
1665 btrfs_set_path_blocking(p);
1666 sret = split_leaf(trans, root, key,
Chris Masoncc0c5532007-10-25 15:42:57 -04001667 p, ins_len, ret == 0);
Chris Mason4008c042009-02-12 14:09:45 -05001668 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001669
Chris Mason5c680ed2007-02-22 11:39:13 -05001670 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001671 if (sret) {
1672 ret = sret;
1673 goto done;
1674 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001675 }
Chris Mason459931e2008-12-10 09:10:46 -05001676 if (!p->search_for_split)
1677 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001678 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001679 }
1680 }
Chris Mason65b51a02008-08-01 15:11:20 -04001681 ret = 1;
1682done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001683 /*
1684 * we don't really know what they plan on doing with the path
1685 * from here on, so for now just mark it as blocking
1686 */
1687 btrfs_set_path_blocking(p);
Chris Mason65b51a02008-08-01 15:11:20 -04001688 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001689}
1690
Zheng Yan1a40e232008-09-26 10:09:34 -04001691int btrfs_merge_path(struct btrfs_trans_handle *trans,
1692 struct btrfs_root *root,
1693 struct btrfs_key *node_keys,
1694 u64 *nodes, int lowest_level)
1695{
1696 struct extent_buffer *eb;
1697 struct extent_buffer *parent;
1698 struct btrfs_key key;
1699 u64 bytenr;
1700 u64 generation;
1701 u32 blocksize;
1702 int level;
1703 int slot;
1704 int key_match;
1705 int ret;
1706
1707 eb = btrfs_lock_root_node(root);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001708 ret = btrfs_cow_block(trans, root, eb, NULL, 0, &eb);
Zheng Yan1a40e232008-09-26 10:09:34 -04001709 BUG_ON(ret);
1710
Chris Masonb4ce94d2009-02-04 09:25:08 -05001711 btrfs_set_lock_blocking(eb);
1712
Zheng Yan1a40e232008-09-26 10:09:34 -04001713 parent = eb;
1714 while (1) {
1715 level = btrfs_header_level(parent);
1716 if (level == 0 || level <= lowest_level)
1717 break;
1718
1719 ret = bin_search(parent, &node_keys[lowest_level], level,
1720 &slot);
1721 if (ret && slot > 0)
1722 slot--;
1723
1724 bytenr = btrfs_node_blockptr(parent, slot);
1725 if (nodes[level - 1] == bytenr)
1726 break;
1727
1728 blocksize = btrfs_level_size(root, level - 1);
1729 generation = btrfs_node_ptr_generation(parent, slot);
1730 btrfs_node_key_to_cpu(eb, &key, slot);
1731 key_match = !memcmp(&key, &node_keys[level - 1], sizeof(key));
1732
Yan Zhengf82d02d2008-10-29 14:49:05 -04001733 if (generation == trans->transid) {
Zheng Yan1a40e232008-09-26 10:09:34 -04001734 eb = read_tree_block(root, bytenr, blocksize,
1735 generation);
1736 btrfs_tree_lock(eb);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001737 btrfs_set_lock_blocking(eb);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001738 }
1739
1740 /*
1741 * if node keys match and node pointer hasn't been modified
1742 * in the running transaction, we can merge the path. for
1743 * blocks owened by reloc trees, the node pointer check is
1744 * skipped, this is because these blocks are fully controlled
1745 * by the space balance code, no one else can modify them.
1746 */
1747 if (!nodes[level - 1] || !key_match ||
1748 (generation == trans->transid &&
1749 btrfs_header_owner(eb) != BTRFS_TREE_RELOC_OBJECTID)) {
1750 if (level == 1 || level == lowest_level + 1) {
1751 if (generation == trans->transid) {
1752 btrfs_tree_unlock(eb);
1753 free_extent_buffer(eb);
1754 }
1755 break;
1756 }
1757
1758 if (generation != trans->transid) {
1759 eb = read_tree_block(root, bytenr, blocksize,
1760 generation);
1761 btrfs_tree_lock(eb);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001762 btrfs_set_lock_blocking(eb);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001763 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001764
1765 ret = btrfs_cow_block(trans, root, eb, parent, slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001766 &eb);
Zheng Yan1a40e232008-09-26 10:09:34 -04001767 BUG_ON(ret);
1768
Yan Zhengf82d02d2008-10-29 14:49:05 -04001769 if (root->root_key.objectid ==
1770 BTRFS_TREE_RELOC_OBJECTID) {
1771 if (!nodes[level - 1]) {
1772 nodes[level - 1] = eb->start;
1773 memcpy(&node_keys[level - 1], &key,
1774 sizeof(node_keys[0]));
1775 } else {
1776 WARN_ON(1);
1777 }
1778 }
1779
Zheng Yan1a40e232008-09-26 10:09:34 -04001780 btrfs_tree_unlock(parent);
1781 free_extent_buffer(parent);
1782 parent = eb;
1783 continue;
1784 }
1785
Zheng Yan1a40e232008-09-26 10:09:34 -04001786 btrfs_set_node_blockptr(parent, slot, nodes[level - 1]);
1787 btrfs_set_node_ptr_generation(parent, slot, trans->transid);
1788 btrfs_mark_buffer_dirty(parent);
1789
1790 ret = btrfs_inc_extent_ref(trans, root,
1791 nodes[level - 1],
1792 blocksize, parent->start,
1793 btrfs_header_owner(parent),
1794 btrfs_header_generation(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001795 level - 1);
Zheng Yan1a40e232008-09-26 10:09:34 -04001796 BUG_ON(ret);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001797
1798 /*
1799 * If the block was created in the running transaction,
1800 * it's possible this is the last reference to it, so we
1801 * should drop the subtree.
1802 */
1803 if (generation == trans->transid) {
1804 ret = btrfs_drop_subtree(trans, root, eb, parent);
1805 BUG_ON(ret);
1806 btrfs_tree_unlock(eb);
1807 free_extent_buffer(eb);
1808 } else {
1809 ret = btrfs_free_extent(trans, root, bytenr,
Zheng Yan1a40e232008-09-26 10:09:34 -04001810 blocksize, parent->start,
1811 btrfs_header_owner(parent),
1812 btrfs_header_generation(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001813 level - 1, 1);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001814 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04001815 }
1816 break;
1817 }
1818 btrfs_tree_unlock(parent);
1819 free_extent_buffer(parent);
1820 return 0;
1821}
1822
Chris Mason74123bd2007-02-02 11:05:29 -05001823/*
1824 * adjust the pointers going up the tree, starting at level
1825 * making sure the right key of each node is points to 'key'.
1826 * This is used after shifting pointers to the left, so it stops
1827 * fixing up pointers when a given leaf/node is not in slot 0 of the
1828 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001829 *
1830 * If this fails to write a tree block, it returns -1, but continues
1831 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001832 */
Chris Mason5f39d392007-10-15 16:14:19 -04001833static int fixup_low_keys(struct btrfs_trans_handle *trans,
1834 struct btrfs_root *root, struct btrfs_path *path,
1835 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001836{
1837 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001838 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001839 struct extent_buffer *t;
1840
Chris Mason234b63a2007-03-13 10:46:10 -04001841 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001842 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001843 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001844 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001845 t = path->nodes[i];
1846 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001847 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001848 if (tslot != 0)
1849 break;
1850 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001851 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001852}
1853
Chris Mason74123bd2007-02-02 11:05:29 -05001854/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001855 * update item key.
1856 *
1857 * This function isn't completely safe. It's the caller's responsibility
1858 * that the new key won't break the order
1859 */
1860int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1861 struct btrfs_root *root, struct btrfs_path *path,
1862 struct btrfs_key *new_key)
1863{
1864 struct btrfs_disk_key disk_key;
1865 struct extent_buffer *eb;
1866 int slot;
1867
1868 eb = path->nodes[0];
1869 slot = path->slots[0];
1870 if (slot > 0) {
1871 btrfs_item_key(eb, &disk_key, slot - 1);
1872 if (comp_keys(&disk_key, new_key) >= 0)
1873 return -1;
1874 }
1875 if (slot < btrfs_header_nritems(eb) - 1) {
1876 btrfs_item_key(eb, &disk_key, slot + 1);
1877 if (comp_keys(&disk_key, new_key) <= 0)
1878 return -1;
1879 }
1880
1881 btrfs_cpu_key_to_disk(&disk_key, new_key);
1882 btrfs_set_item_key(eb, &disk_key, slot);
1883 btrfs_mark_buffer_dirty(eb);
1884 if (slot == 0)
1885 fixup_low_keys(trans, root, path, &disk_key, 1);
1886 return 0;
1887}
1888
1889/*
Chris Mason74123bd2007-02-02 11:05:29 -05001890 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001891 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001892 *
1893 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1894 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001895 */
Chris Mason98ed5172008-01-03 10:01:48 -05001896static int push_node_left(struct btrfs_trans_handle *trans,
1897 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001898 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001899{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001900 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001901 int src_nritems;
1902 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001903 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001904
Chris Mason5f39d392007-10-15 16:14:19 -04001905 src_nritems = btrfs_header_nritems(src);
1906 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001907 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001908 WARN_ON(btrfs_header_generation(src) != trans->transid);
1909 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001910
Chris Masonbce4eae2008-04-24 14:42:46 -04001911 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001912 return 1;
1913
Chris Masond3977122009-01-05 21:25:51 -05001914 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001915 return 1;
1916
Chris Masonbce4eae2008-04-24 14:42:46 -04001917 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001918 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001919 if (push_items < src_nritems) {
1920 /* leave at least 8 pointers in the node if
1921 * we aren't going to empty it
1922 */
1923 if (src_nritems - push_items < 8) {
1924 if (push_items <= 8)
1925 return 1;
1926 push_items -= 8;
1927 }
1928 }
1929 } else
1930 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001931
Chris Mason5f39d392007-10-15 16:14:19 -04001932 copy_extent_buffer(dst, src,
1933 btrfs_node_key_ptr_offset(dst_nritems),
1934 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001935 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001936
Chris Masonbb803952007-03-01 12:04:21 -05001937 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001938 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1939 btrfs_node_key_ptr_offset(push_items),
1940 (src_nritems - push_items) *
1941 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001942 }
Chris Mason5f39d392007-10-15 16:14:19 -04001943 btrfs_set_header_nritems(src, src_nritems - push_items);
1944 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1945 btrfs_mark_buffer_dirty(src);
1946 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001947
1948 ret = btrfs_update_ref(trans, root, src, dst, dst_nritems, push_items);
1949 BUG_ON(ret);
1950
Chris Masonbb803952007-03-01 12:04:21 -05001951 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001952}
1953
Chris Mason97571fd2007-02-24 13:39:08 -05001954/*
Chris Mason79f95c82007-03-01 15:16:26 -05001955 * try to push data from one node into the next node right in the
1956 * tree.
1957 *
1958 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
1959 * error, and > 0 if there was no room in the right hand block.
1960 *
1961 * this will only push up to 1/2 the contents of the left node over
1962 */
Chris Mason5f39d392007-10-15 16:14:19 -04001963static int balance_node_right(struct btrfs_trans_handle *trans,
1964 struct btrfs_root *root,
1965 struct extent_buffer *dst,
1966 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05001967{
Chris Mason79f95c82007-03-01 15:16:26 -05001968 int push_items = 0;
1969 int max_push;
1970 int src_nritems;
1971 int dst_nritems;
1972 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05001973
Chris Mason7bb86312007-12-11 09:25:06 -05001974 WARN_ON(btrfs_header_generation(src) != trans->transid);
1975 WARN_ON(btrfs_header_generation(dst) != trans->transid);
1976
Chris Mason5f39d392007-10-15 16:14:19 -04001977 src_nritems = btrfs_header_nritems(src);
1978 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001979 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05001980 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05001981 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04001982
Chris Masond3977122009-01-05 21:25:51 -05001983 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04001984 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05001985
1986 max_push = src_nritems / 2 + 1;
1987 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05001988 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05001989 return 1;
Yan252c38f2007-08-29 09:11:44 -04001990
Chris Mason79f95c82007-03-01 15:16:26 -05001991 if (max_push < push_items)
1992 push_items = max_push;
1993
Chris Mason5f39d392007-10-15 16:14:19 -04001994 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
1995 btrfs_node_key_ptr_offset(0),
1996 (dst_nritems) *
1997 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04001998
Chris Mason5f39d392007-10-15 16:14:19 -04001999 copy_extent_buffer(dst, src,
2000 btrfs_node_key_ptr_offset(0),
2001 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002002 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002003
Chris Mason5f39d392007-10-15 16:14:19 -04002004 btrfs_set_header_nritems(src, src_nritems - push_items);
2005 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002006
Chris Mason5f39d392007-10-15 16:14:19 -04002007 btrfs_mark_buffer_dirty(src);
2008 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002009
2010 ret = btrfs_update_ref(trans, root, src, dst, 0, push_items);
2011 BUG_ON(ret);
2012
Chris Mason79f95c82007-03-01 15:16:26 -05002013 return ret;
2014}
2015
2016/*
Chris Mason97571fd2007-02-24 13:39:08 -05002017 * helper function to insert a new root level in the tree.
2018 * A new node is allocated, and a single item is inserted to
2019 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002020 *
2021 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002022 */
Chris Masond3977122009-01-05 21:25:51 -05002023static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002024 struct btrfs_root *root,
2025 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002026{
Chris Mason7bb86312007-12-11 09:25:06 -05002027 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002028 struct extent_buffer *lower;
2029 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002030 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002031 struct btrfs_disk_key lower_key;
Zheng Yan31840ae2008-09-23 13:14:14 -04002032 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05002033
2034 BUG_ON(path->nodes[level]);
2035 BUG_ON(path->nodes[level-1] != root->node);
2036
Chris Mason7bb86312007-12-11 09:25:06 -05002037 lower = path->nodes[level-1];
2038 if (level == 1)
2039 btrfs_item_key(lower, &lower_key, 0);
2040 else
2041 btrfs_node_key(lower, &lower_key, 0);
2042
Zheng Yan31840ae2008-09-23 13:14:14 -04002043 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
2044 root->root_key.objectid, trans->transid,
Christoph Hellwigad3d81b2008-09-05 16:43:28 -04002045 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002046 if (IS_ERR(c))
2047 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002048
Chris Mason5f39d392007-10-15 16:14:19 -04002049 memset_extent_buffer(c, 0, 0, root->nodesize);
2050 btrfs_set_header_nritems(c, 1);
2051 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002052 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002053 btrfs_set_header_generation(c, trans->transid);
2054 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002055
Chris Mason5f39d392007-10-15 16:14:19 -04002056 write_extent_buffer(c, root->fs_info->fsid,
2057 (unsigned long)btrfs_header_fsid(c),
2058 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002059
2060 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2061 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2062 BTRFS_UUID_SIZE);
2063
Chris Mason5f39d392007-10-15 16:14:19 -04002064 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002065 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002066 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002067 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002068
2069 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002070
2071 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002072
Chris Mason925baed2008-06-25 16:01:30 -04002073 spin_lock(&root->node_lock);
2074 old = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -04002075 root->node = c;
Chris Mason925baed2008-06-25 16:01:30 -04002076 spin_unlock(&root->node_lock);
2077
Zheng Yan31840ae2008-09-23 13:14:14 -04002078 ret = btrfs_update_extent_ref(trans, root, lower->start,
Chris Mason56bec292009-03-13 10:10:06 -04002079 lower->len, lower->start, c->start,
Zheng Yan31840ae2008-09-23 13:14:14 -04002080 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002081 trans->transid, level - 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04002082 BUG_ON(ret);
2083
Chris Mason925baed2008-06-25 16:01:30 -04002084 /* the super has an extra ref to root->node */
2085 free_extent_buffer(old);
2086
Chris Mason0b86a832008-03-24 15:01:56 -04002087 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002088 extent_buffer_get(c);
2089 path->nodes[level] = c;
Chris Mason925baed2008-06-25 16:01:30 -04002090 path->locks[level] = 1;
Chris Mason5c680ed2007-02-22 11:39:13 -05002091 path->slots[level] = 0;
2092 return 0;
2093}
2094
Chris Mason74123bd2007-02-02 11:05:29 -05002095/*
2096 * worker function to insert a single pointer in a node.
2097 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002098 *
Chris Mason74123bd2007-02-02 11:05:29 -05002099 * slot and level indicate where you want the key to go, and
2100 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002101 *
2102 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002103 */
Chris Masone089f052007-03-16 16:20:31 -04002104static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2105 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002106 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002107{
Chris Mason5f39d392007-10-15 16:14:19 -04002108 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002109 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002110
2111 BUG_ON(!path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002112 lower = path->nodes[level];
2113 nritems = btrfs_header_nritems(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002114 if (slot > nritems)
2115 BUG();
Chris Mason123abc82007-03-14 14:14:43 -04002116 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002117 BUG();
2118 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002119 memmove_extent_buffer(lower,
2120 btrfs_node_key_ptr_offset(slot + 1),
2121 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002122 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002123 }
Chris Mason5f39d392007-10-15 16:14:19 -04002124 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002125 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002126 WARN_ON(trans->transid == 0);
2127 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002128 btrfs_set_header_nritems(lower, nritems + 1);
2129 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002130 return 0;
2131}
2132
Chris Mason97571fd2007-02-24 13:39:08 -05002133/*
2134 * split the node at the specified level in path in two.
2135 * The path is corrected to point to the appropriate node after the split
2136 *
2137 * Before splitting this tries to make some room in the node by pushing
2138 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002139 *
2140 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002141 */
Chris Masone02119d2008-09-05 16:13:11 -04002142static noinline int split_node(struct btrfs_trans_handle *trans,
2143 struct btrfs_root *root,
2144 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002145{
Chris Mason5f39d392007-10-15 16:14:19 -04002146 struct extent_buffer *c;
2147 struct extent_buffer *split;
2148 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002149 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002150 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002151 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002152 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002153
Chris Mason5f39d392007-10-15 16:14:19 -04002154 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002155 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002156 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002157 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002158 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002159 if (ret)
2160 return ret;
Chris Masone66f7092007-04-20 13:16:02 -04002161 } else {
2162 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002163 c = path->nodes[level];
2164 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002165 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002166 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002167 if (ret < 0)
2168 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002169 }
Chris Masone66f7092007-04-20 13:16:02 -04002170
Chris Mason5f39d392007-10-15 16:14:19 -04002171 c_nritems = btrfs_header_nritems(c);
Chris Mason7bb86312007-12-11 09:25:06 -05002172
Chris Mason925baed2008-06-25 16:01:30 -04002173 split = btrfs_alloc_free_block(trans, root, root->nodesize,
Zheng Yan31840ae2008-09-23 13:14:14 -04002174 path->nodes[level + 1]->start,
2175 root->root_key.objectid,
2176 trans->transid, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002177 if (IS_ERR(split))
2178 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002179
Chris Mason5f39d392007-10-15 16:14:19 -04002180 btrfs_set_header_flags(split, btrfs_header_flags(c));
2181 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002182 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002183 btrfs_set_header_generation(split, trans->transid);
2184 btrfs_set_header_owner(split, root->root_key.objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -04002185 btrfs_set_header_flags(split, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002186 write_extent_buffer(split, root->fs_info->fsid,
2187 (unsigned long)btrfs_header_fsid(split),
2188 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002189 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2190 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2191 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002192
Chris Mason7518a232007-03-12 12:01:18 -04002193 mid = (c_nritems + 1) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04002194
2195 copy_extent_buffer(split, c,
2196 btrfs_node_key_ptr_offset(0),
2197 btrfs_node_key_ptr_offset(mid),
2198 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2199 btrfs_set_header_nritems(split, c_nritems - mid);
2200 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002201 ret = 0;
2202
Chris Mason5f39d392007-10-15 16:14:19 -04002203 btrfs_mark_buffer_dirty(c);
2204 btrfs_mark_buffer_dirty(split);
2205
2206 btrfs_node_key(split, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002207 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002208 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002209 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002210 if (wret)
2211 ret = wret;
2212
Zheng Yan31840ae2008-09-23 13:14:14 -04002213 ret = btrfs_update_ref(trans, root, c, split, 0, c_nritems - mid);
2214 BUG_ON(ret);
2215
Chris Mason5de08d72007-02-24 06:24:44 -05002216 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002217 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002218 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002219 free_extent_buffer(c);
2220 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002221 path->slots[level + 1] += 1;
2222 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002223 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002224 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002225 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002226 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002227}
2228
Chris Mason74123bd2007-02-02 11:05:29 -05002229/*
2230 * how many bytes are required to store the items in a leaf. start
2231 * and nr indicate which items in the leaf to check. This totals up the
2232 * space used both by the item structs and the item data
2233 */
Chris Mason5f39d392007-10-15 16:14:19 -04002234static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002235{
2236 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002237 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002238 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002239
2240 if (!nr)
2241 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002242 data_len = btrfs_item_end_nr(l, start);
2243 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002244 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002245 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002246 return data_len;
2247}
2248
Chris Mason74123bd2007-02-02 11:05:29 -05002249/*
Chris Masond4dbff92007-04-04 14:08:15 -04002250 * The space between the end of the leaf items and
2251 * the start of the leaf data. IOW, how much room
2252 * the leaf has left for both items and data
2253 */
Chris Masond3977122009-01-05 21:25:51 -05002254noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002255 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002256{
Chris Mason5f39d392007-10-15 16:14:19 -04002257 int nritems = btrfs_header_nritems(leaf);
2258 int ret;
2259 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2260 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002261 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2262 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002263 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002264 leaf_space_used(leaf, 0, nritems), nritems);
2265 }
2266 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002267}
2268
Chris Mason44871b12009-03-13 10:04:31 -04002269static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
2270 struct btrfs_root *root,
2271 struct btrfs_path *path,
2272 int data_size, int empty,
2273 struct extent_buffer *right,
2274 int free_space, u32 left_nritems)
Chris Mason00ec4c52007-02-24 12:47:20 -05002275{
Chris Mason5f39d392007-10-15 16:14:19 -04002276 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04002277 struct extent_buffer *upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002278 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002279 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002280 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002281 int push_space = 0;
2282 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002283 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05002284 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002285 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002286 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002287 u32 this_item_size;
Chris Mason54aa1f42007-06-22 14:16:25 -04002288 int ret;
Chris Mason00ec4c52007-02-24 12:47:20 -05002289
Chris Mason34a38212007-11-07 13:31:03 -05002290 if (empty)
2291 nr = 0;
2292 else
2293 nr = 1;
2294
Zheng Yan31840ae2008-09-23 13:14:14 -04002295 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002296 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002297
Chris Mason44871b12009-03-13 10:04:31 -04002298 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05002299 i = left_nritems - 1;
2300 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002301 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002302
Zheng Yan31840ae2008-09-23 13:14:14 -04002303 if (!empty && push_items > 0) {
2304 if (path->slots[0] > i)
2305 break;
2306 if (path->slots[0] == i) {
2307 int space = btrfs_leaf_free_space(root, left);
2308 if (space + push_space * 2 > free_space)
2309 break;
2310 }
2311 }
2312
Chris Mason00ec4c52007-02-24 12:47:20 -05002313 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002314 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002315
2316 if (!left->map_token) {
2317 map_extent_buffer(left, (unsigned long)item,
2318 sizeof(struct btrfs_item),
2319 &left->map_token, &left->kaddr,
2320 &left->map_start, &left->map_len,
2321 KM_USER1);
2322 }
2323
2324 this_item_size = btrfs_item_size(left, item);
2325 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002326 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002327
Chris Mason00ec4c52007-02-24 12:47:20 -05002328 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002329 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002330 if (i == 0)
2331 break;
2332 i--;
Chris Masondb945352007-10-15 16:15:53 -04002333 }
2334 if (left->map_token) {
2335 unmap_extent_buffer(left, left->map_token, KM_USER1);
2336 left->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002337 }
Chris Mason5f39d392007-10-15 16:14:19 -04002338
Chris Mason925baed2008-06-25 16:01:30 -04002339 if (push_items == 0)
2340 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002341
Chris Mason34a38212007-11-07 13:31:03 -05002342 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002343 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002344
Chris Mason00ec4c52007-02-24 12:47:20 -05002345 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002346 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002347
Chris Mason5f39d392007-10-15 16:14:19 -04002348 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002349 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002350
Chris Mason00ec4c52007-02-24 12:47:20 -05002351 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002352 data_end = leaf_data_end(root, right);
2353 memmove_extent_buffer(right,
2354 btrfs_leaf_data(right) + data_end - push_space,
2355 btrfs_leaf_data(right) + data_end,
2356 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2357
Chris Mason00ec4c52007-02-24 12:47:20 -05002358 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002359 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002360 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2361 btrfs_leaf_data(left) + leaf_data_end(root, left),
2362 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002363
2364 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2365 btrfs_item_nr_offset(0),
2366 right_nritems * sizeof(struct btrfs_item));
2367
Chris Mason00ec4c52007-02-24 12:47:20 -05002368 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002369 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2370 btrfs_item_nr_offset(left_nritems - push_items),
2371 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002372
2373 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002374 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002375 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002376 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002377 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002378 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002379 if (!right->map_token) {
2380 map_extent_buffer(right, (unsigned long)item,
2381 sizeof(struct btrfs_item),
2382 &right->map_token, &right->kaddr,
2383 &right->map_start, &right->map_len,
2384 KM_USER1);
2385 }
2386 push_space -= btrfs_item_size(right, item);
2387 btrfs_set_item_offset(right, item, push_space);
2388 }
2389
2390 if (right->map_token) {
2391 unmap_extent_buffer(right, right->map_token, KM_USER1);
2392 right->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002393 }
Chris Mason7518a232007-03-12 12:01:18 -04002394 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002395 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002396
Chris Mason34a38212007-11-07 13:31:03 -05002397 if (left_nritems)
2398 btrfs_mark_buffer_dirty(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002399 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002400
Zheng Yan31840ae2008-09-23 13:14:14 -04002401 ret = btrfs_update_ref(trans, root, left, right, 0, push_items);
2402 BUG_ON(ret);
2403
Chris Mason5f39d392007-10-15 16:14:19 -04002404 btrfs_item_key(right, &disk_key, 0);
2405 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002406 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002407
Chris Mason00ec4c52007-02-24 12:47:20 -05002408 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002409 if (path->slots[0] >= left_nritems) {
2410 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002411 if (btrfs_header_nritems(path->nodes[0]) == 0)
2412 clean_tree_block(trans, root, path->nodes[0]);
2413 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002414 free_extent_buffer(path->nodes[0]);
2415 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002416 path->slots[1] += 1;
2417 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002418 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002419 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002420 }
2421 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002422
2423out_unlock:
2424 btrfs_tree_unlock(right);
2425 free_extent_buffer(right);
2426 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002427}
Chris Mason925baed2008-06-25 16:01:30 -04002428
Chris Mason00ec4c52007-02-24 12:47:20 -05002429/*
Chris Mason44871b12009-03-13 10:04:31 -04002430 * push some data in the path leaf to the right, trying to free up at
2431 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2432 *
2433 * returns 1 if the push failed because the other node didn't have enough
2434 * room, 0 if everything worked out and < 0 if there were major errors.
2435 */
2436static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
2437 *root, struct btrfs_path *path, int data_size,
2438 int empty)
2439{
2440 struct extent_buffer *left = path->nodes[0];
2441 struct extent_buffer *right;
2442 struct extent_buffer *upper;
2443 int slot;
2444 int free_space;
2445 u32 left_nritems;
2446 int ret;
2447
2448 if (!path->nodes[1])
2449 return 1;
2450
2451 slot = path->slots[1];
2452 upper = path->nodes[1];
2453 if (slot >= btrfs_header_nritems(upper) - 1)
2454 return 1;
2455
2456 btrfs_assert_tree_locked(path->nodes[1]);
2457
2458 right = read_node_slot(root, upper, slot + 1);
2459 btrfs_tree_lock(right);
2460 btrfs_set_lock_blocking(right);
2461
2462 free_space = btrfs_leaf_free_space(root, right);
2463 if (free_space < data_size)
2464 goto out_unlock;
2465
2466 /* cow and double check */
2467 ret = btrfs_cow_block(trans, root, right, upper,
2468 slot + 1, &right);
2469 if (ret)
2470 goto out_unlock;
2471
2472 free_space = btrfs_leaf_free_space(root, right);
2473 if (free_space < data_size)
2474 goto out_unlock;
2475
2476 left_nritems = btrfs_header_nritems(left);
2477 if (left_nritems == 0)
2478 goto out_unlock;
2479
2480 return __push_leaf_right(trans, root, path, data_size, empty,
2481 right, free_space, left_nritems);
2482out_unlock:
2483 btrfs_tree_unlock(right);
2484 free_extent_buffer(right);
2485 return 1;
2486}
2487
2488/*
Chris Mason74123bd2007-02-02 11:05:29 -05002489 * push some data in the path leaf to the left, trying to free up at
2490 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2491 */
Chris Mason44871b12009-03-13 10:04:31 -04002492static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
2493 struct btrfs_root *root,
2494 struct btrfs_path *path, int data_size,
2495 int empty, struct extent_buffer *left,
2496 int free_space, int right_nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002497{
Chris Mason5f39d392007-10-15 16:14:19 -04002498 struct btrfs_disk_key disk_key;
2499 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05002500 int slot;
2501 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002502 int push_space = 0;
2503 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002504 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002505 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002506 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002507 int ret = 0;
2508 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002509 u32 this_item_size;
2510 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002511
2512 slot = path->slots[1];
Chris Mason02217ed2007-03-02 16:08:05 -05002513
Chris Mason34a38212007-11-07 13:31:03 -05002514 if (empty)
2515 nr = right_nritems;
2516 else
2517 nr = right_nritems - 1;
2518
2519 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002520 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002521 if (!right->map_token) {
2522 map_extent_buffer(right, (unsigned long)item,
2523 sizeof(struct btrfs_item),
2524 &right->map_token, &right->kaddr,
2525 &right->map_start, &right->map_len,
2526 KM_USER1);
2527 }
2528
Zheng Yan31840ae2008-09-23 13:14:14 -04002529 if (!empty && push_items > 0) {
2530 if (path->slots[0] < i)
2531 break;
2532 if (path->slots[0] == i) {
2533 int space = btrfs_leaf_free_space(root, right);
2534 if (space + push_space * 2 > free_space)
2535 break;
2536 }
2537 }
2538
Chris Masonbe0e5c02007-01-26 15:51:26 -05002539 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002540 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002541
2542 this_item_size = btrfs_item_size(right, item);
2543 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002544 break;
Chris Masondb945352007-10-15 16:15:53 -04002545
Chris Masonbe0e5c02007-01-26 15:51:26 -05002546 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002547 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002548 }
Chris Masondb945352007-10-15 16:15:53 -04002549
2550 if (right->map_token) {
2551 unmap_extent_buffer(right, right->map_token, KM_USER1);
2552 right->map_token = NULL;
2553 }
2554
Chris Masonbe0e5c02007-01-26 15:51:26 -05002555 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002556 ret = 1;
2557 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002558 }
Chris Mason34a38212007-11-07 13:31:03 -05002559 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002560 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002561
Chris Masonbe0e5c02007-01-26 15:51:26 -05002562 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002563 copy_extent_buffer(left, right,
2564 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2565 btrfs_item_nr_offset(0),
2566 push_items * sizeof(struct btrfs_item));
2567
Chris Mason123abc82007-03-14 14:14:43 -04002568 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002569 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002570
2571 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002572 leaf_data_end(root, left) - push_space,
2573 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002574 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002575 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002576 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002577 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002578
Chris Masondb945352007-10-15 16:15:53 -04002579 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002580 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002581 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002582
Chris Mason5f39d392007-10-15 16:14:19 -04002583 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002584 if (!left->map_token) {
2585 map_extent_buffer(left, (unsigned long)item,
2586 sizeof(struct btrfs_item),
2587 &left->map_token, &left->kaddr,
2588 &left->map_start, &left->map_len,
2589 KM_USER1);
2590 }
2591
Chris Mason5f39d392007-10-15 16:14:19 -04002592 ioff = btrfs_item_offset(left, item);
2593 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002594 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002595 }
Chris Mason5f39d392007-10-15 16:14:19 -04002596 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masondb945352007-10-15 16:15:53 -04002597 if (left->map_token) {
2598 unmap_extent_buffer(left, left->map_token, KM_USER1);
2599 left->map_token = NULL;
2600 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002601
2602 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002603 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002604 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2605 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002606 WARN_ON(1);
2607 }
Chris Mason5f39d392007-10-15 16:14:19 -04002608
Chris Mason34a38212007-11-07 13:31:03 -05002609 if (push_items < right_nritems) {
2610 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2611 leaf_data_end(root, right);
2612 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2613 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2614 btrfs_leaf_data(right) +
2615 leaf_data_end(root, right), push_space);
2616
2617 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002618 btrfs_item_nr_offset(push_items),
2619 (btrfs_header_nritems(right) - push_items) *
2620 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002621 }
Yaneef1c492007-11-26 10:58:13 -05002622 right_nritems -= push_items;
2623 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002624 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002625 for (i = 0; i < right_nritems; i++) {
2626 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002627
2628 if (!right->map_token) {
2629 map_extent_buffer(right, (unsigned long)item,
2630 sizeof(struct btrfs_item),
2631 &right->map_token, &right->kaddr,
2632 &right->map_start, &right->map_len,
2633 KM_USER1);
2634 }
2635
2636 push_space = push_space - btrfs_item_size(right, item);
2637 btrfs_set_item_offset(right, item, push_space);
2638 }
2639 if (right->map_token) {
2640 unmap_extent_buffer(right, right->map_token, KM_USER1);
2641 right->map_token = NULL;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002642 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002643
Chris Mason5f39d392007-10-15 16:14:19 -04002644 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002645 if (right_nritems)
2646 btrfs_mark_buffer_dirty(right);
Chris Mason098f59c2007-05-11 11:33:21 -04002647
Zheng Yan31840ae2008-09-23 13:14:14 -04002648 ret = btrfs_update_ref(trans, root, right, left,
2649 old_left_nritems, push_items);
2650 BUG_ON(ret);
2651
Chris Mason5f39d392007-10-15 16:14:19 -04002652 btrfs_item_key(right, &disk_key, 0);
2653 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002654 if (wret)
2655 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002656
2657 /* then fixup the leaf pointer in the path */
2658 if (path->slots[0] < push_items) {
2659 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002660 if (btrfs_header_nritems(path->nodes[0]) == 0)
2661 clean_tree_block(trans, root, path->nodes[0]);
2662 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002663 free_extent_buffer(path->nodes[0]);
2664 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002665 path->slots[1] -= 1;
2666 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002667 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002668 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002669 path->slots[0] -= push_items;
2670 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002671 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002672 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002673out:
2674 btrfs_tree_unlock(left);
2675 free_extent_buffer(left);
2676 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002677}
2678
Chris Mason74123bd2007-02-02 11:05:29 -05002679/*
Chris Mason44871b12009-03-13 10:04:31 -04002680 * push some data in the path leaf to the left, trying to free up at
2681 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2682 */
2683static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
2684 *root, struct btrfs_path *path, int data_size,
2685 int empty)
2686{
2687 struct extent_buffer *right = path->nodes[0];
2688 struct extent_buffer *left;
2689 int slot;
2690 int free_space;
2691 u32 right_nritems;
2692 int ret = 0;
2693
2694 slot = path->slots[1];
2695 if (slot == 0)
2696 return 1;
2697 if (!path->nodes[1])
2698 return 1;
2699
2700 right_nritems = btrfs_header_nritems(right);
2701 if (right_nritems == 0)
2702 return 1;
2703
2704 btrfs_assert_tree_locked(path->nodes[1]);
2705
2706 left = read_node_slot(root, path->nodes[1], slot - 1);
2707 btrfs_tree_lock(left);
2708 btrfs_set_lock_blocking(left);
2709
2710 free_space = btrfs_leaf_free_space(root, left);
2711 if (free_space < data_size) {
2712 ret = 1;
2713 goto out;
2714 }
2715
2716 /* cow and double check */
2717 ret = btrfs_cow_block(trans, root, left,
2718 path->nodes[1], slot - 1, &left);
2719 if (ret) {
2720 /* we hit -ENOSPC, but it isn't fatal here */
2721 ret = 1;
2722 goto out;
2723 }
2724
2725 free_space = btrfs_leaf_free_space(root, left);
2726 if (free_space < data_size) {
2727 ret = 1;
2728 goto out;
2729 }
2730
2731 return __push_leaf_left(trans, root, path, data_size,
2732 empty, left, free_space, right_nritems);
2733out:
2734 btrfs_tree_unlock(left);
2735 free_extent_buffer(left);
2736 return ret;
2737}
2738
2739/*
Chris Mason74123bd2007-02-02 11:05:29 -05002740 * split the path's leaf in two, making sure there is at least data_size
2741 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002742 *
2743 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002744 */
Chris Mason44871b12009-03-13 10:04:31 -04002745static noinline int copy_for_split(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002746 struct btrfs_root *root,
Chris Mason44871b12009-03-13 10:04:31 -04002747 struct btrfs_path *path,
2748 struct extent_buffer *l,
2749 struct extent_buffer *right,
2750 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002751{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002752 int data_copy_size;
2753 int rt_data_off;
2754 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002755 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002756 int wret;
Chris Masond4dbff92007-04-04 14:08:15 -04002757 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002758
Chris Mason5f39d392007-10-15 16:14:19 -04002759 nritems = nritems - mid;
2760 btrfs_set_header_nritems(right, nritems);
2761 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2762
2763 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2764 btrfs_item_nr_offset(mid),
2765 nritems * sizeof(struct btrfs_item));
2766
2767 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002768 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2769 data_copy_size, btrfs_leaf_data(l) +
2770 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002771
Chris Mason5f39d392007-10-15 16:14:19 -04002772 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2773 btrfs_item_end_nr(l, mid);
2774
2775 for (i = 0; i < nritems; i++) {
2776 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002777 u32 ioff;
2778
2779 if (!right->map_token) {
2780 map_extent_buffer(right, (unsigned long)item,
2781 sizeof(struct btrfs_item),
2782 &right->map_token, &right->kaddr,
2783 &right->map_start, &right->map_len,
2784 KM_USER1);
2785 }
2786
2787 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002788 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002789 }
Chris Mason74123bd2007-02-02 11:05:29 -05002790
Chris Masondb945352007-10-15 16:15:53 -04002791 if (right->map_token) {
2792 unmap_extent_buffer(right, right->map_token, KM_USER1);
2793 right->map_token = NULL;
2794 }
2795
Chris Mason5f39d392007-10-15 16:14:19 -04002796 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002797 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002798 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002799 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2800 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002801 if (wret)
2802 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002803
2804 btrfs_mark_buffer_dirty(right);
2805 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002806 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002807
Zheng Yan31840ae2008-09-23 13:14:14 -04002808 ret = btrfs_update_ref(trans, root, l, right, 0, nritems);
2809 BUG_ON(ret);
2810
Chris Masonbe0e5c02007-01-26 15:51:26 -05002811 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002812 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002813 free_extent_buffer(path->nodes[0]);
2814 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002815 path->slots[0] -= mid;
2816 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002817 } else {
2818 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002819 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002820 }
Chris Mason5f39d392007-10-15 16:14:19 -04002821
Chris Masoneb60cea2007-02-02 09:18:22 -05002822 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002823
Chris Mason44871b12009-03-13 10:04:31 -04002824 return ret;
2825}
2826
2827/*
2828 * split the path's leaf in two, making sure there is at least data_size
2829 * available for the resulting leaf level of the path.
2830 *
2831 * returns 0 if all went well and < 0 on failure.
2832 */
2833static noinline int split_leaf(struct btrfs_trans_handle *trans,
2834 struct btrfs_root *root,
2835 struct btrfs_key *ins_key,
2836 struct btrfs_path *path, int data_size,
2837 int extend)
2838{
2839 struct extent_buffer *l;
2840 u32 nritems;
2841 int mid;
2842 int slot;
2843 struct extent_buffer *right;
2844 int ret = 0;
2845 int wret;
2846 int double_split;
2847 int num_doubles = 0;
2848
2849 /* first try to make some room by pushing left and right */
2850 if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY) {
2851 wret = push_leaf_right(trans, root, path, data_size, 0);
2852 if (wret < 0)
2853 return wret;
2854 if (wret) {
2855 wret = push_leaf_left(trans, root, path, data_size, 0);
2856 if (wret < 0)
2857 return wret;
2858 }
2859 l = path->nodes[0];
2860
2861 /* did the pushes work? */
2862 if (btrfs_leaf_free_space(root, l) >= data_size)
2863 return 0;
2864 }
2865
2866 if (!path->nodes[1]) {
2867 ret = insert_new_root(trans, root, path, 1);
2868 if (ret)
2869 return ret;
2870 }
2871again:
2872 double_split = 0;
2873 l = path->nodes[0];
2874 slot = path->slots[0];
2875 nritems = btrfs_header_nritems(l);
2876 mid = (nritems + 1) / 2;
2877
2878 right = btrfs_alloc_free_block(trans, root, root->leafsize,
2879 path->nodes[1]->start,
2880 root->root_key.objectid,
2881 trans->transid, 0, l->start, 0);
2882 if (IS_ERR(right)) {
2883 BUG_ON(1);
2884 return PTR_ERR(right);
2885 }
2886
2887 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
2888 btrfs_set_header_bytenr(right, right->start);
2889 btrfs_set_header_generation(right, trans->transid);
2890 btrfs_set_header_owner(right, root->root_key.objectid);
2891 btrfs_set_header_level(right, 0);
2892 write_extent_buffer(right, root->fs_info->fsid,
2893 (unsigned long)btrfs_header_fsid(right),
2894 BTRFS_FSID_SIZE);
2895
2896 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2897 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2898 BTRFS_UUID_SIZE);
2899
2900 if (mid <= slot) {
2901 if (nritems == 1 ||
2902 leaf_space_used(l, mid, nritems - mid) + data_size >
2903 BTRFS_LEAF_DATA_SIZE(root)) {
2904 if (slot >= nritems) {
2905 struct btrfs_disk_key disk_key;
2906
2907 btrfs_cpu_key_to_disk(&disk_key, ins_key);
2908 btrfs_set_header_nritems(right, 0);
2909 wret = insert_ptr(trans, root, path,
2910 &disk_key, right->start,
2911 path->slots[1] + 1, 1);
2912 if (wret)
2913 ret = wret;
2914
2915 btrfs_tree_unlock(path->nodes[0]);
2916 free_extent_buffer(path->nodes[0]);
2917 path->nodes[0] = right;
2918 path->slots[0] = 0;
2919 path->slots[1] += 1;
2920 btrfs_mark_buffer_dirty(right);
2921 return ret;
2922 }
2923 mid = slot;
2924 if (mid != nritems &&
2925 leaf_space_used(l, mid, nritems - mid) +
2926 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2927 double_split = 1;
2928 }
2929 }
2930 } else {
2931 if (leaf_space_used(l, 0, mid) + data_size >
2932 BTRFS_LEAF_DATA_SIZE(root)) {
2933 if (!extend && data_size && slot == 0) {
2934 struct btrfs_disk_key disk_key;
2935
2936 btrfs_cpu_key_to_disk(&disk_key, ins_key);
2937 btrfs_set_header_nritems(right, 0);
2938 wret = insert_ptr(trans, root, path,
2939 &disk_key,
2940 right->start,
2941 path->slots[1], 1);
2942 if (wret)
2943 ret = wret;
2944 btrfs_tree_unlock(path->nodes[0]);
2945 free_extent_buffer(path->nodes[0]);
2946 path->nodes[0] = right;
2947 path->slots[0] = 0;
2948 if (path->slots[1] == 0) {
2949 wret = fixup_low_keys(trans, root,
2950 path, &disk_key, 1);
2951 if (wret)
2952 ret = wret;
2953 }
2954 btrfs_mark_buffer_dirty(right);
2955 return ret;
2956 } else if ((extend || !data_size) && slot == 0) {
2957 mid = 1;
2958 } else {
2959 mid = slot;
2960 if (mid != nritems &&
2961 leaf_space_used(l, mid, nritems - mid) +
2962 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2963 double_split = 1;
2964 }
2965 }
2966 }
2967 }
2968
2969 ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems);
2970 BUG_ON(ret);
2971
Chris Masoncc0c5532007-10-25 15:42:57 -04002972 if (double_split) {
2973 BUG_ON(num_doubles != 0);
2974 num_doubles++;
2975 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04002976 }
Chris Mason44871b12009-03-13 10:04:31 -04002977
Chris Masonbe0e5c02007-01-26 15:51:26 -05002978 return ret;
2979}
2980
Chris Masond352ac62008-09-29 15:18:18 -04002981/*
Chris Mason459931e2008-12-10 09:10:46 -05002982 * This function splits a single item into two items,
2983 * giving 'new_key' to the new item and splitting the
2984 * old one at split_offset (from the start of the item).
2985 *
2986 * The path may be released by this operation. After
2987 * the split, the path is pointing to the old item. The
2988 * new item is going to be in the same node as the old one.
2989 *
2990 * Note, the item being split must be smaller enough to live alone on
2991 * a tree block with room for one extra struct btrfs_item
2992 *
2993 * This allows us to split the item in place, keeping a lock on the
2994 * leaf the entire time.
2995 */
2996int btrfs_split_item(struct btrfs_trans_handle *trans,
2997 struct btrfs_root *root,
2998 struct btrfs_path *path,
2999 struct btrfs_key *new_key,
3000 unsigned long split_offset)
3001{
3002 u32 item_size;
3003 struct extent_buffer *leaf;
3004 struct btrfs_key orig_key;
3005 struct btrfs_item *item;
3006 struct btrfs_item *new_item;
3007 int ret = 0;
3008 int slot;
3009 u32 nritems;
3010 u32 orig_offset;
3011 struct btrfs_disk_key disk_key;
3012 char *buf;
3013
3014 leaf = path->nodes[0];
3015 btrfs_item_key_to_cpu(leaf, &orig_key, path->slots[0]);
3016 if (btrfs_leaf_free_space(root, leaf) >= sizeof(struct btrfs_item))
3017 goto split;
3018
3019 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3020 btrfs_release_path(root, path);
3021
3022 path->search_for_split = 1;
3023 path->keep_locks = 1;
3024
3025 ret = btrfs_search_slot(trans, root, &orig_key, path, 0, 1);
3026 path->search_for_split = 0;
3027
3028 /* if our item isn't there or got smaller, return now */
3029 if (ret != 0 || item_size != btrfs_item_size_nr(path->nodes[0],
3030 path->slots[0])) {
3031 path->keep_locks = 0;
3032 return -EAGAIN;
3033 }
3034
Yan Zheng87b29b22008-12-17 10:21:48 -05003035 ret = split_leaf(trans, root, &orig_key, path,
3036 sizeof(struct btrfs_item), 1);
Chris Mason459931e2008-12-10 09:10:46 -05003037 path->keep_locks = 0;
3038 BUG_ON(ret);
3039
Chris Masonb4ce94d2009-02-04 09:25:08 -05003040 /*
3041 * make sure any changes to the path from split_leaf leave it
3042 * in a blocking state
3043 */
3044 btrfs_set_path_blocking(path);
3045
Chris Mason459931e2008-12-10 09:10:46 -05003046 leaf = path->nodes[0];
Chris Mason42dc7ba2008-12-15 11:44:56 -05003047 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05003048
3049split:
3050 item = btrfs_item_nr(leaf, path->slots[0]);
3051 orig_offset = btrfs_item_offset(leaf, item);
3052 item_size = btrfs_item_size(leaf, item);
3053
3054
3055 buf = kmalloc(item_size, GFP_NOFS);
3056 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3057 path->slots[0]), item_size);
3058 slot = path->slots[0] + 1;
3059 leaf = path->nodes[0];
3060
3061 nritems = btrfs_header_nritems(leaf);
3062
3063 if (slot != nritems) {
3064 /* shift the items */
3065 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
3066 btrfs_item_nr_offset(slot),
3067 (nritems - slot) * sizeof(struct btrfs_item));
3068
3069 }
3070
3071 btrfs_cpu_key_to_disk(&disk_key, new_key);
3072 btrfs_set_item_key(leaf, &disk_key, slot);
3073
3074 new_item = btrfs_item_nr(leaf, slot);
3075
3076 btrfs_set_item_offset(leaf, new_item, orig_offset);
3077 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3078
3079 btrfs_set_item_offset(leaf, item,
3080 orig_offset + item_size - split_offset);
3081 btrfs_set_item_size(leaf, item, split_offset);
3082
3083 btrfs_set_header_nritems(leaf, nritems + 1);
3084
3085 /* write the data for the start of the original item */
3086 write_extent_buffer(leaf, buf,
3087 btrfs_item_ptr_offset(leaf, path->slots[0]),
3088 split_offset);
3089
3090 /* write the data for the new item */
3091 write_extent_buffer(leaf, buf + split_offset,
3092 btrfs_item_ptr_offset(leaf, slot),
3093 item_size - split_offset);
3094 btrfs_mark_buffer_dirty(leaf);
3095
3096 ret = 0;
3097 if (btrfs_leaf_free_space(root, leaf) < 0) {
3098 btrfs_print_leaf(root, leaf);
3099 BUG();
3100 }
3101 kfree(buf);
3102 return ret;
3103}
3104
3105/*
Chris Masond352ac62008-09-29 15:18:18 -04003106 * make the item pointed to by the path smaller. new_size indicates
3107 * how small to make it, and from_end tells us if we just chop bytes
3108 * off the end of the item or if we shift the item to chop bytes off
3109 * the front.
3110 */
Chris Masonb18c6682007-04-17 13:26:50 -04003111int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3112 struct btrfs_root *root,
3113 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003114 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003115{
3116 int ret = 0;
3117 int slot;
3118 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003119 struct extent_buffer *leaf;
3120 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003121 u32 nritems;
3122 unsigned int data_end;
3123 unsigned int old_data_start;
3124 unsigned int old_size;
3125 unsigned int size_diff;
3126 int i;
3127
3128 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003129 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003130 slot = path->slots[0];
3131
3132 old_size = btrfs_item_size_nr(leaf, slot);
3133 if (old_size == new_size)
3134 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003135
Chris Mason5f39d392007-10-15 16:14:19 -04003136 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003137 data_end = leaf_data_end(root, leaf);
3138
Chris Mason5f39d392007-10-15 16:14:19 -04003139 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003140
Chris Masonb18c6682007-04-17 13:26:50 -04003141 size_diff = old_size - new_size;
3142
3143 BUG_ON(slot < 0);
3144 BUG_ON(slot >= nritems);
3145
3146 /*
3147 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3148 */
3149 /* first correct the data pointers */
3150 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003151 u32 ioff;
3152 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003153
3154 if (!leaf->map_token) {
3155 map_extent_buffer(leaf, (unsigned long)item,
3156 sizeof(struct btrfs_item),
3157 &leaf->map_token, &leaf->kaddr,
3158 &leaf->map_start, &leaf->map_len,
3159 KM_USER1);
3160 }
3161
Chris Mason5f39d392007-10-15 16:14:19 -04003162 ioff = btrfs_item_offset(leaf, item);
3163 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003164 }
Chris Masondb945352007-10-15 16:15:53 -04003165
3166 if (leaf->map_token) {
3167 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3168 leaf->map_token = NULL;
3169 }
3170
Chris Masonb18c6682007-04-17 13:26:50 -04003171 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003172 if (from_end) {
3173 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3174 data_end + size_diff, btrfs_leaf_data(leaf) +
3175 data_end, old_data_start + new_size - data_end);
3176 } else {
3177 struct btrfs_disk_key disk_key;
3178 u64 offset;
3179
3180 btrfs_item_key(leaf, &disk_key, slot);
3181
3182 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3183 unsigned long ptr;
3184 struct btrfs_file_extent_item *fi;
3185
3186 fi = btrfs_item_ptr(leaf, slot,
3187 struct btrfs_file_extent_item);
3188 fi = (struct btrfs_file_extent_item *)(
3189 (unsigned long)fi - size_diff);
3190
3191 if (btrfs_file_extent_type(leaf, fi) ==
3192 BTRFS_FILE_EXTENT_INLINE) {
3193 ptr = btrfs_item_ptr_offset(leaf, slot);
3194 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003195 (unsigned long)fi,
3196 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003197 disk_bytenr));
3198 }
3199 }
3200
3201 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3202 data_end + size_diff, btrfs_leaf_data(leaf) +
3203 data_end, old_data_start - data_end);
3204
3205 offset = btrfs_disk_key_offset(&disk_key);
3206 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3207 btrfs_set_item_key(leaf, &disk_key, slot);
3208 if (slot == 0)
3209 fixup_low_keys(trans, root, path, &disk_key, 1);
3210 }
Chris Mason5f39d392007-10-15 16:14:19 -04003211
3212 item = btrfs_item_nr(leaf, slot);
3213 btrfs_set_item_size(leaf, item, new_size);
3214 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003215
3216 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003217 if (btrfs_leaf_free_space(root, leaf) < 0) {
3218 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003219 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003220 }
Chris Masonb18c6682007-04-17 13:26:50 -04003221 return ret;
3222}
3223
Chris Masond352ac62008-09-29 15:18:18 -04003224/*
3225 * make the item pointed to by the path bigger, data_size is the new size.
3226 */
Chris Mason5f39d392007-10-15 16:14:19 -04003227int btrfs_extend_item(struct btrfs_trans_handle *trans,
3228 struct btrfs_root *root, struct btrfs_path *path,
3229 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003230{
3231 int ret = 0;
3232 int slot;
3233 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003234 struct extent_buffer *leaf;
3235 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003236 u32 nritems;
3237 unsigned int data_end;
3238 unsigned int old_data;
3239 unsigned int old_size;
3240 int i;
3241
3242 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003243 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003244
Chris Mason5f39d392007-10-15 16:14:19 -04003245 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003246 data_end = leaf_data_end(root, leaf);
3247
Chris Mason5f39d392007-10-15 16:14:19 -04003248 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3249 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003250 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003251 }
Chris Mason6567e832007-04-16 09:22:45 -04003252 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003253 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003254
3255 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003256 if (slot >= nritems) {
3257 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003258 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3259 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003260 BUG_ON(1);
3261 }
Chris Mason6567e832007-04-16 09:22:45 -04003262
3263 /*
3264 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3265 */
3266 /* first correct the data pointers */
3267 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003268 u32 ioff;
3269 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003270
3271 if (!leaf->map_token) {
3272 map_extent_buffer(leaf, (unsigned long)item,
3273 sizeof(struct btrfs_item),
3274 &leaf->map_token, &leaf->kaddr,
3275 &leaf->map_start, &leaf->map_len,
3276 KM_USER1);
3277 }
Chris Mason5f39d392007-10-15 16:14:19 -04003278 ioff = btrfs_item_offset(leaf, item);
3279 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003280 }
Chris Mason5f39d392007-10-15 16:14:19 -04003281
Chris Masondb945352007-10-15 16:15:53 -04003282 if (leaf->map_token) {
3283 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3284 leaf->map_token = NULL;
3285 }
3286
Chris Mason6567e832007-04-16 09:22:45 -04003287 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003288 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003289 data_end - data_size, btrfs_leaf_data(leaf) +
3290 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003291
Chris Mason6567e832007-04-16 09:22:45 -04003292 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003293 old_size = btrfs_item_size_nr(leaf, slot);
3294 item = btrfs_item_nr(leaf, slot);
3295 btrfs_set_item_size(leaf, item, old_size + data_size);
3296 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003297
3298 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003299 if (btrfs_leaf_free_space(root, leaf) < 0) {
3300 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003301 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003302 }
Chris Mason6567e832007-04-16 09:22:45 -04003303 return ret;
3304}
3305
Chris Mason74123bd2007-02-02 11:05:29 -05003306/*
Chris Masond352ac62008-09-29 15:18:18 -04003307 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003308 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003309 * Returns the number of keys that were inserted.
3310 */
3311int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3312 struct btrfs_root *root,
3313 struct btrfs_path *path,
3314 struct btrfs_key *cpu_key, u32 *data_size,
3315 int nr)
3316{
3317 struct extent_buffer *leaf;
3318 struct btrfs_item *item;
3319 int ret = 0;
3320 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003321 int i;
3322 u32 nritems;
3323 u32 total_data = 0;
3324 u32 total_size = 0;
3325 unsigned int data_end;
3326 struct btrfs_disk_key disk_key;
3327 struct btrfs_key found_key;
3328
Yan Zheng87b29b22008-12-17 10:21:48 -05003329 for (i = 0; i < nr; i++) {
3330 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3331 BTRFS_LEAF_DATA_SIZE(root)) {
3332 break;
3333 nr = i;
3334 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003335 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003336 total_size += data_size[i] + sizeof(struct btrfs_item);
3337 }
3338 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003339
Josef Bacikf3465ca2008-11-12 14:19:50 -05003340 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3341 if (ret == 0)
3342 return -EEXIST;
3343 if (ret < 0)
3344 goto out;
3345
Josef Bacikf3465ca2008-11-12 14:19:50 -05003346 leaf = path->nodes[0];
3347
3348 nritems = btrfs_header_nritems(leaf);
3349 data_end = leaf_data_end(root, leaf);
3350
3351 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3352 for (i = nr; i >= 0; i--) {
3353 total_data -= data_size[i];
3354 total_size -= data_size[i] + sizeof(struct btrfs_item);
3355 if (total_size < btrfs_leaf_free_space(root, leaf))
3356 break;
3357 }
3358 nr = i;
3359 }
3360
3361 slot = path->slots[0];
3362 BUG_ON(slot < 0);
3363
3364 if (slot != nritems) {
3365 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3366
3367 item = btrfs_item_nr(leaf, slot);
3368 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3369
3370 /* figure out how many keys we can insert in here */
3371 total_data = data_size[0];
3372 for (i = 1; i < nr; i++) {
3373 if (comp_cpu_keys(&found_key, cpu_key + i) <= 0)
3374 break;
3375 total_data += data_size[i];
3376 }
3377 nr = i;
3378
3379 if (old_data < data_end) {
3380 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003381 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003382 slot, old_data, data_end);
3383 BUG_ON(1);
3384 }
3385 /*
3386 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3387 */
3388 /* first correct the data pointers */
3389 WARN_ON(leaf->map_token);
3390 for (i = slot; i < nritems; i++) {
3391 u32 ioff;
3392
3393 item = btrfs_item_nr(leaf, i);
3394 if (!leaf->map_token) {
3395 map_extent_buffer(leaf, (unsigned long)item,
3396 sizeof(struct btrfs_item),
3397 &leaf->map_token, &leaf->kaddr,
3398 &leaf->map_start, &leaf->map_len,
3399 KM_USER1);
3400 }
3401
3402 ioff = btrfs_item_offset(leaf, item);
3403 btrfs_set_item_offset(leaf, item, ioff - total_data);
3404 }
3405 if (leaf->map_token) {
3406 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3407 leaf->map_token = NULL;
3408 }
3409
3410 /* shift the items */
3411 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3412 btrfs_item_nr_offset(slot),
3413 (nritems - slot) * sizeof(struct btrfs_item));
3414
3415 /* shift the data */
3416 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3417 data_end - total_data, btrfs_leaf_data(leaf) +
3418 data_end, old_data - data_end);
3419 data_end = old_data;
3420 } else {
3421 /*
3422 * this sucks but it has to be done, if we are inserting at
3423 * the end of the leaf only insert 1 of the items, since we
3424 * have no way of knowing whats on the next leaf and we'd have
3425 * to drop our current locks to figure it out
3426 */
3427 nr = 1;
3428 }
3429
3430 /* setup the item for the new data */
3431 for (i = 0; i < nr; i++) {
3432 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3433 btrfs_set_item_key(leaf, &disk_key, slot + i);
3434 item = btrfs_item_nr(leaf, slot + i);
3435 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3436 data_end -= data_size[i];
3437 btrfs_set_item_size(leaf, item, data_size[i]);
3438 }
3439 btrfs_set_header_nritems(leaf, nritems + nr);
3440 btrfs_mark_buffer_dirty(leaf);
3441
3442 ret = 0;
3443 if (slot == 0) {
3444 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3445 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3446 }
3447
3448 if (btrfs_leaf_free_space(root, leaf) < 0) {
3449 btrfs_print_leaf(root, leaf);
3450 BUG();
3451 }
3452out:
3453 if (!ret)
3454 ret = nr;
3455 return ret;
3456}
3457
3458/*
Chris Mason44871b12009-03-13 10:04:31 -04003459 * this is a helper for btrfs_insert_empty_items, the main goal here is
3460 * to save stack depth by doing the bulk of the work in a function
3461 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05003462 */
Chris Mason44871b12009-03-13 10:04:31 -04003463static noinline_for_stack int
3464setup_items_for_insert(struct btrfs_trans_handle *trans,
3465 struct btrfs_root *root, struct btrfs_path *path,
3466 struct btrfs_key *cpu_key, u32 *data_size,
3467 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003468{
Chris Mason5f39d392007-10-15 16:14:19 -04003469 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05003470 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003471 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003472 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003473 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003474 int ret;
3475 struct extent_buffer *leaf;
3476 int slot;
Chris Masone2fa7222007-03-12 16:22:34 -04003477
Chris Mason5f39d392007-10-15 16:14:19 -04003478 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003479 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003480
Chris Mason5f39d392007-10-15 16:14:19 -04003481 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003482 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003483
Chris Masonf25956c2008-09-12 15:32:53 -04003484 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003485 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003486 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003487 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003488 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003489 }
Chris Mason5f39d392007-10-15 16:14:19 -04003490
Chris Masonbe0e5c02007-01-26 15:51:26 -05003491 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003492 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003493
Chris Mason5f39d392007-10-15 16:14:19 -04003494 if (old_data < data_end) {
3495 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003496 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003497 slot, old_data, data_end);
3498 BUG_ON(1);
3499 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003500 /*
3501 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3502 */
3503 /* first correct the data pointers */
Chris Masondb945352007-10-15 16:15:53 -04003504 WARN_ON(leaf->map_token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003505 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003506 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003507
Chris Mason5f39d392007-10-15 16:14:19 -04003508 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003509 if (!leaf->map_token) {
3510 map_extent_buffer(leaf, (unsigned long)item,
3511 sizeof(struct btrfs_item),
3512 &leaf->map_token, &leaf->kaddr,
3513 &leaf->map_start, &leaf->map_len,
3514 KM_USER1);
3515 }
3516
Chris Mason5f39d392007-10-15 16:14:19 -04003517 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003518 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003519 }
Chris Masondb945352007-10-15 16:15:53 -04003520 if (leaf->map_token) {
3521 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3522 leaf->map_token = NULL;
3523 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003524
3525 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003526 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003527 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003528 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003529
3530 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003531 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003532 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003533 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003534 data_end = old_data;
3535 }
Chris Mason5f39d392007-10-15 16:14:19 -04003536
Chris Mason62e27492007-03-15 12:56:47 -04003537 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003538 for (i = 0; i < nr; i++) {
3539 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3540 btrfs_set_item_key(leaf, &disk_key, slot + i);
3541 item = btrfs_item_nr(leaf, slot + i);
3542 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3543 data_end -= data_size[i];
3544 btrfs_set_item_size(leaf, item, data_size[i]);
3545 }
Chris Mason44871b12009-03-13 10:04:31 -04003546
Chris Mason9c583092008-01-29 15:15:18 -05003547 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Mason5f39d392007-10-15 16:14:19 -04003548 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003549
3550 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003551 if (slot == 0) {
Chris Mason44871b12009-03-13 10:04:31 -04003552 struct btrfs_disk_key disk_key;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003553 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003554 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003555 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003556
Chris Mason5f39d392007-10-15 16:14:19 -04003557 if (btrfs_leaf_free_space(root, leaf) < 0) {
3558 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003559 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003560 }
Chris Mason44871b12009-03-13 10:04:31 -04003561 return ret;
3562}
3563
3564/*
3565 * Given a key and some data, insert items into the tree.
3566 * This does all the path init required, making room in the tree if needed.
3567 */
3568int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
3569 struct btrfs_root *root,
3570 struct btrfs_path *path,
3571 struct btrfs_key *cpu_key, u32 *data_size,
3572 int nr)
3573{
3574 struct extent_buffer *leaf;
3575 int ret = 0;
3576 int slot;
3577 int i;
3578 u32 total_size = 0;
3579 u32 total_data = 0;
3580
3581 for (i = 0; i < nr; i++)
3582 total_data += data_size[i];
3583
3584 total_size = total_data + (nr * sizeof(struct btrfs_item));
3585 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3586 if (ret == 0)
3587 return -EEXIST;
3588 if (ret < 0)
3589 goto out;
3590
3591 leaf = path->nodes[0];
3592 slot = path->slots[0];
3593 BUG_ON(slot < 0);
3594
3595 ret = setup_items_for_insert(trans, root, path, cpu_key, data_size,
3596 total_data, total_size, nr);
3597
Chris Masoned2ff2c2007-03-01 18:59:40 -05003598out:
Chris Masonb4ce94d2009-02-04 09:25:08 -05003599 btrfs_unlock_up_safe(path, 1);
Chris Mason62e27492007-03-15 12:56:47 -04003600 return ret;
3601}
3602
3603/*
3604 * Given a key and some data, insert an item into the tree.
3605 * This does all the path init required, making room in the tree if needed.
3606 */
Chris Masone089f052007-03-16 16:20:31 -04003607int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3608 *root, struct btrfs_key *cpu_key, void *data, u32
3609 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003610{
3611 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003612 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003613 struct extent_buffer *leaf;
3614 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003615
Chris Mason2c90e5d2007-04-02 10:50:19 -04003616 path = btrfs_alloc_path();
3617 BUG_ON(!path);
Chris Mason2c90e5d2007-04-02 10:50:19 -04003618 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003619 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003620 leaf = path->nodes[0];
3621 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3622 write_extent_buffer(leaf, data, ptr, data_size);
3623 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003624 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003625 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003626 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003627}
3628
Chris Mason74123bd2007-02-02 11:05:29 -05003629/*
Chris Mason5de08d72007-02-24 06:24:44 -05003630 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003631 *
Chris Masond352ac62008-09-29 15:18:18 -04003632 * the tree should have been previously balanced so the deletion does not
3633 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003634 */
Chris Masone089f052007-03-16 16:20:31 -04003635static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3636 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003637{
Chris Mason5f39d392007-10-15 16:14:19 -04003638 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003639 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003640 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003641 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003642
Chris Mason5f39d392007-10-15 16:14:19 -04003643 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003644 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003645 memmove_extent_buffer(parent,
3646 btrfs_node_key_ptr_offset(slot),
3647 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003648 sizeof(struct btrfs_key_ptr) *
3649 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003650 }
Chris Mason7518a232007-03-12 12:01:18 -04003651 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003652 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003653 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003654 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003655 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003656 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003657 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003658 struct btrfs_disk_key disk_key;
3659
3660 btrfs_node_key(parent, &disk_key, 0);
3661 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003662 if (wret)
3663 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003664 }
Chris Masond6025572007-03-30 14:27:56 -04003665 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003666 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003667}
3668
Chris Mason74123bd2007-02-02 11:05:29 -05003669/*
Chris Mason323ac952008-10-01 19:05:46 -04003670 * a helper function to delete the leaf pointed to by path->slots[1] and
3671 * path->nodes[1]. bytenr is the node block pointer, but since the callers
3672 * already know it, it is faster to have them pass it down than to
3673 * read it out of the node again.
3674 *
3675 * This deletes the pointer in path->nodes[1] and frees the leaf
3676 * block extent. zero is returned if it all worked out, < 0 otherwise.
3677 *
3678 * The path must have already been setup for deleting the leaf, including
3679 * all the proper balancing. path->nodes[1] must be locked.
3680 */
3681noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3682 struct btrfs_root *root,
3683 struct btrfs_path *path, u64 bytenr)
3684{
3685 int ret;
3686 u64 root_gen = btrfs_header_generation(path->nodes[1]);
Chris Mason4d081c42009-02-04 09:31:28 -05003687 u64 parent_start = path->nodes[1]->start;
3688 u64 parent_owner = btrfs_header_owner(path->nodes[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003689
3690 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3691 if (ret)
3692 return ret;
3693
Chris Mason4d081c42009-02-04 09:31:28 -05003694 /*
3695 * btrfs_free_extent is expensive, we want to make sure we
3696 * aren't holding any locks when we call it
3697 */
3698 btrfs_unlock_up_safe(path, 0);
3699
Chris Mason323ac952008-10-01 19:05:46 -04003700 ret = btrfs_free_extent(trans, root, bytenr,
3701 btrfs_level_size(root, 0),
Chris Mason4d081c42009-02-04 09:31:28 -05003702 parent_start, parent_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04003703 root_gen, 0, 1);
Chris Mason323ac952008-10-01 19:05:46 -04003704 return ret;
3705}
3706/*
Chris Mason74123bd2007-02-02 11:05:29 -05003707 * delete the item at the leaf level in path. If that empties
3708 * the leaf, remove it from the tree
3709 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003710int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3711 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003712{
Chris Mason5f39d392007-10-15 16:14:19 -04003713 struct extent_buffer *leaf;
3714 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003715 int last_off;
3716 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003717 int ret = 0;
3718 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003719 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003720 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003721
Chris Mason5f39d392007-10-15 16:14:19 -04003722 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003723 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3724
3725 for (i = 0; i < nr; i++)
3726 dsize += btrfs_item_size_nr(leaf, slot + i);
3727
Chris Mason5f39d392007-10-15 16:14:19 -04003728 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003729
Chris Mason85e21ba2008-01-29 15:11:36 -05003730 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003731 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003732
3733 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003734 data_end + dsize,
3735 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003736 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003737
Chris Mason85e21ba2008-01-29 15:11:36 -05003738 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003739 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003740
Chris Mason5f39d392007-10-15 16:14:19 -04003741 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003742 if (!leaf->map_token) {
3743 map_extent_buffer(leaf, (unsigned long)item,
3744 sizeof(struct btrfs_item),
3745 &leaf->map_token, &leaf->kaddr,
3746 &leaf->map_start, &leaf->map_len,
3747 KM_USER1);
3748 }
Chris Mason5f39d392007-10-15 16:14:19 -04003749 ioff = btrfs_item_offset(leaf, item);
3750 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003751 }
Chris Masondb945352007-10-15 16:15:53 -04003752
3753 if (leaf->map_token) {
3754 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3755 leaf->map_token = NULL;
3756 }
3757
Chris Mason5f39d392007-10-15 16:14:19 -04003758 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003759 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003760 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003761 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003762 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003763 btrfs_set_header_nritems(leaf, nritems - nr);
3764 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003765
Chris Mason74123bd2007-02-02 11:05:29 -05003766 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003767 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003768 if (leaf == root->node) {
3769 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003770 } else {
Chris Mason323ac952008-10-01 19:05:46 -04003771 ret = btrfs_del_leaf(trans, root, path, leaf->start);
3772 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003773 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003774 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003775 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003776 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003777 struct btrfs_disk_key disk_key;
3778
3779 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003780 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003781 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003782 if (wret)
3783 ret = wret;
3784 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003785
Chris Mason74123bd2007-02-02 11:05:29 -05003786 /* delete the leaf if it is mostly empty */
Chris Mason85e21ba2008-01-29 15:11:36 -05003787 if (used < BTRFS_LEAF_DATA_SIZE(root) / 4) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003788 /* push_leaf_left fixes the path.
3789 * make sure the path still points to our leaf
3790 * for possible call to del_ptr below
3791 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003792 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003793 extent_buffer_get(leaf);
3794
Chris Mason85e21ba2008-01-29 15:11:36 -05003795 wret = push_leaf_left(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003796 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003797 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003798
3799 if (path->nodes[0] == leaf &&
3800 btrfs_header_nritems(leaf)) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003801 wret = push_leaf_right(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003802 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003803 ret = wret;
3804 }
Chris Mason5f39d392007-10-15 16:14:19 -04003805
3806 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003807 path->slots[1] = slot;
Chris Masond3977122009-01-05 21:25:51 -05003808 ret = btrfs_del_leaf(trans, root, path,
3809 leaf->start);
Chris Mason323ac952008-10-01 19:05:46 -04003810 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003811 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003812 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003813 /* if we're still in the path, make sure
3814 * we're dirty. Otherwise, one of the
3815 * push_leaf functions must have already
3816 * dirtied this buffer
3817 */
3818 if (path->nodes[0] == leaf)
3819 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003820 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003821 }
Chris Masond5719762007-03-23 10:01:08 -04003822 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003823 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003824 }
3825 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003826 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003827}
3828
Chris Mason97571fd2007-02-24 13:39:08 -05003829/*
Chris Mason925baed2008-06-25 16:01:30 -04003830 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003831 * returns 0 if it found something or 1 if there are no lesser leaves.
3832 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003833 *
3834 * This may release the path, and so you may lose any locks held at the
3835 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003836 */
3837int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3838{
Chris Mason925baed2008-06-25 16:01:30 -04003839 struct btrfs_key key;
3840 struct btrfs_disk_key found_key;
3841 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003842
Chris Mason925baed2008-06-25 16:01:30 -04003843 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003844
Chris Mason925baed2008-06-25 16:01:30 -04003845 if (key.offset > 0)
3846 key.offset--;
3847 else if (key.type > 0)
3848 key.type--;
3849 else if (key.objectid > 0)
3850 key.objectid--;
3851 else
3852 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003853
Chris Mason925baed2008-06-25 16:01:30 -04003854 btrfs_release_path(root, path);
3855 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3856 if (ret < 0)
3857 return ret;
3858 btrfs_item_key(path->nodes[0], &found_key, 0);
3859 ret = comp_keys(&found_key, &key);
3860 if (ret < 0)
3861 return 0;
3862 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003863}
3864
Chris Mason3f157a22008-06-25 16:01:31 -04003865/*
3866 * A helper function to walk down the tree starting at min_key, and looking
3867 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003868 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003869 *
3870 * This does not cow, but it does stuff the starting key it finds back
3871 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3872 * key and get a writable path.
3873 *
3874 * This does lock as it descends, and path->keep_locks should be set
3875 * to 1 by the caller.
3876 *
3877 * This honors path->lowest_level to prevent descent past a given level
3878 * of the tree.
3879 *
Chris Masond352ac62008-09-29 15:18:18 -04003880 * min_trans indicates the oldest transaction that you are interested
3881 * in walking through. Any nodes or leaves older than min_trans are
3882 * skipped over (without reading them).
3883 *
Chris Mason3f157a22008-06-25 16:01:31 -04003884 * returns zero if something useful was found, < 0 on error and 1 if there
3885 * was nothing in the tree that matched the search criteria.
3886 */
3887int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003888 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003889 struct btrfs_path *path, int cache_only,
3890 u64 min_trans)
3891{
3892 struct extent_buffer *cur;
3893 struct btrfs_key found_key;
3894 int slot;
Yan96524802008-07-24 12:19:49 -04003895 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003896 u32 nritems;
3897 int level;
3898 int ret = 1;
3899
Chris Mason934d3752008-12-08 16:43:10 -05003900 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003901again:
3902 cur = btrfs_lock_root_node(root);
3903 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003904 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003905 path->nodes[level] = cur;
3906 path->locks[level] = 1;
3907
3908 if (btrfs_header_generation(cur) < min_trans) {
3909 ret = 1;
3910 goto out;
3911 }
Chris Masond3977122009-01-05 21:25:51 -05003912 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04003913 nritems = btrfs_header_nritems(cur);
3914 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04003915 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003916
Chris Mason323ac952008-10-01 19:05:46 -04003917 /* at the lowest level, we're done, setup the path and exit */
3918 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04003919 if (slot >= nritems)
3920 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04003921 ret = 0;
3922 path->slots[level] = slot;
3923 btrfs_item_key_to_cpu(cur, &found_key, slot);
3924 goto out;
3925 }
Yan96524802008-07-24 12:19:49 -04003926 if (sret && slot > 0)
3927 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04003928 /*
3929 * check this node pointer against the cache_only and
3930 * min_trans parameters. If it isn't in cache or is too
3931 * old, skip to the next one.
3932 */
Chris Masond3977122009-01-05 21:25:51 -05003933 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04003934 u64 blockptr;
3935 u64 gen;
3936 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04003937 struct btrfs_disk_key disk_key;
3938
Chris Mason3f157a22008-06-25 16:01:31 -04003939 blockptr = btrfs_node_blockptr(cur, slot);
3940 gen = btrfs_node_ptr_generation(cur, slot);
3941 if (gen < min_trans) {
3942 slot++;
3943 continue;
3944 }
3945 if (!cache_only)
3946 break;
3947
Chris Masone02119d2008-09-05 16:13:11 -04003948 if (max_key) {
3949 btrfs_node_key(cur, &disk_key, slot);
3950 if (comp_keys(&disk_key, max_key) >= 0) {
3951 ret = 1;
3952 goto out;
3953 }
3954 }
3955
Chris Mason3f157a22008-06-25 16:01:31 -04003956 tmp = btrfs_find_tree_block(root, blockptr,
3957 btrfs_level_size(root, level - 1));
3958
3959 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
3960 free_extent_buffer(tmp);
3961 break;
3962 }
3963 if (tmp)
3964 free_extent_buffer(tmp);
3965 slot++;
3966 }
Chris Masone02119d2008-09-05 16:13:11 -04003967find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04003968 /*
3969 * we didn't find a candidate key in this node, walk forward
3970 * and find another one
3971 */
3972 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04003973 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003974 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04003975 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04003976 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04003977 if (sret == 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04003978 btrfs_release_path(root, path);
3979 goto again;
3980 } else {
3981 goto out;
3982 }
3983 }
3984 /* save our key for returning back */
3985 btrfs_node_key_to_cpu(cur, &found_key, slot);
3986 path->slots[level] = slot;
3987 if (level == path->lowest_level) {
3988 ret = 0;
3989 unlock_up(path, level, 1);
3990 goto out;
3991 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05003992 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003993 cur = read_node_slot(root, cur, slot);
3994
3995 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003996
Chris Mason3f157a22008-06-25 16:01:31 -04003997 path->locks[level - 1] = 1;
3998 path->nodes[level - 1] = cur;
3999 unlock_up(path, level, 1);
Chris Mason4008c042009-02-12 14:09:45 -05004000 btrfs_clear_path_blocking(path, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04004001 }
4002out:
4003 if (ret == 0)
4004 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004005 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004006 return ret;
4007}
4008
4009/*
4010 * this is similar to btrfs_next_leaf, but does not try to preserve
4011 * and fixup the path. It looks for and returns the next key in the
4012 * tree based on the current path and the cache_only and min_trans
4013 * parameters.
4014 *
4015 * 0 is returned if another key is found, < 0 if there are any errors
4016 * and 1 is returned if there are no higher keys in the tree
4017 *
4018 * path->keep_locks should be set to 1 on the search made before
4019 * calling this function.
4020 */
Chris Masone7a84562008-06-25 16:01:31 -04004021int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04004022 struct btrfs_key *key, int lowest_level,
4023 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04004024{
4025 int level = lowest_level;
4026 int slot;
4027 struct extent_buffer *c;
4028
Chris Mason934d3752008-12-08 16:43:10 -05004029 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05004030 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04004031 if (!path->nodes[level])
4032 return 1;
4033
4034 slot = path->slots[level] + 1;
4035 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04004036next:
Chris Masone7a84562008-06-25 16:01:31 -04004037 if (slot >= btrfs_header_nritems(c)) {
4038 level++;
Chris Masond3977122009-01-05 21:25:51 -05004039 if (level == BTRFS_MAX_LEVEL)
Chris Masone7a84562008-06-25 16:01:31 -04004040 return 1;
Chris Masone7a84562008-06-25 16:01:31 -04004041 continue;
4042 }
4043 if (level == 0)
4044 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004045 else {
4046 u64 blockptr = btrfs_node_blockptr(c, slot);
4047 u64 gen = btrfs_node_ptr_generation(c, slot);
4048
4049 if (cache_only) {
4050 struct extent_buffer *cur;
4051 cur = btrfs_find_tree_block(root, blockptr,
4052 btrfs_level_size(root, level - 1));
4053 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4054 slot++;
4055 if (cur)
4056 free_extent_buffer(cur);
4057 goto next;
4058 }
4059 free_extent_buffer(cur);
4060 }
4061 if (gen < min_trans) {
4062 slot++;
4063 goto next;
4064 }
Chris Masone7a84562008-06-25 16:01:31 -04004065 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004066 }
Chris Masone7a84562008-06-25 16:01:31 -04004067 return 0;
4068 }
4069 return 1;
4070}
4071
Chris Mason7bb86312007-12-11 09:25:06 -05004072/*
Chris Mason925baed2008-06-25 16:01:30 -04004073 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004074 * returns 0 if it found something or 1 if there are no greater leaves.
4075 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004076 */
Chris Mason234b63a2007-03-13 10:46:10 -04004077int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004078{
4079 int slot;
4080 int level = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004081 struct extent_buffer *c;
4082 struct extent_buffer *next = NULL;
Chris Mason925baed2008-06-25 16:01:30 -04004083 struct btrfs_key key;
4084 u32 nritems;
4085 int ret;
4086
4087 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004088 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004089 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004090
4091 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4092
Chris Mason925baed2008-06-25 16:01:30 -04004093 btrfs_release_path(root, path);
Chris Masona2135012008-06-25 16:01:30 -04004094 path->keep_locks = 1;
Chris Mason925baed2008-06-25 16:01:30 -04004095 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4096 path->keep_locks = 0;
4097
4098 if (ret < 0)
4099 return ret;
4100
Chris Masonb4ce94d2009-02-04 09:25:08 -05004101 btrfs_set_path_blocking(path);
Chris Masona2135012008-06-25 16:01:30 -04004102 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004103 /*
4104 * by releasing the path above we dropped all our locks. A balance
4105 * could have added more items next to the key that used to be
4106 * at the very end of the block. So, check again here and
4107 * advance the path if there are now more items available.
4108 */
Chris Masona2135012008-06-25 16:01:30 -04004109 if (nritems > 0 && path->slots[0] < nritems - 1) {
Chris Mason168fd7d2008-06-25 16:01:30 -04004110 path->slots[0]++;
Chris Mason925baed2008-06-25 16:01:30 -04004111 goto done;
4112 }
Chris Masond97e63b2007-02-20 16:40:44 -05004113
Chris Masond3977122009-01-05 21:25:51 -05004114 while (level < BTRFS_MAX_LEVEL) {
Chris Masond97e63b2007-02-20 16:40:44 -05004115 if (!path->nodes[level])
Chris Mason0f70abe2007-02-28 16:46:22 -05004116 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004117
Chris Masond97e63b2007-02-20 16:40:44 -05004118 slot = path->slots[level] + 1;
4119 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004120 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004121 level++;
Chris Masond3977122009-01-05 21:25:51 -05004122 if (level == BTRFS_MAX_LEVEL)
Chris Mason7bb86312007-12-11 09:25:06 -05004123 return 1;
Chris Masond97e63b2007-02-20 16:40:44 -05004124 continue;
4125 }
Chris Mason5f39d392007-10-15 16:14:19 -04004126
Chris Mason925baed2008-06-25 16:01:30 -04004127 if (next) {
4128 btrfs_tree_unlock(next);
Chris Mason5f39d392007-10-15 16:14:19 -04004129 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004130 }
Chris Mason5f39d392007-10-15 16:14:19 -04004131
Chris Masonb4ce94d2009-02-04 09:25:08 -05004132 /* the path was set to blocking above */
Chris Mason0bd40a72008-07-17 12:54:43 -04004133 if (level == 1 && (path->locks[1] || path->skip_locking) &&
4134 path->reada)
Chris Mason01f46652007-12-21 16:24:26 -05004135 reada_for_search(root, path, level, slot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04004136
Chris Masonca7a79a2008-05-12 12:59:19 -04004137 next = read_node_slot(root, c, slot);
Chris Mason5cd57b22008-06-25 16:01:30 -04004138 if (!path->skip_locking) {
Chris Masonb9447ef82009-03-09 11:45:38 -04004139 btrfs_assert_tree_locked(c);
Chris Mason5cd57b22008-06-25 16:01:30 -04004140 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004141 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004142 }
Chris Masond97e63b2007-02-20 16:40:44 -05004143 break;
4144 }
4145 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004146 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004147 level--;
4148 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004149 if (path->locks[level])
4150 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04004151 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004152 path->nodes[level] = next;
4153 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004154 if (!path->skip_locking)
4155 path->locks[level] = 1;
Chris Masond97e63b2007-02-20 16:40:44 -05004156 if (!level)
4157 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004158
4159 btrfs_set_path_blocking(path);
Chris Mason925baed2008-06-25 16:01:30 -04004160 if (level == 1 && path->locks[1] && path->reada)
4161 reada_for_search(root, path, level, slot, 0);
Chris Masonca7a79a2008-05-12 12:59:19 -04004162 next = read_node_slot(root, next, 0);
Chris Mason5cd57b22008-06-25 16:01:30 -04004163 if (!path->skip_locking) {
Chris Masonb9447ef82009-03-09 11:45:38 -04004164 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5cd57b22008-06-25 16:01:30 -04004165 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004166 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004167 }
Chris Masond97e63b2007-02-20 16:40:44 -05004168 }
Chris Mason925baed2008-06-25 16:01:30 -04004169done:
4170 unlock_up(path, 0, 1);
Chris Masond97e63b2007-02-20 16:40:44 -05004171 return 0;
4172}
Chris Mason0b86a832008-03-24 15:01:56 -04004173
Chris Mason3f157a22008-06-25 16:01:31 -04004174/*
4175 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4176 * searching until it gets past min_objectid or finds an item of 'type'
4177 *
4178 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4179 */
Chris Mason0b86a832008-03-24 15:01:56 -04004180int btrfs_previous_item(struct btrfs_root *root,
4181 struct btrfs_path *path, u64 min_objectid,
4182 int type)
4183{
4184 struct btrfs_key found_key;
4185 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004186 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004187 int ret;
4188
Chris Masond3977122009-01-05 21:25:51 -05004189 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004190 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004191 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004192 ret = btrfs_prev_leaf(root, path);
4193 if (ret != 0)
4194 return ret;
4195 } else {
4196 path->slots[0]--;
4197 }
4198 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004199 nritems = btrfs_header_nritems(leaf);
4200 if (nritems == 0)
4201 return 1;
4202 if (path->slots[0] == nritems)
4203 path->slots[0]--;
4204
Chris Mason0b86a832008-03-24 15:01:56 -04004205 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4206 if (found_key.type == type)
4207 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004208 if (found_key.objectid < min_objectid)
4209 break;
4210 if (found_key.objectid == min_objectid &&
4211 found_key.type < type)
4212 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004213 }
4214 return 1;
4215}