forked from Minki/linux
btrfs: free path at an earlier point in btrfs_get_extent
trace_btrfs_get_extent() has nothing to do with path, place btrfs_free_path ahead so that we can unlock path on error. Signed-off-by: Liu Bo <bo.liu@linux.alibaba.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
9688e9a99e
commit
c64142807f
@ -6979,10 +6979,10 @@ insert:
|
|||||||
err = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
|
err = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len);
|
||||||
write_unlock(&em_tree->lock);
|
write_unlock(&em_tree->lock);
|
||||||
out:
|
out:
|
||||||
|
btrfs_free_path(path);
|
||||||
|
|
||||||
trace_btrfs_get_extent(root, inode, em);
|
trace_btrfs_get_extent(root, inode, em);
|
||||||
|
|
||||||
btrfs_free_path(path);
|
|
||||||
if (err) {
|
if (err) {
|
||||||
free_extent_map(em);
|
free_extent_map(em);
|
||||||
return ERR_PTR(err);
|
return ERR_PTR(err);
|
||||||
|
Loading…
Reference in New Issue
Block a user