From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44686) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeJtZ-0006dW-Kq for qemu-devel@nongnu.org; Wed, 15 Oct 2014 04:25:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XeJtV-00028Q-AS for qemu-devel@nongnu.org; Wed, 15 Oct 2014 04:25:21 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37753) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeJtV-00028C-1t for qemu-devel@nongnu.org; Wed, 15 Oct 2014 04:25:17 -0400 From: Juan Quintela Date: Wed, 15 Oct 2014 10:24:54 +0200 Message-Id: <1413361504-26396-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PULL 00/10] Migration pull request List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Juan Quintela From: Juan Quintela 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