提交 dc94a7ed 编写于 作者: A Avi Kivity

Convert ram_load() to the memory API

Reviewed-by: NAnthony Liguori <aliguori@us.ibm.com>
Signed-off-by: NAvi Kivity <avi@redhat.com>
上级 f09f2189
......@@ -344,7 +344,7 @@ static inline void *host_from_stream_offset(QEMUFile *f,
return NULL;
}
return block->host + offset;
return memory_region_get_ram_ptr(block->mr) + offset;
}
len = qemu_get_byte(f);
......@@ -353,7 +353,7 @@ static inline void *host_from_stream_offset(QEMUFile *f,
QLIST_FOREACH(block, &ram_list.blocks, next) {
if (!strncmp(id, block->idstr, sizeof(id)))
return block->host + offset;
return memory_region_get_ram_ptr(block->mr) + offset;
}
fprintf(stderr, "Can't find block %s!\n", id);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册