From 873fba7101479686d24c4e70c582732b7f02480d Mon Sep 17 00:00:00 2001 From: Nikolay Borisov Date: Fri, 4 May 2018 10:47:25 +0300 Subject: btrfs-progs: Remove devid parameter from btrfs_rmap_block This parameter was introduced with the original implementation of the function but has never really been used, so just remove it. Signed-off-by: Nikolay Borisov Reviewed-by: Qu Wenruo Signed-off-by: David Sterba --- volumes.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'volumes.c') diff --git a/volumes.c b/volumes.c index c6e34321..ad3016dc 100644 --- a/volumes.c +++ b/volumes.c @@ -1364,9 +1364,8 @@ int btrfs_next_bg(struct btrfs_fs_info *fs_info, u64 *logical, return -ENOENT; } -int btrfs_rmap_block(struct btrfs_fs_info *fs_info, - u64 chunk_start, u64 physical, u64 devid, - u64 **logical, int *naddrs, int *stripe_len) +int btrfs_rmap_block(struct btrfs_fs_info *fs_info, u64 chunk_start, + u64 physical, u64 **logical, int *naddrs, int *stripe_len) { struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree; struct cache_extent *ce; @@ -1397,8 +1396,6 @@ int btrfs_rmap_block(struct btrfs_fs_info *fs_info, buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS); for (i = 0; i < map->num_stripes; i++) { - if (devid && map->stripes[i].dev->devid != devid) - continue; if (map->stripes[i].physical > physical || map->stripes[i].physical + length <= physical) continue; -- cgit v1.2.3