diff options
author | Nikolay Borisov <nborisov@suse.com> | 2019-12-10 19:57:51 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2020-01-23 17:24:34 +0100 |
commit | 96a14336bd8fc13cc3db036a5745acdf3bc185f4 (patch) | |
tree | f262d8e6ec364fac934c282fdbbcdb8a130d1285 /fs/btrfs/volumes.h | |
parent | 68c467cbb2f389b6c933e235bce0d1756fc8cc34 (diff) | |
download | linux-96a14336bd8fc13cc3db036a5745acdf3bc185f4.tar.bz2 |
btrfs: Move and unexport btrfs_rmap_block
It's used only during initial block group reading to map physical
address of super block to a list of logical ones. Make it private to
block-group.c, add proper kernel doc and ensure it's exported only for
tests.
Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/volumes.h')
-rw-r--r-- | fs/btrfs/volumes.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index 81f21e42b887..9c7d4fe5c39a 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -415,8 +415,6 @@ int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op, struct btrfs_bio **bbio_ret); int btrfs_get_io_geometry(struct btrfs_fs_info *fs_info, enum btrfs_map_op op, u64 logical, u64 len, struct btrfs_io_geometry *io_geom); -int btrfs_rmap_block(struct btrfs_fs_info *fs_info, u64 chunk_start, - u64 physical, u64 **logical, int *naddrs, int *stripe_len); int btrfs_read_sys_array(struct btrfs_fs_info *fs_info); int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info); int btrfs_alloc_chunk(struct btrfs_trans_handle *trans, u64 type); |