diff options
author | Kevin Wolf <kwolf@redhat.com> | 2012-05-11 16:07:02 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2012-06-15 14:03:42 +0200 |
commit | 4534ff5426afeeae5238ba10a696cafa9a0168ee (patch) | |
tree | 41cfe59d3c5b41f0e5d6c396a1c9563a2c21deab /block_int.h | |
parent | dfc65f1f780622d852ca8b9fb1421735ee56c48b (diff) |
qemu-img check -r for repairing images
The QED block driver already provides the functionality to not only
detect inconsistencies in images, but also fix them. However, this
functionality cannot be manually invoked with qemu-img, but the
check happens only automatically during bdrv_open().
This adds a -r switch to qemu-img check that allows manual invocation
of an image repair.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block_int.h')
-rw-r--r-- | block_int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/block_int.h b/block_int.h index 3d4abc6575..1fb5352d0e 100644 --- a/block_int.h +++ b/block_int.h @@ -241,7 +241,8 @@ struct BlockDriver { * Returns 0 for completed check, -errno for internal errors. * The check results are stored in result. */ - int (*bdrv_check)(BlockDriverState* bs, BdrvCheckResult *result); + int (*bdrv_check)(BlockDriverState* bs, BdrvCheckResult *result, + BdrvCheckMode fix); void (*bdrv_debug_event)(BlockDriverState *bs, BlkDebugEvent event); |