Signed-off-by: Isaku Yamahata <yamahata@xxxxxxxxxxxxx> --- arch_init.c | 67 +++++++++++++++++++++++++++++++++------------------------- arch_init.h | 1 + 2 files changed, 39 insertions(+), 29 deletions(-) diff --git a/arch_init.c b/arch_init.c index c861e30..bb0cd52 100644 --- a/arch_init.c +++ b/arch_init.c @@ -438,6 +438,41 @@ static inline void *host_from_stream_offset(QEMUFile *f, return ram_load_host_from_stream_offset(f, offset, flags, &block); } +int ram_load_mem_size(QEMUFile *f, ram_addr_t total_ram_bytes) +{ + /* Synchronize RAM block list */ + char id[256]; + ram_addr_t length; + + while (total_ram_bytes) { + RAMBlock *block; + uint8_t len; + + len = qemu_get_byte(f); + qemu_get_buffer(f, (uint8_t *)id, len); + id[len] = 0; + length = qemu_get_be64(f); + + QLIST_FOREACH(block, &ram_list.blocks, next) { + if (!strncmp(id, block->idstr, sizeof(id))) { + if (block->length != length) + return -EINVAL; + break; + } + } + + if (!block) { + fprintf(stderr, "Unknown ramblock \"%s\", cannot " + "accept migration\n", id); + return -EINVAL; + } + + total_ram_bytes -= length; + } + + return 0; +} + int ram_load(QEMUFile *f, void *opaque, int version_id) { ram_addr_t addr; @@ -456,35 +491,9 @@ int ram_load(QEMUFile *f, void *opaque, int version_id) if (flags & RAM_SAVE_FLAG_MEM_SIZE) { if (version_id == 4) { - /* Synchronize RAM block list */ - char id[256]; - ram_addr_t length; - ram_addr_t total_ram_bytes = addr; - - while (total_ram_bytes) { - RAMBlock *block; - uint8_t len; - - len = qemu_get_byte(f); - qemu_get_buffer(f, (uint8_t *)id, len); - id[len] = 0; - length = qemu_get_be64(f); - - QLIST_FOREACH(block, &ram_list.blocks, next) { - if (!strncmp(id, block->idstr, sizeof(id))) { - if (block->length != length) - return -EINVAL; - break; - } - } - - if (!block) { - fprintf(stderr, "Unknown ramblock \"%s\", cannot " - "accept migration\n", id); - return -EINVAL; - } - - total_ram_bytes -= length; + error = ram_load_mem_size(f, addr); + if (error) { + return error; } } } diff --git a/arch_init.h b/arch_init.h index 0a39082..507f110 100644 --- a/arch_init.h +++ b/arch_init.h @@ -45,6 +45,7 @@ void *ram_load_host_from_stream_offset(QEMUFile *f, ram_addr_t offset, int flags, RAMBlock **last_blockp); +int ram_load_mem_size(QEMUFile *f, ram_addr_t total_ram_bytes); #endif #endif -- 1.7.1.1 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html