Start migrating migration code into a migration directory
commit60fe637bf0e4d7989e21e50f52526444765c63b4
authorDr. David Alan Gilbert <dgilbert@redhat.com>
Fri, 12 Dec 2014 11:13:38 +0000 (12 11:13 +0000)
committerAmit Shah <amit.shah@redhat.com>
Tue, 16 Dec 2014 12:17:36 +0000 (16 17:47 +0530)
treeb5dbcea1d25fe151e097cc1401cb19b64262401c
parentd6d69731f5295e4c3bb0196f57e8848af28b705e
Start migrating migration code into a migration directory

The migration code now occupies a fair chunk of the top level .c
files, it seems time to give it it's own directory.

I've not touched:
   arch_init.c - that's mostly RAM migration but has a few random other
                 bits
   savevm.c    - because it's built target specific

This is purely a code move; no code has changed.
   - it fails checkpatch because of old violations, it feels safer
     to keep this as purely a move and fix those at some mythical future
     date.

The xbzrle and vmstate tests are now only run for softmmu builds
since they require files in the migrate/ directory which is only built
for softmmu.

Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
15 files changed:
Makefile.objs
migration/Makefile.objs [new file with mode: 0644]
migration/block-migration.c [moved from block-migration.c with 100% similarity]
migration/migration-exec.c [moved from migration-exec.c with 100% similarity]
migration/migration-fd.c [moved from migration-fd.c with 100% similarity]
migration/migration-rdma.c [moved from migration-rdma.c with 100% similarity]
migration/migration-tcp.c [moved from migration-tcp.c with 100% similarity]
migration/migration-unix.c [moved from migration-unix.c with 100% similarity]
migration/migration.c [moved from migration.c with 100% similarity]
migration/qemu-file-stdio.c [moved from qemu-file-stdio.c with 100% similarity]
migration/qemu-file-unix.c [moved from qemu-file-unix.c with 100% similarity]
migration/qemu-file.c [moved from qemu-file.c with 100% similarity]
migration/vmstate.c [moved from vmstate.c with 100% similarity]
migration/xbzrle.c [moved from xbzrle.c with 100% similarity]
tests/Makefile