aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/root-tree.c
diff options
context:
space:
mode:
authorAneesh <aneesh.kumar@linux.vnet.ibm.com>2007-06-13 16:18:26 -0400
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-06-13 16:18:26 -0400
commitf1ace244c8c1e16eaa5c8b3b5339849651e31ede (patch)
treef1a84930a17a6803072f390bab28eb43f6e95f5b /fs/btrfs/root-tree.c
parentb79ab950f57c3260ee609ba41779019d21b8eb88 (diff)
btrfs: Code cleanup
Attaching below is some of the code cleanups that i came across while reading the code. a) alloc_path already calls init_path. b) Mention that btrfs_inode is the in memory copy.Ext4 have ext4_inode_info as the in memory copy ext4_inode as the disk copy Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/root-tree.c')
-rw-r--r--fs/btrfs/root-tree.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/btrfs/root-tree.c b/fs/btrfs/root-tree.c
index 7a2d63c1ee80..8e1b9046d5ec 100644
--- a/fs/btrfs/root-tree.c
+++ b/fs/btrfs/root-tree.c
@@ -36,7 +36,6 @@ int btrfs_find_last_root(struct btrfs_root *root, u64 objectid,
36 36
37 path = btrfs_alloc_path(); 37 path = btrfs_alloc_path();
38 BUG_ON(!path); 38 BUG_ON(!path);
39 btrfs_init_path(path);
40 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); 39 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
41 if (ret < 0) 40 if (ret < 0)
42 goto out; 41 goto out;
@@ -70,7 +69,6 @@ int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
70 69
71 path = btrfs_alloc_path(); 70 path = btrfs_alloc_path();
72 BUG_ON(!path); 71 BUG_ON(!path);
73 btrfs_init_path(path);
74 ret = btrfs_search_slot(trans, root, key, path, 0, 1); 72 ret = btrfs_search_slot(trans, root, key, path, 0, 1);
75 if (ret < 0) 73 if (ret < 0)
76 goto out; 74 goto out;
@@ -106,7 +104,6 @@ int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
106 104
107 path = btrfs_alloc_path(); 105 path = btrfs_alloc_path();
108 BUG_ON(!path); 106 BUG_ON(!path);
109 btrfs_init_path(path);
110 ret = btrfs_search_slot(trans, root, key, path, -1, 1); 107 ret = btrfs_search_slot(trans, root, key, path, -1, 1);
111 if (ret < 0) 108 if (ret < 0)
112 goto out; 109 goto out;