diff options
author | Andreas Färber <afaerber@suse.de> | 2013-01-20 19:41:06 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-02-01 01:35:22 +0100 |
commit | c7396bbb2597577b1463fc997a73e67b8a067880 (patch) | |
tree | d36a100ed60af351392cd37aca8b101ad930331b /target-s390x/Makefile.objs | |
parent | 1e45d31b04b1e3ccad2bfb3b4a90a75317ada16a (diff) |
target-s390x: Mark as unmigratable
CPU_SAVE_VERSION was undefined, so "cpu_common" VMState and
cpu_{save,load}() were not registered. They were no-ops.
Therefore there is no backwards compatibility to keep, so we can mark
S390CPU as unmigratable at device level.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Acked-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'target-s390x/Makefile.objs')
-rw-r--r-- | target-s390x/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-s390x/Makefile.objs b/target-s390x/Makefile.objs index 3afb0b71f9..4e634173a4 100644 --- a/target-s390x/Makefile.objs +++ b/target-s390x/Makefile.objs @@ -1,4 +1,4 @@ obj-y += translate.o helper.o cpu.o interrupt.o obj-y += int_helper.o fpu_helper.o cc_helper.o mem_helper.o misc_helper.o -obj-$(CONFIG_SOFTMMU) += machine.o ioinst.o +obj-$(CONFIG_SOFTMMU) += ioinst.o obj-$(CONFIG_KVM) += kvm.o |