qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/18] Migration PULL request
@ 2017-09-21 23:07 Juan Quintela
  2017-09-21 23:07 ` [Qemu-devel] [PULL 01/18] migration: Create migration_ioc_process_incoming() Juan Quintela
                   ` (18 more replies)
  0 siblings, 19 replies; 26+ messages in thread
From: Juan Quintela @ 2017-09-21 23:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert, lvivier, peterx

To make merges easier, this includes:
- Peter Xu reviewed patches from Postocpy recovery (3)
- Alexey reviewed pages from block postcopy (4)
- Vladimir reviewed patches (3)
- reviewed patches from Multifd (me)

Please apply, Juan.


The following changes since commit ff5667ed53c544c4dc88dcd7cb23cc509c9a55e0:

  Merge remote-tracking branch 'remotes/mcayland/tags/qemu-sparc-signed' into staging (2017-09-21 10:56:09 +0100)

are available in the git repository at:

  git://github.com/juanquintela/qemu.git tags/migration/20170921

for you to fetch changes up to 0fba48d49815d84d7ab30f6ee7a48384b823722e:

  migration: split ufd_version_check onto receive/request features part (2017-09-21 14:01:44 +0200)

----------------------------------------------------------------
migration/next for 20170921

----------------------------------------------------------------
Alexey Perevalov (3):
      migration: pass MigrationIncomingState* into migration check functions
      migration: fix hardcoded function name in error report
      migration: split ufd_version_check onto receive/request features part

Juan Quintela (9):
      migration: Create migration_ioc_process_incoming()
      migration: Teach it about G_SOURCE_REMOVE
      migration: Add comments to channel functions
      migration: Create migration_has_all_channels
      migration: Add multifd capability
      migration: Create x-multifd-channels parameter
      migration: Create x-multifd-page-count parameter
      migration: Create multifd migration threads
      migration: Split migration_fd_process_incoming

Peter Xu (3):
      bitmap: remove BITOP_WORD()
      bitmap: introduce bitmap_count_one()
      bitmap: provide to_le/from_le helpers

Vladimir Sementsov-Ogievskiy (3):
      migration: add has_postcopy savevm handler
      migration: fix ram_save_pending
      migration: split common postcopy out of ram postcopy

 hmp.c                        |  14 +++
 include/glib-compat.h        |   2 +
 include/migration/register.h |   1 +
 include/qemu/bitmap.h        |  17 ++++
 migration/channel.c          |  18 +++-
 migration/exec.c             |   2 +-
 migration/fd.c               |   2 +-
 migration/migration.c        | 176 +++++++++++++++++++++++++++++++----
 migration/migration.h        |   9 ++
 migration/postcopy-ram.c     | 100 ++++++++++++++++++--
 migration/postcopy-ram.h     |   2 +-
 migration/ram.c              | 216 ++++++++++++++++++++++++++++++++++++++++++-
 migration/ram.h              |   5 +
 migration/savevm.c           |  56 ++++++++---
 migration/socket.c           |  10 +-
 qapi/migration.json          |  39 +++++++-
 util/bitmap.c                |  47 ++++++++++
 util/bitops.c                |   6 +-
 18 files changed, 664 insertions(+), 58 deletions(-)

