Skip to content

Commit

Permalink
Btrfs: Remove unused variable in fixup_tree_root_location
Browse files Browse the repository at this point in the history
Remove a unused variable 'path' in fixup_tree_root_location.

Signed-off-by: Balaji Rao <balajirrao@gmail.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Balaji Rao authored and Chris Mason committed Sep 25, 2008
1 parent 8e8a1e3 commit 4546726
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions fs/btrfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1805,17 +1805,13 @@ static int fixup_tree_root_location(struct btrfs_root *root,
struct btrfs_root **sub_root,
struct dentry *dentry)
{
struct btrfs_path *path;
struct btrfs_root_item *ri;

if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
return 0;
if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
return 0;

path = btrfs_alloc_path();
BUG_ON(!path);

*sub_root = btrfs_read_fs_root(root->fs_info, location,
dentry->d_name.name,
dentry->d_name.len);
Expand All @@ -1827,7 +1823,6 @@ static int fixup_tree_root_location(struct btrfs_root *root,
btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
location->offset = 0;

btrfs_free_path(path);
return 0;
}

Expand Down

0 comments on commit 4546726

Please sign in to comment.