diff options
author | Christoph Hellwig <hch@lst.de> | 2023-01-21 07:50:08 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2023-02-15 19:38:51 +0100 |
commit | 7ab0fdfc810209fc493f2f67bdd41d5aafbc3a05 (patch) | |
tree | 4d96c43f929fded88076da7b61c6c0a11ce6af5a /fs/btrfs/bio.h | |
parent | btrfs: handle checksum validation and repair at the storage layer (diff) | |
download | linux-7ab0fdfc810209fc493f2f67bdd41d5aafbc3a05.tar.xz linux-7ab0fdfc810209fc493f2f67bdd41d5aafbc3a05.zip |
btrfs: open code btrfs_bio_free_csum
btrfs_bio_free_csum has only one caller left, and that caller is always
for an data inode and doesn't need zeroing of the csum pointer as that
pointer will never be touched again. Just open code the conditional
kfree there.
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to '')
-rw-r--r-- | fs/btrfs/bio.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/fs/btrfs/bio.h b/fs/btrfs/bio.h index 8d69d0b226d9..996275eb1062 100644 --- a/fs/btrfs/bio.h +++ b/fs/btrfs/bio.h @@ -94,16 +94,6 @@ static inline void btrfs_bio_end_io(struct btrfs_bio *bbio, blk_status_t status) bbio->end_io(bbio); } -static inline void btrfs_bio_free_csum(struct btrfs_bio *bbio) -{ - if (bbio->is_metadata) - return; - if (bbio->csum != bbio->csum_inline) { - kfree(bbio->csum); - bbio->csum = NULL; - } -} - /* * Iterate through a btrfs_bio (@bbio) on a per-sector basis. * |