diff options
author | David Sterba <dsterba@suse.com> | 2017-04-13 19:11:04 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-06-19 18:25:59 +0200 |
commit | b297c9f68f4ac61c259dbe529ceb74910f25e281 (patch) | |
tree | 32b095a838431265471a1098c4c442ab254bd7f9 /fs/btrfs | |
parent | btrfs: remove unused member err from reada_extent (diff) | |
download | linux-b297c9f68f4ac61c259dbe529ceb74910f25e281.tar.xz linux-b297c9f68f4ac61c259dbe529ceb74910f25e281.zip |
btrfs: remove unused member list from async_submit_bio
The list used to track checksums in the early version (2.6.29), but I
was able not pinpoint the commit that stopped using it. Everything
apparently works without it for a long time.
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/disk-io.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index d8ad30fdeee6..f896fa1dc070 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -121,7 +121,6 @@ struct async_submit_bio { void *private_data; struct btrfs_fs_info *fs_info; struct bio *bio; - struct list_head list; extent_submit_bio_hook_t *submit_bio_start; extent_submit_bio_hook_t *submit_bio_done; int mirror_num; |