diff options
author | Tsutomu Itoh <t-itoh@jp.fujitsu.com> | 2015-08-19 01:55:00 -0400 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2015-08-31 14:46:41 -0400 |
commit | 527afb4493c2892ce89fb74648e72a30b68ba120 (patch) | |
tree | 6e65e787a12ab45f33a4f6576046c7d33b902998 /fs/btrfs/tree-defrag.c | |
parent | c6dd6ea55758cf403bdc07a51a06c2a1d474f906 (diff) |
Btrfs: cleanup: remove unnecessary check before btrfs_free_path is called
We need not check path before btrfs_free_path() is called because
path is checked in btrfs_free_path().
Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Reviewed-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/tree-defrag.c')
-rw-r--r-- | fs/btrfs/tree-defrag.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/tree-defrag.c b/fs/btrfs/tree-defrag.c index a4b9c8b2d35a..f31db4325339 100644 --- a/fs/btrfs/tree-defrag.c +++ b/fs/btrfs/tree-defrag.c | |||
@@ -115,8 +115,7 @@ int btrfs_defrag_leaves(struct btrfs_trans_handle *trans, | |||
115 | ret = -EAGAIN; | 115 | ret = -EAGAIN; |
116 | } | 116 | } |
117 | out: | 117 | out: |
118 | if (path) | 118 | btrfs_free_path(path); |
119 | btrfs_free_path(path); | ||
120 | if (ret == -EAGAIN) { | 119 | if (ret == -EAGAIN) { |
121 | if (root->defrag_max.objectid > root->defrag_progress.objectid) | 120 | if (root->defrag_max.objectid > root->defrag_progress.objectid) |
122 | goto done; | 121 | goto done; |