diff options
| author | 2020-01-24 09:32:23 -0500 | |
|---|---|---|
| committer | 2020-03-23 17:01:26 +0100 | |
| commit | 83db2aadb3bd3a117918434448e8c0e90229b73b (patch) | |
| tree | 3c391a82d2668dfcb0233bfbcf0d10b69d6435b0 /fs/btrfs/disk-io.c | |
| parent | btrfs: make relocation use btrfs_read_tree_root() (diff) | |
| download | linux-rng-83db2aadb3bd3a117918434448e8c0e90229b73b.tar.xz linux-rng-83db2aadb3bd3a117918434448e8c0e90229b73b.zip | |
btrfs: remove btrfs_read_fs_root, not used anymore
All helpers should either be using btrfs_get_fs_root() or
btrfs_read_tree_root().
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
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/disk-io.c')
| -rw-r--r-- | fs/btrfs/disk-io.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 9807167b6208..2e92a6bc64c0 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -1437,17 +1437,6 @@ alloc_fail: goto out; } -struct btrfs_root *btrfs_read_fs_root(struct btrfs_root *tree_root, - struct btrfs_key *location) -{ - struct btrfs_root *root; - - root = btrfs_read_tree_root(tree_root, location); - if (IS_ERR(root)) - return root; - return root; -} - int btrfs_init_fs_root(struct btrfs_root *root) { int ret; @@ -1568,7 +1557,7 @@ again: return root; } - root = btrfs_read_fs_root(fs_info->tree_root, location); + root = btrfs_read_tree_root(fs_info->tree_root, location); if (IS_ERR(root)) return root; |
