aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorFilipe Manana <fdmanana@gmail.com>2014-03-22 13:16:30 -0400
committerChris Mason <clm@fb.com>2014-06-09 20:20:39 -0400
commita10c40766c30a002affc0c47dd515d048c3959b4 (patch)
tree638b25ee1c03a7b8cfe90aeb1da7d2777caf5887 /fs
parentc992ec94f24c3e7135d6c23860615f269f0b1d87 (diff)
Btrfs: send, remove dead code from __get_cur_name_and_parent
Signed-off-by: Filipe David Borba Manana <fdmanana@gmail.com> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/send.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c
index c2bfd60ba245..fb6aeed9c223 100644
--- a/fs/btrfs/send.c
+++ b/fs/btrfs/send.c
@@ -2030,7 +2030,6 @@ static int __get_cur_name_and_parent(struct send_ctx *sctx,
2030{ 2030{
2031 int ret; 2031 int ret;
2032 int nce_ret; 2032 int nce_ret;
2033 struct btrfs_path *path = NULL;
2034 struct name_cache_entry *nce = NULL; 2033 struct name_cache_entry *nce = NULL;
2035 2034
2036 /* 2035 /*
@@ -2056,10 +2055,6 @@ static int __get_cur_name_and_parent(struct send_ctx *sctx,
2056 } 2055 }
2057 } 2056 }
2058 2057
2059 path = alloc_path_for_send();
2060 if (!path)
2061 return -ENOMEM;
2062
2063 /* 2058 /*
2064 * If the inode is not existent yet, add the orphan name and return 1. 2059 * If the inode is not existent yet, add the orphan name and return 1.
2065 * This should only happen for the parent dir that we determine in 2060 * This should only happen for the parent dir that we determine in
@@ -2135,7 +2130,6 @@ out_cache:
2135 name_cache_clean_unused(sctx); 2130 name_cache_clean_unused(sctx);
2136 2131
2137out: 2132out:
2138 btrfs_free_path(path);
2139 return ret; 2133 return ret;
2140} 2134}
2141 2135