Commit 2390a6da authored by Omar Sandoval's avatar Omar Sandoval Committed by David Sterba

btrfs: remove unused btrfs_dio_private::private

We haven't used this since commit 9be3395b ("Btrfs: use a btrfs
bioset instead of abusing bio internals").
Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarJosef Bacik <josef@toxicpanda.com>
Reviewed-by: default avatarJohannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: default avatarOmar Sandoval <osandov@fb.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent ce06d3ec
...@@ -301,7 +301,6 @@ struct btrfs_dio_private { ...@@ -301,7 +301,6 @@ struct btrfs_dio_private {
u64 logical_offset; u64 logical_offset;
u64 disk_bytenr; u64 disk_bytenr;
u64 bytes; u64 bytes;
void *private;
/* number of bios pending for this dio */ /* number of bios pending for this dio */
atomic_t pending_bios; atomic_t pending_bios;
......
...@@ -7923,7 +7923,6 @@ static struct btrfs_dio_private *btrfs_create_dio_private(struct bio *dio_bio, ...@@ -7923,7 +7923,6 @@ static struct btrfs_dio_private *btrfs_create_dio_private(struct bio *dio_bio,
bio->bi_private = dip; bio->bi_private = dip;
btrfs_io_bio(bio)->logical = file_offset; btrfs_io_bio(bio)->logical = file_offset;
dip->private = dio_bio->bi_private;
dip->inode = inode; dip->inode = inode;
dip->logical_offset = file_offset; dip->logical_offset = file_offset;
dip->bytes = dio_bio->bi_iter.bi_size; dip->bytes = dio_bio->bi_iter.bi_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment