qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/2] qemu-img: fix segment fault when the image form


From: zwu . kernel
Subject: [Qemu-devel] [PATCH 1/2] qemu-img: fix segment fault when the image format is qed
Date: Sun, 19 Feb 2012 22:24:35 +0800

From: Zhi Yong Wu <address@hidden>

address@hidden qemu]# qemu-img info /home/zwu/work/misc/rh6.img
image: /home/zwu/work/misc/rh6.img
file format: qed
virtual size: 4.0G (4294967296 bytes)
disk size: 1.2G
cluster_size: 65536
Segmentation fault (core dumped)

Today when i were fixing another issue, i found this issue; After simple 
investigation, i found that the required clock vm_clock is not created for qemu 
tool.

Signed-off-by: Zhi Yong Wu <address@hidden>
---
 qemu-img.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/qemu-img.c b/qemu-img.c
index c4bcf41..8df3564 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -1655,6 +1655,8 @@ int main(int argc, char **argv)
     cmdname = argv[1];
     argc--; argv++;
 
+    qemu_init_main_loop();
+
     /* find the command */
     for(cmd = img_cmds; cmd->name != NULL; cmd++) {
         if (!strcmp(cmdname, cmd->name)) {
-- 
1.7.6




reply via email to

[Prev in Thread] Current Thread [Next in Thread]