mbox

[PULL,00/18] migration: COLO

Message ID 1477824430-1460-1-git-send-email-amit.shah@redhat.com
State New
Headers show

Pull-request

https://git.kernel.org/pub/scm/virt/qemu/amit/migration.git tags/migration-for-2.8

Message

Amit Shah Oct. 30, 2016, 10:46 a.m. UTC
From: Amit Shah <amit@amitshah.net>

The following changes since commit 5b2ecabaeabc17f032197246c4846b9ba95ba8a6:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20161028-1' into staging (2016-10-28 17:59:04 +0100)

are available in the git repository at:

  https://git.kernel.org/pub/scm/virt/qemu/amit/migration.git tags/migration-for-2.8

for you to fetch changes up to a4cc318e15955b4b9c7231c37128d4e7466d4307:

  MAINTAINERS: Add maintainer for COLO framework related files (2016-10-30 15:17:39 +0530)

----------------------------------------------------------------
Migration bits from the COLO project

----------------------------------------------------------------

zhanghailiang (18):
  migration: Introduce capability 'x-colo' to migration
  COLO: migrate COLO related info to secondary node
  migration: Enter into COLO mode after migration if COLO is enabled
  migration: Switch to COLO process after finishing loadvm
  COLO: Establish a new communicating path for COLO
  COLO: Introduce checkpointing protocol
  COLO: Add a new RunState RUN_STATE_COLO
  COLO: Send PVM state to secondary side when do checkpoint
  COLO: Load VMState into QIOChannelBuffer before restore it
  COLO: Add checkpoint-delay parameter for migrate-set-parameters
  COLO: Synchronize PVM's state to SVM periodically
  COLO: Add 'x-colo-lost-heartbeat' command to trigger failover
  COLO: Introduce state to record failover process
  COLO: Implement the process of failover for primary VM
  COLO: Implement failover work for secondary VM
  docs: Add documentation for COLO feature
  configure: Support enable/disable COLO feature
  MAINTAINERS: Add maintainer for COLO framework related files

 MAINTAINERS                   |   8 +
 configure                     |  11 +
 docs/COLO-FT.txt              | 189 +++++++++++++++
 docs/qmp-commands.txt         |  17 +-
 hmp-commands.hx               |  15 ++
 hmp.c                         |  16 ++
 hmp.h                         |   1 +
 include/migration/colo.h      |  38 +++
 include/migration/failover.h  |  26 +++
 include/migration/migration.h |   8 +
 migration/Makefile.objs       |   2 +
 migration/colo-comm.c         |  72 ++++++
 migration/colo-failover.c     |  83 +++++++
 migration/colo.c              | 529 ++++++++++++++++++++++++++++++++++++++++++
 migration/migration.c         |  84 ++++++-
 migration/ram.c               |  37 ++-
 migration/trace-events        |   6 +
 qapi-schema.json              | 100 +++++++-
 stubs/Makefile.objs           |   1 +
 stubs/migration-colo.c        |  46 ++++
 vl.c                          |  11 +
 21 files changed, 1279 insertions(+), 21 deletions(-)
 create mode 100644 docs/COLO-FT.txt
 create mode 100644 include/migration/colo.h
 create mode 100644 include/migration/failover.h
 create mode 100644 migration/colo-comm.c
 create mode 100644 migration/colo-failover.c
 create mode 100644 migration/colo.c
 create mode 100644 stubs/migration-colo.c

Comments

Peter Maydell Oct. 31, 2016, 1:57 p.m. UTC | #1
On 30 October 2016 at 10:46, Amit Shah <amit.shah@redhat.com> wrote:
> From: Amit Shah <amit@amitshah.net>
>
> The following changes since commit 5b2ecabaeabc17f032197246c4846b9ba95ba8a6:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20161028-1' into staging (2016-10-28 17:59:04 +0100)
>
> are available in the git repository at:
>
>   https://git.kernel.org/pub/scm/virt/qemu/amit/migration.git tags/migration-for-2.8
>
> for you to fetch changes up to a4cc318e15955b4b9c7231c37128d4e7466d4307:
>
>   MAINTAINERS: Add maintainer for COLO framework related files (2016-10-30 15:17:39 +0530)
>
> ----------------------------------------------------------------
> Migration bits from the COLO project
>

Applied, thanks.

-- PMM