diff options
author | Gonglei <arei.gonglei@huawei.com> | 2016-05-10 10:04:59 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-23 16:53:44 +0200 |
commit | fa53a0e53efdc7002497ea4a76aacf6cceb170ef (patch) | |
tree | ea02755b801884f1043e0eaa4127205a2bcee370 /migration/ram.c | |
parent | e92a2d9cb3d8f589c9fe5d2eacc83d8dddea0e16 (diff) | |
download | qemu-fa53a0e53efdc7002497ea4a76aacf6cceb170ef.zip qemu-fa53a0e53efdc7002497ea4a76aacf6cceb170ef.tar.gz qemu-fa53a0e53efdc7002497ea4a76aacf6cceb170ef.tar.bz2 |
memory: drop find_ram_block()
On the one hand, we have already qemu_get_ram_block() whose function
is similar. On the other hand, we can directly use mr->ram_block but
searching RAMblock by ram_addr which is a kind of waste.
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Message-Id: <1462845901-89716-2-git-send-email-arei.gonglei@huawei.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'migration/ram.c')
-rw-r--r-- | migration/ram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/ram.c b/migration/ram.c index 5e88080..6b6900e 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -2478,7 +2478,7 @@ static int ram_load(QEMUFile *f, void *opaque, int version_id) if (length != block->used_length) { Error *local_err = NULL; - ret = qemu_ram_resize(block->offset, length, + ret = qemu_ram_resize(block, length, &local_err); if (local_err) { error_report_err(local_err); |