qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Clarify error msg when open of backing file fails
@ 2008-05-08 17:50 Beth Kon
  2008-05-09 18:43 ` Aurelien Jarno
  0 siblings, 1 reply; 2+ messages in thread
From: Beth Kon @ 2008-05-08 17:50 UTC (permalink / raw)
  To: qemu-devel

This patch clarifies the error message when a problem is encountered
opening a backing file. Currently the only message printed in this case
is:

" qemu: could not open disk image /path/to/image"

This can be confusing if the real error lies in finding the backing file
rather than the primary file.


diffstat output:
 block.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

Signed-off-by: Beth Kon <eak@us.ibm.com>

---
diff --git a/block.c b/block.c
index bd647a6..c99626f 100644
--- a/block.c
+++ b/block.c
@@ -416,8 +416,11 @@ int bdrv_open2(BlockDriverState *bs, const char
*filename, 
         }
         path_combine(backing_filename, sizeof(backing_filename),
                      filename, bs->backing_file);
-        if (bdrv_open(bs->backing_hd, backing_filename, 0) < 0)
-            goto fail;
+        if (bdrv_open(bs->backing_hd, backing_filename, 0) < 0) {
+            fprintf(stderr, "qemu: could not open backing file %s\n",
+                                             backing_filename);
+            goto fail; 
+        }    
     }
 
     /* call the change callback */


-- 
Elizabeth Kon (Beth)
IBM Linux Technology Center
Open Hypervisor Team
email: eak@us.ibm.com

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-05-09 18:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-08 17:50 [Qemu-devel] [PATCH] Clarify error msg when open of backing file fails Beth Kon
2008-05-09 18:43 ` Aurelien Jarno

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).