qcow2_check: Mark image consistent

If no corruptions remain after an image repair (and no errors have been
encountered), clear the corrupt flag in qcow2_check.

Signed-off-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
Max Reitz 2013-08-30 14:34:30 +02:00 committed by Kevin Wolf
parent afa50193cd
commit 24530f3e06

View File

@ -312,7 +312,11 @@ static int qcow2_check(BlockDriverState *bs, BdrvCheckResult *result,
} }
if (fix && result->check_errors == 0 && result->corruptions == 0) { if (fix && result->check_errors == 0 && result->corruptions == 0) {
return qcow2_mark_clean(bs); ret = qcow2_mark_clean(bs);
if (ret < 0) {
return ret;
}
return qcow2_mark_consistent(bs);
} }
return ret; return ret;
} }