提交 d5f1f286 编写于 作者: S Stefan Hajnoczi 提交者: Anthony Liguori

block-migration: improve "Unknown flags" error message

Show the actual flags value and include "block migration" in the error
message so it's clear where the error is coming from.
Signed-off-by: NStefan Hajnoczi <stefanha@redhat.com>
Message-id: 1360534366-26723-2-git-send-email-stefanha@redhat.com
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 49295ebc
...@@ -695,7 +695,7 @@ static int block_load(QEMUFile *f, void *opaque, int version_id) ...@@ -695,7 +695,7 @@ static int block_load(QEMUFile *f, void *opaque, int version_id)
(addr == 100) ? '\n' : '\r'); (addr == 100) ? '\n' : '\r');
fflush(stdout); fflush(stdout);
} else if (!(flags & BLK_MIG_FLAG_EOS)) { } else if (!(flags & BLK_MIG_FLAG_EOS)) {
fprintf(stderr, "Unknown flags\n"); fprintf(stderr, "Unknown block migration flags: %#x\n", flags);
return -EINVAL; return -EINVAL;
} }
ret = qemu_file_get_error(f); ret = qemu_file_get_error(f);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册