qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/9] migration queue
@ 2013-09-24 12:03 Juan Quintela
  2013-09-24 12:03 ` [Qemu-devel] [PATCH 1/9] savevm: add comments for qemu_file_get_error() Juan Quintela
                   ` (8 more replies)
  0 siblings, 9 replies; 15+ messages in thread
From: Juan Quintela @ 2013-09-24 12:03 UTC (permalink / raw)
  To: qemu-devel; +Cc: anthony

Hi Anthony

This are the migration patches on the list at the moment, could you apply?

* cleanup patches from Isaku
* change is_zero_page() prototype
* cleanups from Lei Li
* cleanup from Christoffer Dall
* new VMSTATE macro from Alexey

They are quite easy, passed virt-test without trouble.


Thanks, Juan.

The following changes since commit f828a4c8faa118e0ebab3e353ac6840f3b2a0318:

  Merge remote-tracking branch 'stefanha/tracing' into staging (2013-09-23 11:53:22 -0500)

are available in the git repository at:


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

for you to fetch changes up to d613a56f845788412a442c6b5aff88b38244f99a:

  migration: ram_handle_compressed (2013-09-24 13:22:50 +0200)

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      migration: add version supporting macros for struct pointer

Christoffer Dall (1):
      migration: Fix debug print type

Isaku Yamahata (4):
      rdma: clean up of qemu_rdma_cleanup()
      rdma: constify ram_chunk_{index, start, end}
      arch_init: make is_zero_page accept size
      migration: ram_handle_compressed

Lei Li (3):
      savevm: add comments for qemu_file_get_error()
      savevm: fix wrong initialization by ram_control_load_hook
      arch_init: right return for ram_save_iterate

 arch_init.c                 | 33 +++++++++++++++++++--------------
 include/migration/vmstate.h | 17 +++++++++++++++--
 migration-rdma.c            | 17 +++++++++++------
 migration.c                 |  3 ++-
 savevm.c                    |  9 ++++++++-
 5 files changed, 55 insertions(+), 24 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [Qemu-devel] [PULL 0/9] migration queue
@ 2017-07-10 17:10 Dr. David Alan Gilbert (git)
  2017-07-11  9:00 ` Peter Maydell
  0 siblings, 1 reply; 15+ messages in thread
From: Dr. David Alan Gilbert (git) @ 2017-07-10 17:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: quintela, lvivier, peterx

From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>

The following changes since commit 6b06e3e49eb8c91cc286c16d6bf3181ac296f33d:

  Merge remote-tracking branch 'remotes/ericb/tags/pull-nbd-2017-07-10-v2' into staging (2017-07-10 16:12:47 +0100)

are available in the git repository at:

  git://github.com/dagrh/qemu.git tags/pull-migration-20170710a

for you to fetch changes up to f0afa331ce670ba39bde3f5620d75dcd56890cb6:

  migration: Make compression_threads use save/load_setup/cleanup() (2017-07-10 17:52:21 +0100)

----------------------------------------------------------------
Migration pull 2017-07-10

----------------------------------------------------------------
Juan Quintela (5):
      migration: Rename save_live_setup() to save_setup()
      migration: Rename cleanup() to save_cleanup()
      migration: Create load_setup()/cleanup() methods
      migration: Convert ram to use new load_setup()/load_cleanup()
      migration: Make compression_threads use save/load_setup/cleanup()

Peter Xu (4):
      migration: fix handling for --only-migratable
      vl: move global property, migrate init earlier
      doc: add item for "-M enforce-config-section"
      doc: update TYPE_MIGRATION documents

 hw/ppc/spapr.c               |  6 ++---
 include/migration/misc.h     |  1 -
 include/migration/register.h |  6 +++--
 migration/block.c            |  4 +--
 migration/colo.c             |  2 +-
 migration/migration.c        | 27 +++++--------------
 migration/ram.c              | 63 +++++++++++++++++++++++++++++++-------------
 migration/ram.h              |  6 -----
 migration/savevm.c           | 61 +++++++++++++++++++++++++++++++++++-------
 migration/savevm.h           |  3 ++-
 migration/trace-events       |  4 ++-
 qemu-options.hx              |  6 +++++
 vl.c                         | 26 +++++++++---------
 13 files changed, 138 insertions(+), 77 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [Qemu-devel] [PULL 0/9] migration queue
@ 2019-01-23 15:58 Dr. David Alan Gilbert (git)
  2019-01-24 15:04 ` Peter Maydell
  0 siblings, 1 reply; 15+ messages in thread
