aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKelley Nielsen <kelleynnn@gmail.com>2013-11-04 22:35:58 -0500
committerChris Mason <clm@fb.com>2014-01-28 16:19:36 -0500
commit75ac2dd907013b44edbdec16f8969d14811149c9 (patch)
tree63c0ad18dbf6ff14cdfa90e6f396b8c393eb6207
parente33d5c3d6d61518c7f115af6d11d3dffa230d31f (diff)
btrfs: expand btrfs_find_item() to include find_root_ref functionality
This patch is the second step in bootstrapping the btrfs_find_item interface. The btrfs_find_root_ref() is similar to the former __inode_info(); it accepts four of its parameters, and duplicates the first half of its functionality. Replace the one former call to btrfs_find_root_ref() with a call to btrfs_find_item(), along with the defined key type that was used internally by btrfs_find_root ref, and a null found key. In btrfs_find_item(), add a test for the null key at the place where the functionality of btrfs_find_root_ref() ends; btrfs_find_item() then returns if the test passes. Finally, remove btrfs_find_root_ref(). Signed-off-by: Kelley Nielsen <kelleynnn@gmail.com> Suggested-by: Zach Brown <zab@redhat.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Josef Bacik <jbacik@fusionio.com> Signed-off-by: Chris Mason <clm@fb.com>
-rw-r--r--fs/btrfs/ctree.c10
-rw-r--r--fs/btrfs/inode.c6
-rw-r--r--fs/btrfs/root-tree.c15
3 files changed, 11 insertions, 20 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
index 141c15ca294e..64b87894460b 100644
--- a/fs/btrfs/ctree.c
+++ b/fs/btrfs/ctree.c
@@ -2464,7 +2464,13 @@ static int key_search(struct extent_buffer *b, struct btrfs_key *key,
2464/* Proposed generic search function, meant to take the place of the 2464/* Proposed generic search function, meant to take the place of the
2465* various small search helper functions throughout the code and standardize 2465* various small search helper functions throughout the code and standardize
2466* the search interface. Right now, it only replaces the former __inode_info 2466* the search interface. Right now, it only replaces the former __inode_info
2467* in backref.c. 2467* in backref.c, and the former btrfs_find_root_ref in root-tree.c.
2468*
2469* If a null key is passed, it returns immediately after running
2470* btrfs_search_slot, leaving the path filled as it is and passing its
2471* return value upward. If a real key is passed, it will set the caller's
2472* path to point to the first item in the tree after its specified
2473* objectid, type, and offset for which objectid and type match the input.
2468*/ 2474*/
2469int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path, 2475int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
2470 u64 iobjectid, u64 ioff, u8 key_type, 2476 u64 iobjectid, u64 ioff, u8 key_type,
@@ -2479,7 +2485,7 @@ int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
2479 key.offset = ioff; 2485 key.offset = ioff;
2480 2486
2481 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0); 2487 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
2482 if (ret < 0) 2488 if ((ret < 0) || (found_key == NULL))
2483 return ret; 2489 return ret;
2484 2490
2485 eb = path->nodes[0]; 2491 eb = path->nodes[0];
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 41079c6ed968..5a5de36d39fc 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -4673,9 +4673,9 @@ static int fixup_tree_root_location(struct btrfs_root *root,
4673 } 4673 }
4674 4674
4675 err = -ENOENT; 4675 err = -ENOENT;
4676 ret = btrfs_find_root_ref(root->fs_info->tree_root, path, 4676 ret = btrfs_find_item(root->fs_info->tree_root, path,
4677 BTRFS_I(dir)->root->root_key.objectid, 4677 BTRFS_I(dir)->root->root_key.objectid,
4678 location->objectid); 4678 location->objectid, BTRFS_ROOT_REF_KEY, NULL);
4679 if (ret) { 4679 if (ret) {
4680 if (ret < 0) 4680 if (ret < 0)
4681 err = ret; 4681 err = ret;
diff --git a/fs/btrfs/root-tree.c b/fs/btrfs/root-tree.c
index ec71ea44d2b4..fcc10ebb71a0 100644
--- a/fs/btrfs/root-tree.c
+++ b/fs/btrfs/root-tree.c
@@ -400,21 +400,6 @@ out:
400 return err; 400 return err;
401} 401}
402 402
403int btrfs_find_root_ref(struct btrfs_root *tree_root,
404 struct btrfs_path *path,
405 u64 root_id, u64 ref_id)
406{
407 struct btrfs_key key;
408 int ret;
409
410 key.objectid = root_id;
411 key.type = BTRFS_ROOT_REF_KEY;
412 key.offset = ref_id;
413
414 ret = btrfs_search_slot(NULL, tree_root, &key, path, 0, 0);
415 return ret;
416}
417
418/* 403/*
419 * add a btrfs_root_ref item. type is either BTRFS_ROOT_REF_KEY 404 * add a btrfs_root_ref item. type is either BTRFS_ROOT_REF_KEY
420 * or BTRFS_ROOT_BACKREF_KEY. 405 * or BTRFS_ROOT_BACKREF_KEY.