diff options
author | Qu Wenruo <wqu@suse.com> | 2019-10-24 09:38:29 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-21 10:35:19 +0100 |
commit | 80f89424f42c14765e57340985060dc3b380d5eb (patch) | |
tree | 3d95f3146ce315fa6b2295fc339c3aab12a51ca1 /fs | |
parent | 724f21da3e6aeb057cb5fbf50bb73402f8f0fcb1 (diff) | |
download | linux-stable-80f89424f42c14765e57340985060dc3b380d5eb.tar.gz linux-stable-80f89424f42c14765e57340985060dc3b380d5eb.tar.bz2 linux-stable-80f89424f42c14765e57340985060dc3b380d5eb.zip |
btrfs: Remove btrfs_bio::flags member
commit 34b127aecd4fe8e6a3903e10f204a7b7ffddca22 upstream.
The last user of btrfs_bio::flags was removed in commit 326e1dbb5736
("block: remove management of bi_remaining when restoring original
bi_end_io"), remove it.
(Tagged for stable as the structure is heavily used and space savings
are desirable.)
CC: stable@vger.kernel.org # 4.4+
Signed-off-by: Qu Wenruo <wqu@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/volumes.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index 7feac2d9da56..d24f3ceb0691 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -312,7 +312,6 @@ struct btrfs_bio { u64 map_type; /* get from map_lookup->type */ bio_end_io_t *end_io; struct bio *orig_bio; - unsigned long flags; void *private; atomic_t error; int max_errors; |