diff options
author | Josef Bacik <josef@toxicpanda.com> | 2020-01-24 09:32:56 -0500 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2020-03-23 17:01:32 +0100 |
commit | bc44d7c4b2b179c4b74fba208b9908e2ecbc1b4d (patch) | |
tree | 183d1adc1dcae85af965e25476a5a6c8cbb0137b /fs/btrfs/file.c | |
parent | 81f096edf0472864879e1e5a7f0fdf87ea90fe75 (diff) | |
download | lwn-bc44d7c4b2b179c4b74fba208b9908e2ecbc1b4d.tar.gz lwn-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/file.c')
-rw-r--r-- | fs/btrfs/file.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index 27237bbaad65..ba19b4debc61 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c @@ -292,10 +292,6 @@ static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info, ret = PTR_ERR(inode_root); goto cleanup; } - if (!btrfs_grab_fs_root(inode_root)) { - ret = -ENOENT; - goto cleanup; - } key.objectid = defrag->ino; key.type = BTRFS_INODE_ITEM_KEY; |