qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/3] More migration file cleanup
@ 2014-10-16  7:53 Dr. David Alan Gilbert (git)
  2014-10-16  7:53 ` [Qemu-devel] [PATCH 1/3] Start moving migration code into a migration directory Dr. David Alan Gilbert (git)
                   ` (2 more replies)
  0 siblings, 3 replies; 22+ messages in thread
From: Dr. David Alan Gilbert (git) @ 2014-10-16  7:53 UTC (permalink / raw)
  To: qemu-devel; +Cc: ehabkost, quintela

From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>


This is a small set of patches that shuffle migration code
around, but doesn't change the behaviour:

  1) Move a lot of the migration source into a separate 'migration' directory
     Note this moves a lot of files around, git format-patch -M -B spots the
     renames
  2) Split the 'struct QEMUFile' out into a private header
     Because the QEMU Buffered file code wants to access fields, and it's about
     to be in a separate file from QEMUFile.
  3) Split the QEMU buffered file code out in the same way as the stdio and
     unix/socket code has been split out.

Dave

Dr. David Alan Gilbert (3):
  Start moving migration code into a migration directory
  Split struct QEMUFile out
  Split the QEMU buffered file code out

 Makefile.objs                                    |   9 +-
 migration/Makefile.objs                          |   7 +
 migration-exec.c => migration/migration-exec.c   |   0
 migration-fd.c => migration/migration-fd.c       |   0
 migration-rdma.c => migration/migration-rdma.c   |   0
 migration-tcp.c => migration/migration-tcp.c     |   0
 migration-unix.c => migration/migration-unix.c   |   0
 migration.c => migration/migration.c             |   0
 qemu-file.c => migration/qemu-file-buf.c         | 511 +---------------------
 migration/qemu-file-internal.h                   |  53 +++
 qemu-file-stdio.c => migration/qemu-file-stdio.c |   0
 qemu-file-unix.c => migration/qemu-file-unix.c   |   0
 migration/qemu-file.c                            | 519 +++++++++++++++++++++++
 vmstate.c => migration/vmstate.c                 |   0
 xbzrle.c => migration/xbzrle.c                   |   0
 tests/Makefile                                   |   7 +-
 16 files changed, 586 insertions(+), 520 deletions(-)
 create mode 100644 migration/Makefile.objs
 rename migration-exec.c => migration/migration-exec.c (100%)
 rename migration-fd.c => migration/migration-fd.c (100%)
 rename migration-rdma.c => migration/migration-rdma.c (100%)
 rename migration-tcp.c => migration/migration-tcp.c (100%)
 rename migration-unix.c => migration/migration-unix.c (100%)
 rename migration.c => migration/migration.c (100%)
 rename qemu-file.c => migration/qemu-file-buf.c (51%)
 create mode 100644 migration/qemu-file-internal.h
 rename qemu-file-stdio.c => migration/qemu-file-stdio.c (100%)
 rename qemu-file-unix.c => migration/qemu-file-unix.c (100%)
 create mode 100644 migration/qemu-file.c
 rename vmstate.c => migration/vmstate.c (100%)
 rename xbzrle.c => migration/xbzrle.c (100%)

-- 
1.9.3

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2014-11-03 12:32 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-16  7:53 [Qemu-devel] [PATCH 0/3] More migration file cleanup Dr. David Alan Gilbert (git)
2014-10-16  7:53 ` [Qemu-devel] [PATCH 1/3] Start moving migration code into a migration directory Dr. David Alan Gilbert (git)
2014-10-16  8:08   ` Juan Quintela
2014-10-16  8:12     ` Dr. David Alan Gilbert
2014-10-20 18:34       ` Paolo Bonzini
2014-10-16  8:08   ` Juan Quintela
2014-10-30 12:26   ` Amit Shah
2014-10-31 21:08     ` Gary Hook
2014-11-03  8:53       ` Dr. David Alan Gilbert
2014-11-03 12:32         ` Eduardo Habkost
2014-10-30 12:28   ` Amit Shah
2014-10-30 12:37     ` Dr. David Alan Gilbert
2014-10-30 12:46       ` Amit Shah
2014-10-31 23:31       ` Peter Maydell
2014-10-31 18:32   ` Peter Maydell
2014-10-31 18:58     ` Dr. David Alan Gilbert
2014-10-16  7:53 ` [Qemu-devel] [PATCH 2/3] Split struct QEMUFile out Dr. David Alan Gilbert (git)
2014-10-16  8:09   ` Juan Quintela
2014-10-30 12:34   ` Amit Shah
2014-10-16  7:53 ` [Qemu-devel] [PATCH 3/3] Split the QEMU buffered file code out Dr. David Alan Gilbert (git)
2014-10-16  8:10   ` Juan Quintela
2014-10-30 12:35   ` Amit Shah

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).