diff mbox

Show length mismatch error is hex

Message ID 1405760991-2837-1-git-send-email-alex@alex.org.uk
State New
Headers show

Commit Message

Alex Bligh July 19, 2014, 9:09 a.m. UTC
When live migrate fails due to a section length mismatch we currently
see an error message like:

Length mismatch: 0000:00:03.0/virtio-net-pci.rom: 10000 in != 20000

The section lengths are in fact in hex, so this should read

Length mismatch: 0000:00:03.0/virtio-net-pci.rom: 0x10000 in != 0x20000

Correct the error string to reflect this.

Signed-off-by: Alex Bligh <alex@alex.org.uk>
---
 arch_init.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Michael Tokarev Aug. 2, 2014, 1:24 p.m. UTC | #1
19.07.2014 13:09, Alex Bligh wrote:
> When live migrate fails due to a section length mismatch we currently
> see an error message like:
> 
> Length mismatch: 0000:00:03.0/virtio-net-pci.rom: 10000 in != 20000
> 
> The section lengths are in fact in hex, so this should read
> 
> Length mismatch: 0000:00:03.0/virtio-net-pci.rom: 0x10000 in != 0x20000
> 
> Correct the error string to reflect this.

Applied to -trivial, thank you!

/mjt
diff mbox

Patch

diff --git a/arch_init.c b/arch_init.c
index 8ddaf35..28ece76 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -1072,8 +1072,8 @@  static int ram_load(QEMUFile *f, void *opaque, int version_id)
                 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
                     if (!strncmp(id, block->idstr, sizeof(id))) {
                         if (block->length != length) {
-                            error_report("Length mismatch: %s: " RAM_ADDR_FMT
-                                         " in != " RAM_ADDR_FMT, id, length,
+                            error_report("Length mismatch: %s: 0x" RAM_ADDR_FMT
+                                         " in != 0x" RAM_ADDR_FMT, id, length,
                                          block->length);
                             ret =  -EINVAL;
                         }