mbox

[PULL,00/10] Migration pull request

Message ID 1413361504-26396-1-git-send-email-quintela@redhat.com
State New
Headers show

Pull-request

git://github.com/juanquintela/qemu.git migration/20141015

Message

Juan Quintela Oct. 15, 2014, 8:24 a.m. UTC
From: Juan Quintela <quintela@trasno.org>

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

Comments

Peter Maydell Oct. 15, 2014, 12:37 p.m. UTC | #1
On 15 October 2014 10:24, Juan Quintela <quintela@redhat.com> wrote:
> From: Juan Quintela <quintela@trasno.org>
>
> 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)
>

Applied, thanks.

-- PMM