Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 64728bbb authored by Josef Bacik's avatar Josef Bacik Committed by Chris Mason
Browse files

Btrfs: put the right bio if we have an error



In btrfs_submit_direct_hook if the first btrfs_map_block fails we need to put
the orig_bio, not bio.

Signed-off-by: default avatarJosef Bacik <josef@redhat.com>
Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent a4f0162f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6041,7 +6041,7 @@ static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
	ret = btrfs_map_block(map_tree, READ, start_sector << 9,
			      &map_length, NULL, 0);
	if (ret) {
		bio_put(bio);
		bio_put(orig_bio);
		return -EIO;
	}