[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 00/10] Migration pull request
From: |
Juan Quintela |
Subject: |
[Qemu-devel] [PULL 00/10] Migration pull request |
Date: |
Wed, 15 Oct 2014 10:24:54 +0200 |
From: Juan Quintela <address@hidden>
Hi
This patches have been on the list for a while:
- ram flags from Peter Lieven
- qemu-file cleanups from Eduardo (just code movement)
- QEMUSizedBuffer from David (they have already have 6 versions)
- VBUFFER (new macro, can't break old things) (Alexey)
- invalidate state (Alexey)
Please, apply.
The following changes since commit b1d28ec6a7dbdaadda39d29322f0de694aeb0b74:
Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20141010' into
staging (2014-10-10 14:55:29 +0100)
are available in the git repository at:
git://github.com/juanquintela/qemu.git migration/20141015
for you to fetch changes up to 5b0e9dd46fbda5152566a4a26fd96bc0d0452bf7:
migration: catch unknown flag combinations in ram_load (2014-10-14 11:24:20
+0200)
----------------------------------------------------------------
migration/next for 20141015
----------------------------------------------------------------
Alexey Kardashevskiy (2):
block/migration: Disable cache invalidate for incoming migration
vmstate: Allow dynamic allocation for VBUFFER during migration
Dr. David Alan Gilbert (2):
QEMUSizedBuffer based QEMUFile
Tests: QEMUSizedBuffer/QEMUBuffer
Eduardo Habkost (5):
qemu-file: Add copyright header to qemu-file.c
qemu-file: Make qemu_file_is_writable() non-static
qemu-file: Use qemu_file_is_writable() on stdio_fclose()
qemu-file: Move unix and socket implementations to qemu-file-unix.c
qemu-file: Move stdio implementation to qemu-file-stdio.c
Peter Lieven (1):
migration: catch unknown flag combinations in ram_load
Makefile.objs | 2 +-
arch_init.c | 62 ++--
block.c | 18 +-
include/migration/qemu-file.h | 27 ++
include/migration/vmstate.h | 11 +
include/qemu/typedefs.h | 1 +
migration.c | 1 -
nbd.c | 6 +
qemu-file-stdio.c | 194 ++++++++++
qemu-file-unix.c | 223 +++++++++++
qemu-file.c | 843 ++++++++++++++++++++++++------------------
tests/Makefile | 4 +-
tests/test-vmstate.c | 74 ++--
vmstate.c | 13 +-
14 files changed, 1029 insertions(+), 450 deletions(-)
create mode 100644 qemu-file-stdio.c
create mode 100644 qemu-file-unix.c
- [Qemu-devel] [PULL 00/10] Migration pull request,
Juan Quintela <=
- [Qemu-devel] [PULL 02/10] Tests: QEMUSizedBuffer/QEMUBuffer, Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 01/10] QEMUSizedBuffer based QEMUFile, Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 03/10] block/migration: Disable cache invalidate for incoming migration, Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 04/10] vmstate: Allow dynamic allocation for VBUFFER during migration, Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 05/10] qemu-file: Add copyright header to qemu-file.c, Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 06/10] qemu-file: Make qemu_file_is_writable() non-static, Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 07/10] qemu-file: Use qemu_file_is_writable() on stdio_fclose(), Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 08/10] qemu-file: Move unix and socket implementations to qemu-file-unix.c, Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 09/10] qemu-file: Move stdio implementation to qemu-file-stdio.c, Juan Quintela, 2014/10/15
- [Qemu-devel] [PULL 10/10] migration: catch unknown flag combinations in ram_load, Juan Quintela, 2014/10/15