]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
Remove migration- pre/post fixes off files in migration/ dir
authorDr. David Alan Gilbert <dgilbert@redhat.com>
Fri, 12 Dec 2014 11:13:39 +0000 (11:13 +0000)
committerAmit Shah <amit.shah@redhat.com>
Tue, 16 Dec 2014 12:17:36 +0000 (17:47 +0530)
The general feeling is that having migration/migration-blah
is overkill.

Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
migration/Makefile.objs
migration/block.c [moved from migration/block-migration.c with 100% similarity]
migration/exec.c [moved from migration/migration-exec.c with 100% similarity]
migration/fd.c [moved from migration/migration-fd.c with 100% similarity]
migration/rdma.c [moved from migration/migration-rdma.c with 100% similarity]
migration/tcp.c [moved from migration/migration-tcp.c with 100% similarity]
migration/unix.c [moved from migration/migration-unix.c with 100% similarity]

index 63dbe93447f0cc3d4b5f3fc4f831936cf25b2e4b..ce1e3c7e652ff04c8294795dac0e906969d2a240 100644 (file)
@@ -1,10 +1,10 @@
-common-obj-y += migration.o migration-tcp.o
+common-obj-y += migration.o tcp.o
 common-obj-y += vmstate.o
 common-obj-y += qemu-file.o qemu-file-unix.o qemu-file-stdio.o
-common-obj-$(CONFIG_RDMA) += migration-rdma.o
 common-obj-y += xbzrle.o
 
-common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
+common-obj-$(CONFIG_RDMA) += rdma.o
+common-obj-$(CONFIG_POSIX) += exec.o unix.o fd.o
 
-common-obj-y += block-migration.o
+common-obj-y += block.o
 
similarity index 100%
rename from migration/migration-exec.c
rename to migration/exec.c
similarity index 100%
rename from migration/migration-fd.c
rename to migration/fd.c
similarity index 100%
rename from migration/migration-rdma.c
rename to migration/rdma.c
similarity index 100%
rename from migration/migration-tcp.c
rename to migration/tcp.c
similarity index 100%
rename from migration/migration-unix.c
rename to migration/unix.c