diff options
author | David Sterba <dsterba@suse.com> | 2019-08-30 15:40:53 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-11-18 23:43:44 +0100 |
commit | a019e9e197eaa68ffe2efeba00d685581b1a5416 (patch) | |
tree | c1d8501226c2f4663b90328310cdb802c7857a57 /fs/btrfs/relocation.c | |
parent | 1a41802701ec78ca3272073e60463c13b17d121f (diff) | |
download | linux-a019e9e197eaa68ffe2efeba00d685581b1a5416.tar.gz linux-a019e9e197eaa68ffe2efeba00d685581b1a5416.tar.bz2 linux-a019e9e197eaa68ffe2efeba00d685581b1a5416.zip |
btrfs: remove extent_map::bdev
We can now remove the bdev from extent_map. Previous patches made sure
that bio_set_dev is correctly in all places and that we don't need to
grab it from latest_bdev or pass it around inside the extent map.
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/relocation.c')
-rw-r--r-- | fs/btrfs/relocation.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c index 2e16701c6099..d897a8e5e430 100644 --- a/fs/btrfs/relocation.c +++ b/fs/btrfs/relocation.c @@ -3194,7 +3194,6 @@ static noinline_for_stack int setup_extent_mapping(struct inode *inode, u64 start, u64 end, u64 block_start) { - struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; struct extent_map *em; int ret = 0; @@ -3207,7 +3206,6 @@ int setup_extent_mapping(struct inode *inode, u64 start, u64 end, em->len = end + 1 - start; em->block_len = em->len; em->block_start = block_start; - em->bdev = fs_info->fs_devices->latest_bdev; set_bit(EXTENT_FLAG_PINNED, &em->flags); lock_extent(&BTRFS_I(inode)->io_tree, start, end); |