mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
Provide init function for ram migration
Provide ram_mig_init (like blk_mig_init) for vl.c to initialise stuff to do with ram migration (currently in arch_init.c). Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Gonglei <arei.gonglei@huawei.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
e30d1d8c71
commit
0d6ab3ab91
4 changed files with 8 additions and 5 deletions
3
vl.c
3
vl.c
|
@ -4306,6 +4306,7 @@ int main(int argc, char **argv, char **envp)
|
|||
cpu_exec_init_all();
|
||||
|
||||
blk_mig_init();
|
||||
ram_mig_init();
|
||||
|
||||
/* open the virtual block devices */
|
||||
if (snapshot)
|
||||
|
@ -4320,8 +4321,6 @@ int main(int argc, char **argv, char **envp)
|
|||
default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
|
||||
default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
|
||||
|
||||
register_savevm_live(NULL, "ram", 0, 4, &savevm_ram_handlers, NULL);
|
||||
|
||||
if (nb_numa_nodes > 0) {
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue