From fb787f81e749fde8c74548f9db1472eb321b9a0c Mon Sep 17 00:00:00 2001 From: Alex Williamson Date: Fri, 2 Jul 2010 11:13:29 -0600 Subject: ramblocks: No more being lazy about duplicate names Now that we have a working qemu_ram_free() and the primary runtime user of it has been updated, don't be lenient about duplicate id strings. We also shouldn't need to create them ondemand at the target. Signed-off-by: Alex Williamson Signed-off-by: Anthony Liguori --- arch_init.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'arch_init.c') diff --git a/arch_init.c b/arch_init.c index 2f082f30bb..47bb4b2d8f 100644 --- a/arch_init.c +++ b/arch_init.c @@ -369,8 +369,9 @@ int ram_load(QEMUFile *f, void *opaque, int version_id) } if (!block) { - if (!qemu_ram_alloc(NULL, id, length)) - return -ENOMEM; + fprintf(stderr, "Unknown ramblock \"%s\", cannot " + "accept migration\n", id); + return -EINVAL; } total_ram_bytes -= length; -- cgit v1.2.3