[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH for-3.0 2/7] block/qcow2: improve error message in q
From: |
John Snow |
Subject: |
[Qemu-devel] [PATCH for-3.0 2/7] block/qcow2: improve error message in qcow2_inactivate |
Date: |
Mon, 23 Jul 2018 18:22:05 -0400 |
From: Vladimir Sementsov-Ogievskiy <address@hidden>
Signed-off-by: Vladimir Sementsov-Ogievskiy <address@hidden>
Signed-off-by: John Snow <address@hidden>
---
block/qcow2.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/block/qcow2.c b/block/qcow2.c
index 6162ed8be2..7444133ccd 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -2127,9 +2127,9 @@ static int qcow2_inactivate(BlockDriverState *bs)
qcow2_store_persistent_dirty_bitmaps(bs, &local_err);
if (local_err != NULL) {
result = -EINVAL;
- error_report_err(local_err);
- error_report("Persistent bitmaps are lost for node '%s'",
- bdrv_get_device_or_node_name(bs));
+ error_reportf_err(local_err, "Lost persistent bitmaps during "
+ "inactivation of node '%s': ",
+ bdrv_get_device_or_node_name(bs));
}
ret = qcow2_cache_flush(bs, s->l2_table_cache);
--
2.14.4
- [Qemu-devel] [PATCH for-3.0 0/7] fix persistent bitmaps migration logic, John Snow, 2018/07/23
- [Qemu-devel] [PATCH for-3.0 4/7] iotests: 169: actually test block migration, John Snow, 2018/07/23
- [Qemu-devel] [PATCH for-3.0 1/7] iotests: 169: drop deprecated 'autoload' parameter, John Snow, 2018/07/23
- [Qemu-devel] [PATCH for-3.0 6/7] iotests: improve 169, John Snow, 2018/07/23
- [Qemu-devel] [PATCH for-3.0 3/7] block/qcow2: drop dirty_bitmaps_loaded state variable, John Snow, 2018/07/23
- [Qemu-devel] [PATCH for-3.0 7/7] iotests: 169: add cases for source vm resuming, John Snow, 2018/07/23
- [Qemu-devel] [PATCH for-3.0 5/7] dirty-bitmaps: clean-up bitmaps loading and migration logic, John Snow, 2018/07/23
- [Qemu-devel] [PATCH for-3.0 2/7] block/qcow2: improve error message in qcow2_inactivate,
John Snow <=
- Re: [Qemu-devel] [PATCH for-3.0 0/7] fix persistent bitmaps migration logic, Stefan Hajnoczi, 2018/07/24
- Re: [Qemu-devel] [PATCH for-3.0 0/7] fix persistent bitmaps migration logic, Michael Roth, 2018/07/30