diff options
author | Josef Bacik <josef@toxicpanda.com> | 2020-01-24 15:32:56 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2020-03-23 17:01:32 +0100 |
commit | bc44d7c4b2b179c4b74fba208b9908e2ecbc1b4d (patch) | |
tree | 183d1adc1dcae85af965e25476a5a6c8cbb0137b /fs/btrfs/super.c | |
parent | btrfs: use btrfs_put_fs_root to free roots always (diff) | |
download | linux-bc44d7c4b2b179c4b74fba208b9908e2ecbc1b4d.tar.xz linux-bc44d7c4b2b179c4b74fba208b9908e2ecbc1b4d.zip |
btrfs: push btrfs_grab_fs_root into btrfs_get_fs_root
Now that all callers of btrfs_get_fs_root are subsequently calling
btrfs_grab_fs_root and handling dropping the ref when they are done
appropriately, go ahead and push btrfs_grab_fs_root up into
btrfs_get_fs_root.
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index a70c89b3a223..f1ad1189c930 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -1102,11 +1102,6 @@ static char *get_subvol_name_from_objectid(struct btrfs_fs_info *fs_info, fs_root = NULL; goto err; } - if (!btrfs_grab_fs_root(fs_root)) { - ret = -ENOENT; - fs_root = NULL; - goto err; - } /* * Walk up the filesystem tree by inode refs until we hit the |