mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
btrfs use bio_list_merge_init
Use bio_list_merge_init instead of open coding bio_list_merge and bio_list_init. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: David Sterba <dsterba@suse.com> Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Reviewed-by: Damien Le Moal <dlemoal@kernel.org> Link: https://lore.kernel.org/r/20240328084147.2954434-5-hch@lst.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
50bc215030
commit
fa1af65bf8
@ -331,12 +331,11 @@ static void steal_rbio(struct btrfs_raid_bio *src, struct btrfs_raid_bio *dest)
|
||||
static void merge_rbio(struct btrfs_raid_bio *dest,
|
||||
struct btrfs_raid_bio *victim)
|
||||
{
|
||||
bio_list_merge(&dest->bio_list, &victim->bio_list);
|
||||
bio_list_merge_init(&dest->bio_list, &victim->bio_list);
|
||||
dest->bio_list_bytes += victim->bio_list_bytes;
|
||||
/* Also inherit the bitmaps from @victim. */
|
||||
bitmap_or(&dest->dbitmap, &victim->dbitmap, &dest->dbitmap,
|
||||
dest->stripe_nsectors);
|
||||
bio_list_init(&victim->bio_list);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user