Commit b6160bae authored by David Sterba's avatar David Sterba
Browse files

btrfs: drop one time used local variable in end_bbio_meta_write()

parent 075adeeb
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1659,11 +1659,10 @@ static void end_bbio_meta_write(struct btrfs_bio *bbio)
{
	struct extent_buffer *eb = bbio->private;
	struct btrfs_fs_info *fs_info = eb->fs_info;
	bool uptodate = !bbio->bio.bi_status;
	struct folio_iter fi;
	u32 bio_offset = 0;

	if (!uptodate)
	if (bbio->bio.bi_status != BLK_STS_OK)
		set_btree_ioerr(eb);

	bio_for_each_folio_all(fi, &bbio->bio) {