Browse Source
cpu_{save,load} were no-ops, so de facto it is unmigratable and no
backwards compatibility to keep. Therefore mark the MicroBlazeCPU as
unmigratable at device level the QOM way and suppress "cpu_common"
VMState registration by dropping CPU_SAVE_VERSION.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Juan Quintela <quintela@redhat.com>
stable-1.4
4 changed files with 10 additions and 14 deletions
@ -1,2 +1,2 @@ |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += mmu.o machine.o |
|||
obj-$(CONFIG_SOFTMMU) += mmu.o |
|||
|
|||
@ -1,11 +0,0 @@ |
|||
#include "hw/hw.h" |
|||
#include "hw/boards.h" |
|||
|
|||
void cpu_save(QEMUFile *f, void *opaque) |
|||
{ |
|||
} |
|||
|
|||
int cpu_load(QEMUFile *f, void *opaque, int version_id) |
|||
{ |
|||
return 0; |
|||
} |
|||
Loading…
Reference in new issue