aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLu Fengqi <lufq.fnst@cn.fujitsu.com>2018-07-31 23:32:31 -0400
committerDavid Sterba <dsterba@suse.com>2018-08-06 07:13:01 -0400
commit5b7d687ad5913a56b6a8788435d7a53990b4176d (patch)
tree15f98791854b5fc6bdda1ef5b980734083f008a5
parent401b3b19d592391b718b7a17295ae34eace973dd (diff)
btrfs: Remove redundant btrfs_release_path from btrfs_unlink_subvol
Although it is safe to call this on already released paths with no locks held or extent buffers, removing the redundant btrfs_release_path is reasonable. Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r--fs/btrfs/inode.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index b8c131b82978..7e56a203c109 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -4137,7 +4137,6 @@ static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
4137 4137
4138 leaf = path->nodes[0]; 4138 leaf = path->nodes[0];
4139 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); 4139 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4140 btrfs_release_path(path);
4141 index = key.offset; 4140 index = key.offset;
4142 } 4141 }
4143 btrfs_release_path(path); 4142 btrfs_release_path(path);