From: Dr. David Alan Gilbert (git) @ 2019-01-23 15:58 UTC (permalink / raw)
  To: qemu-devel
  Cc: quintela, peterx, xiaoguangrong, marcandre.lureau, shirley17fei,
	lifei1214

From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>

The following changes since commit 9f33051abce238ab43a23125e237aac8b0931b88:

  Merge remote-tracking branch 'remotes/kraxel/tags/ipxe-20190122-pull-request' into staging (2019-01-22 19:24:10 +0000)

are available in the Git repository at:

  git://github.com/dagrh/qemu.git tags/pull-migration-20190123a

for you to fetch changes up to aecbfe9c64a6005f57b2132eb29db2ba7c0993fe:

  migration: introduce pages-per-second (2019-01-23 15:51:47 +0000)

----------------------------------------------------------------
Migration pull 2019-01-23

New pages-per-second stat, a new test, and a bunch
of fixes and tidy ups.

----------------------------------------------------------------
Dr. David Alan Gilbert (1):
      migration/rdma: unregister fd handler

Fei Li (5):
      Fix segmentation fault when qemu_signal_init fails
      migration: fix the multifd code when receiving less channels
      migration: multifd_save_cleanup() can't fail, simplify
      migration: add more error handling for postcopy_ram_enable_notify
      migration: unify error handling for process_incoming_migration_co

Marc-André Lureau (2):
      tests: add /vmstate/simple/array
      vmstate: constify SaveVMHandlers

Xiao Guangrong (1):
      migration: introduce pages-per-second

 hmp.c                        |  2 ++
 include/migration/register.h |  2 +-
 migration/channel.c          | 11 +++++-----
 migration/migration.c        | 51 +++++++++++++++++++++++++++-----------------
 migration/migration.h        | 12 +++++++++--
 migration/postcopy-ram.c     |  1 +
 migration/ram.c              | 34 ++++++++++++++++++++---------
 migration/ram.h              |  4 ++--
 migration/rdma.c             |  1 +
 migration/savevm.c           |  5 +++--
 qapi/migration.json          |  5 ++++-
 tests/test-vmstate.c         | 50 +++++++++++++++++++++++++++++++++++++++++++
 util/main-loop.c             |  8 +++----
 13 files changed, 139 insertions(+), 47 deletions(-)

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

end of thread, other threads:[~2019-01-24 15:04 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-24 12:03 [Qemu-devel] [PULL 0/9] migration queue Juan Quintela
2013-09-24 12:03 ` [Qemu-devel] [PATCH 1/9] savevm: add comments for qemu_file_get_error() Juan Quintela
2013-09-24 12:03 ` [Qemu-devel] [PATCH 2/9] savevm: fix wrong initialization by ram_control_load_hook Juan Quintela
2013-09-24 12:03 ` [Qemu-devel] [PATCH 3/9] arch_init: right return for ram_save_iterate Juan Quintela
2013-09-24 12:03 ` [Qemu-devel] [PATCH 4/9] rdma: clean up of qemu_rdma_cleanup() Juan Quintela
2013-09-24 12:03 ` [Qemu-devel] [PATCH 5/9] rdma: constify ram_chunk_{index, start, end} Juan Quintela
2013-09-24 12:03 ` [Qemu-devel] [PATCH 6/9] migration: add version supporting macros for struct pointer Juan Quintela
2013-09-24 12:03 ` [Qemu-devel] [PATCH 7/9] migration: Fix debug print type Juan Quintela
2013-09-24 12:03 ` [Qemu-devel] [PATCH 8/9] arch_init: make is_zero_page accept size Juan Quintela
2013-10-07  9:15   ` Peter Lieven
2013-09-24 12:03 ` [Qemu-devel] [PATCH 9/9] migration: ram_handle_compressed Juan Quintela
  -- strict thread matches above, loose matches on Subject: below --
2017-07-10 17:10 [Qemu-devel] [PULL 0/9] migration queue Dr. David Alan Gilbert (git)
2017-07-11  9:00 ` Peter Maydell
2019-01-23 15:58 Dr. David Alan Gilbert (git)
2019-01-24 15:04 ` Peter Maydell

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