block/qcow2: improve error message in qcow2_inactivate
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> [Maintainer edit -- touched up error message. --js] Reviewed-by: John Snow <jsnow@redhat.com> Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
304cc429a0
commit
132adb6820
@ -2123,9 +2123,9 @@ static int qcow2_inactivate(BlockDriverState *bs)
|
|||||||
qcow2_store_persistent_dirty_bitmaps(bs, &local_err);
|
qcow2_store_persistent_dirty_bitmaps(bs, &local_err);
|
||||||
if (local_err != NULL) {
|
if (local_err != NULL) {
|
||||||
result = -EINVAL;
|
result = -EINVAL;
|
||||||
error_report_err(local_err);
|
error_reportf_err(local_err, "Lost persistent bitmaps during "
|
||||||
error_report("Persistent bitmaps are lost for node '%s'",
|
"inactivation of node '%s': ",
|
||||||
bdrv_get_device_or_node_name(bs));
|
bdrv_get_device_or_node_name(bs));
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = qcow2_cache_flush(bs, s->l2_table_cache);
|
ret = qcow2_cache_flush(bs, s->l2_table_cache);
|
||||||
|
Loading…
Reference in New Issue
Block a user