diff options
author | David Sterba <dsterba@suse.com> | 2018-11-22 19:16:46 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-12-17 16:51:40 +0300 |
commit | 31fecccbd7b2174487a6b7361153b60a4eda6108 (patch) | |
tree | 4694a109291d4c7f4a0b2c99974e56edcc8c5d8d /fs/btrfs/volumes.h | |
parent | 600b6cf468b038798313da42d2438c10bcb10261 (diff) | |
download | linux-31fecccbd7b2174487a6b7361153b60a4eda6108.tar.xz |
btrfs: remove redundant csum buffer in btrfs_io_bio
The io_bio tracks checksums and has an inline buffer or an allocated
one. And there's a third member that points to the right one, but we
don't need to use an extra pointer for that. Let btrfs_io_bio::csum
point to the right buffer and check that the inline buffer is not
accidentally freed.
This shrinks struct btrfs_io_bio by 8 bytes.
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/volumes.h')
-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 8b092bb1e2ee..702c78cf2b4d 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -274,7 +274,6 @@ struct btrfs_io_bio { u64 logical; u8 *csum; u8 csum_inline[BTRFS_BIO_INLINE_CSUM_SIZE]; - u8 *csum_allocated; btrfs_io_bio_end_io_t *end_io; struct bvec_iter iter; /* |