Skip to content

Commit 2f0342e

Browse files
dlunevcodyprime
authored andcommitted
block: remove extra condition in bdrv_can_write_zeroes_with_unmap
All .bdrv_co_write_zeroes callbacks nowadays work perfectly even with backing store attached. If future new callbacks would be unable to do that - they have a chance to block this in bdrv_get_info(). Signed-off-by: Denis V. Lunev <[email protected]> Reviewed-by: Eric Blake <[email protected]> Reviewed-by: John Snow <[email protected]> Reviewed-by: Fam Zheng <[email protected]> Message-id: [email protected] CC: Stefan Hajnoczi <[email protected]> CC: Kevin Wolf <[email protected]> CC: Max Reitz <[email protected]> CC: Jeff Cody <[email protected]> Signed-off-by: Jeff Cody <[email protected]>
1 parent c0b363a commit 2f0342e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

block.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2837,7 +2837,7 @@ bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
28372837
{
28382838
BlockDriverInfo bdi;
28392839

2840-
if (bs->backing || !(bs->open_flags & BDRV_O_UNMAP)) {
2840+
if (!(bs->open_flags & BDRV_O_UNMAP)) {
28412841
return false;
28422842
}
28432843

0 commit comments

Comments
 (0)