[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 3/9] Add error message for loading snapshot without
From: |
Kevin Wolf |
Subject: |
[Qemu-devel] [PATCH 3/9] Add error message for loading snapshot without VM state |
Date: |
Wed, 16 Mar 2011 11:47:55 +0100 |
It already fails, but it didn't tell the user why.
Signed-off-by: Kevin Wolf <address@hidden>
Reviewed-by: Juan Quintela <address@hidden>
---
savevm.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/savevm.c b/savevm.c
index 60d2f2a..d1b9b4a 100644
--- a/savevm.c
+++ b/savevm.c
@@ -2021,6 +2021,8 @@ int load_vmstate(const char *name)
if (ret < 0) {
return ret;
} else if (sn.vm_state_size == 0) {
+ error_report("This is a disk-only snapshot. Revert to it offline "
+ "using qemu-img.");
return -EINVAL;
}
--
1.7.2.3
- [Qemu-devel] [PULL 0/9] Block patches, Kevin Wolf, 2011/03/16
- [Qemu-devel] [PATCH 2/9] block/qcow: Don't ignore immediate read/write and other failures, Kevin Wolf, 2011/03/16
- [Qemu-devel] [PATCH 1/9] block/vdi: Don't ignore immediate read/write failures, Kevin Wolf, 2011/03/16
- [Qemu-devel] [PATCH 5/9] Don't allow multiwrites against a block device without underlying medium, Kevin Wolf, 2011/03/16
- [Qemu-devel] [PATCH 3/9] Add error message for loading snapshot without VM state,
Kevin Wolf <=
- [Qemu-devel] [PATCH 4/9] tools: Use real async.c instead of stubs, Kevin Wolf, 2011/03/16
- [Qemu-devel] [PATCH 6/9] Fix ATA SMART and CHECK POWER MODE, Kevin Wolf, 2011/03/16
- [Qemu-devel] [PATCH 7/9] Improve error handling in do_snapshot_blkdev(), Kevin Wolf, 2011/03/16
- [Qemu-devel] [PATCH 8/9] hw/xen_disk: aio_inflight not released in handling ioreq when nr_segments==0, Kevin Wolf, 2011/03/16
- [Qemu-devel] [PATCH 9/9] Add qcow2 documentation, Kevin Wolf, 2011/03/16
- [Qemu-devel] Re: [PULL 0/9] Block patches, Kevin Wolf, 2011/03/21