^ permalink raw reply	[flat|nested] 26+ messages in thread
* [Qemu-devel] [PULL 00/18] Migration pull request
@ 2017-05-18 17:24 Juan Quintela
  2017-05-19 15:41 ` Stefan Hajnoczi
  0 siblings, 1 reply; 26+ messages in thread
From: Juan Quintela @ 2017-05-18 17:24 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert, lvivier, peterx

Hi

This include the following series:
- Fix non-multiple of page size migraition (dave)
- Remove use of old MigrationParms (a.k.a. now block migration is a capability)
- Cleanups of headers in migration
- Make savevm.c target independent

Please, apply.

Thanks, Juan.

The following changes since commit 56821559f0ba682fe6b367815572e6f974d329ab:

  Merge remote-tracking branch 'dgilbert/tags/pull-hmp-20170517' into staging (2017-05-18 13:36:15 +0100)

are available in the git repository at:

  git://github.com/juanquintela/qemu.git tags/migration/20170518

for you to fetch changes up to 46d702b106d20beda2fcd0f96ddc44855ba262b3:

  migration: Make savevm.c target independent (2017-05-18 19:21:00 +0200)

----------------------------------------------------------------
migration/next for 20170518

----------------------------------------------------------------
Dr. David Alan Gilbert (3):
      migration: Fix non-multiple of page size migration
      postcopy: Require RAMBlocks that are whole pages
      block migration: Allow compile time disable

Juan Quintela (15):
      hmp: Use visitor api for hmp_migrate_set_parameter()
      migration: Create block capability
      migration: Remove use of old MigrationParams
      migration: Remove old MigrationParams
      migration: Create migration/xbzrle.h
      migration: Split migration/channel.c for channel operations
      migration: Export qemu-file-channel.c functions in its own file
      migration: Remove migration.h from colo.h
      migration: Move qjson.h to migration/
      migration: Split vmstate-types.c from vmstate.c
      migration: Remove qemu-file.h from vmstate.h
      migration: Remove vmstate.h from migration.h
      migration: migration.h was not needed
      exec: Create include for target_page_size()
      migration: Make savevm.c target independent

 Makefile.target                          |   2 +-
 block/qed.c                              |   1 -
 configure                                |  11 +
 exec.c                                   |  10 +
 hmp.c                                    |  23 +-
 hw/i386/pc_q35.c                         |   1 -
 hw/virtio/vhost-user.c                   |   1 -
 hw/virtio/vhost-vsock.c                  |   1 -
 hw/virtio/virtio.c                       |   1 -
 include/exec/target_page.h               |  21 +
 include/hw/hw.h                          |   1 +
 include/migration/block.h                |  24 ++
 include/migration/colo.h                 |   1 -
 include/migration/migration.h            |  30 +-
 include/migration/qemu-file.h            |   4 -
 include/migration/vmstate.h              |   4 -
 include/qemu/typedefs.h                  |   1 -
 include/sysemu/sysemu.h                  |   4 +-
 migration/Makefile.objs                  |   6 +-
 migration/block.c                        |  19 +-
 migration/channel.c                      |  67 ++++
 migration/channel.h                      |  27 ++
 migration/colo-comm.c                    |   4 +-
 migration/colo.c                         |   9 +-
 migration/exec.c                         |   1 +
 migration/fd.c                           |   1 +
 migration/migration.c                    | 149 ++++---
 migration/postcopy-ram.c                 |  18 +-
 migration/qemu-file-channel.c            |   1 +
 migration/qemu-file-channel.h            |  32 ++
 migration/qjson.c                        |   2 +-
 {include/migration => migration}/qjson.h |   0
 migration/ram.c                          |   8 +-
 migration/rdma.c                         |   1 +
 migration/savevm.c                       |  40 +-
 migration/socket.c                       |   1 +
 migration/tls.c                          |   1 +
 migration/vmstate-types.c                | 661 +++++++++++++++++++++++++++++++
 migration/vmstate.c                      | 656 +-----------------------------
 migration/xbzrle.c                       |   2 +-
 migration/xbzrle.h                       |  21 +
 monitor.c                                |   1 -
 qapi-schema.json                         |  28 +-
 tests/Makefile.include                   |   2 +-
 tests/test-vmstate.c                     |   2 +
 tests/test-xbzrle.c                      |   2 +-
 46 files changed, 1102 insertions(+), 801 deletions(-)
 create mode 100644 include/exec/target_page.h
 create mode 100644 migration/channel.c
 create mode 100644 migration/channel.h
 create mode 100644 migration/qemu-file-channel.h
 rename {include/migration => migration}/qjson.h (100%)
 create mode 100644 migration/vmstate-types.c
 create mode 100644 migration/xbzrle.h

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

end of thread, other threads:[~2017-09-22  8:44 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-21 23:07 [Qemu-devel] [PULL 00/18] Migration PULL request Juan Quintela
2017-09-21 23:07 ` [Qemu-devel] [PULL 01/18] migration: Create migration_ioc_process_incoming() Juan Quintela
2017-09-21 23:07 ` [Qemu-devel] [PULL 02/18] migration: Teach it about G_SOURCE_REMOVE Juan Quintela
2017-09-21 23:07 ` [Qemu-devel] [PULL 03/18] migration: Add comments to channel functions Juan Quintela
2017-09-21 23:07 ` [Qemu-devel] [PULL 04/18] migration: Create migration_has_all_channels Juan Quintela
2017-09-21 23:07 ` [Qemu-devel] [PULL 05/18] migration: Add multifd capability Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 06/18] migration: Create x-multifd-channels parameter Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 07/18] migration: Create x-multifd-page-count parameter Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 08/18] migration: Create multifd migration threads Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 09/18] migration: Split migration_fd_process_incoming Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 10/18] bitmap: remove BITOP_WORD() Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 11/18] bitmap: introduce bitmap_count_one() Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 12/18] bitmap: provide to_le/from_le helpers Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 13/18] migration: add has_postcopy savevm handler Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 14/18] migration: fix ram_save_pending Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 15/18] migration: split common postcopy out of ram postcopy Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 16/18] migration: pass MigrationIncomingState* into migration check functions Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 17/18] migration: fix hardcoded function name in error report Juan Quintela
2017-09-21 23:08 ` [Qemu-devel] [PULL 18/18] migration: split ufd_version_check onto receive/request features part Juan Quintela
2017-09-21 23:29 ` [Qemu-devel] [PULL 00/18] Migration PULL request no-reply
2017-09-22  5:51   ` Peter Xu
2017-09-22  8:25     ` Juan Quintela
2017-09-22  8:39       ` Thomas Huth
2017-09-22  8:44       ` Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2017-05-18 17:24 [Qemu-devel] [PULL 00/18] Migration pull request Juan Quintela
2017-05-19 15:41 ` Stefan Hajnoczi

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).