qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Laurent Vivier" <lvivier@redhat.com>,
	"Corey Minyard" <cminyard@mvista.com>,
	"Thomas Huth" <thuth@redhat.com>,
	"Daniel P. Berrangé" <berrange@redhat.com>,
	"Eduardo Habkost" <ehabkost@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Peter Maydell" <peter.maydell@linaro.org>,
	"Stefan Weil" <sw@weilnetz.de>,
	"Jason Wang" <jasowang@redhat.com>,
	"Juan Quintela" <quintela@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	qemu-arm@nongnu.org, qemu-ppc@nongnu.org,
	"David Gibson" <david@gibson.dropbear.id.au>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Richard Henderson" <rth@twiddle.net>,
	"Stefan Berger" <stefanb@linux.ibm.com>
Subject: [PULL 00/29] Migration pull patches
Date: Mon, 20 Jan 2020 11:33:11 +0100	[thread overview]
Message-ID: <20200120103340.25118-1-quintela@redhat.com> (raw)

The following changes since commit 7fb38daf256bd1bcbcb5ea556422283d0d55a1b1:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20200117-1' into staging (2020-01-17 17:27:20 +0000)

are available in the Git repository at:

  https://github.com/juanquintela/qemu.git tags/migration-pull-pull-request

for you to fetch changes up to ddac5cb2d95774cd019bfaf93c54ffd921095fea:

  multifd: Be consistent about using uint64_t (2020-01-20 09:17:07 +0100)

----------------------------------------------------------------
Migration pull request (take 5)

Making history short:

* having your machine named x32 to really be a 32bit guest helps for
  testing 32bits
* disabling CONFIG_XEN on i686 makes rdma_addr_t be a 32bit value

After this, and patch sent on Friday, I got this pull request to:
* compile on x86_64
* pass tests on x86_64
* compile on i686
* pass tests on i686 (with rdma_dma_t 32 bits)
* cross-compile for windows 32bits
* cross-compile for windows 64bits

Please apply, Juan.

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

Alexey Romko (1):
  Bug #1829242 correction.

Daniel Henrique Barboza (1):
  ram.c: remove unneeded labels

Dr. David Alan Gilbert (1):
  migration: Rate limit inside host pages

Eric Auger (1):
  migration: Support QLIST migration

Fangrui Song (1):
  migration: Fix incorrect integer->float conversion caught by clang

Jiahui Cen (2):
  migration/multifd: fix nullptr access in terminating multifd threads
  migration/multifd: fix destroyed mutex access in terminating multifd
    threads

Juan Quintela (5):
  multifd: Initialize local variable
  migration-test: Add migration multifd test
  migration: Make sure that we don't call write() in case of error
  migration-test: introduce functions to handle string parameters
  multifd: Be consistent about using uint64_t

Laurent Vivier (1):
  runstate: ignore finishmigrate -> prelaunch transition

Marc-André Lureau (1):
  misc: use QEMU_IS_ALIGNED

Peter Xu (3):
  migration: Define VMSTATE_INSTANCE_ID_ANY
  migration: Change SaveStateEntry.instance_id into uint32_t
  apic: Use 32bit APIC ID for migration instance ID

Scott Cheloha (2):
  migration: add savevm_state_handler_remove()
  migration: savevm_state_handler_insert: constant-time element
    insertion

Wei Yang (8):
  migration/postcopy: reduce memset when it is zero page and
    matches_target_page_size
  migration/postcopy: wait for decompress thread in precopy
  migration/postcopy: count target page number to decide the
    place_needed
  migration/postcopy: set all_zero to true on the first target page
  migration/postcopy: enable random order target page arrival
  migration/postcopy: enable compress during postcopy
  migration/multifd: clean pages after filling packet
  migration/multifd: not use multifd during postcopy

Yury Kotov (2):
  migration: Fix the re-run check of the migrate-incoming command
  migration/ram: Yield periodically to the main loop

 backends/dbus-vmstate.c      |   3 +-
 exec.c                       |   4 +-
 hw/arm/stellaris.c           |   2 +-
 hw/core/qdev.c               |   3 +-
 hw/display/ads7846.c         |   2 +-
 hw/i2c/core.c                |   2 +-
 hw/input/stellaris_input.c   |   3 +-
 hw/intc/apic_common.c        |   7 +-
 hw/misc/max111x.c            |   3 +-
 hw/net/eepro100.c            |   3 +-
 hw/pci/pci.c                 |   2 +-
 hw/ppc/spapr.c               |   2 +-
 hw/timer/arm_timer.c         |   2 +-
 hw/tpm/tpm_emulator.c        |   3 +-
 include/migration/register.h |   2 +-
 include/migration/vmstate.h  |  25 ++++-
 include/qemu/queue.h         |  39 +++++++
 migration/migration.c        |  72 ++++++-------
 migration/migration.h        |   1 +
 migration/ram.c              | 196 +++++++++++++++++++++++++----------
 migration/savevm.c           |  61 ++++++++---
 migration/trace-events       |   9 +-
 migration/vmstate-types.c    |  70 +++++++++++++
 stubs/vmstate.c              |   2 +-
 tests/qtest/migration-test.c |  93 +++++++++++++++++
 tests/test-vmstate.c         | 170 ++++++++++++++++++++++++++++++
 vl.c                         |  10 +-
 27 files changed, 659 insertions(+), 132 deletions(-)

-- 
2.24.1



             reply	other threads:[~2020-01-20 10:38 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-20 10:33 Juan Quintela [this message]
2020-01-20 10:33 ` [PULL 01/29] multifd: Initialize local variable Juan Quintela
2020-01-20 10:33 ` [PULL 02/29] migration-test: Add migration multifd test Juan Quintela
2020-01-20 10:33 ` [PULL 03/29] migration: Make sure that we don't call write() in case of error Juan Quintela
2020-01-20 10:33 ` [PULL 04/29] migration-test: introduce functions to handle string parameters Juan Quintela
2020-01-20 10:33 ` [PULL 05/29] runstate: ignore finishmigrate -> prelaunch transition Juan Quintela
2020-01-20 10:33 ` [PULL 06/29] ram.c: remove unneeded labels Juan Quintela
2020-01-20 10:33 ` [PULL 07/29] migration: Rate limit inside host pages Juan Quintela
2020-01-20 10:33 ` [PULL 08/29] migration: Fix incorrect integer->float conversion caught by clang Juan Quintela
2020-01-20 10:33 ` [PULL 09/29] migration: Fix the re-run check of the migrate-incoming command Juan Quintela
2020-01-20 10:33 ` [PULL 10/29] misc: use QEMU_IS_ALIGNED Juan Quintela
2020-01-20 10:33 ` [PULL 11/29] migration: add savevm_state_handler_remove() Juan Quintela
2020-01-20 10:33 ` [PULL 12/29] migration: savevm_state_handler_insert: constant-time element insertion Juan Quintela
2020-01-20 10:33 ` [PULL 13/29] migration/ram: Yield periodically to the main loop Juan Quintela
2020-01-20 10:33 ` [PULL 14/29] migration/postcopy: reduce memset when it is zero page and matches_target_page_size Juan Quintela
2020-01-20 10:33 ` [PULL 15/29] migration/postcopy: wait for decompress thread in precopy Juan Quintela
2020-01-20 10:33 ` [PULL 16/29] migration/postcopy: count target page number to decide the place_needed Juan Quintela
2020-01-20 10:33 ` [PULL 17/29] migration/postcopy: set all_zero to true on the first target page Juan Quintela
2020-01-20 10:33 ` [PULL 18/29] migration/postcopy: enable random order target page arrival Juan Quintela
2020-01-20 10:33 ` [PULL 19/29] migration/postcopy: enable compress during postcopy Juan Quintela
2020-01-20 10:33 ` [PULL 20/29] migration/multifd: clean pages after filling packet Juan Quintela
2020-01-20 10:33 ` [PULL 21/29] migration/multifd: not use multifd during postcopy Juan Quintela
2020-01-20 10:33 ` [PULL 22/29] migration/multifd: fix nullptr access in terminating multifd threads Juan Quintela
2020-01-20 10:33 ` [PULL 23/29] migration/multifd: fix destroyed mutex " Juan Quintela
2020-01-20 10:33 ` [PULL 24/29] Bug #1829242 correction Juan Quintela
2020-01-20 10:33 ` [PULL 25/29] migration: Define VMSTATE_INSTANCE_ID_ANY Juan Quintela
2020-01-20 10:33 ` [PULL 26/29] migration: Change SaveStateEntry.instance_id into uint32_t Juan Quintela
2020-01-20 10:33 ` [PULL 27/29] apic: Use 32bit APIC ID for migration instance ID Juan Quintela
2020-01-20 10:33 ` [PULL 28/29] migration: Support QLIST migration Juan Quintela
2020-01-20 10:33 ` [PULL 29/29] multifd: Be consistent about using uint64_t Juan Quintela
2020-01-20 12:16 ` [PULL 00/29] Migration pull patches Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200120103340.25118-1-quintela@redhat.com \
    --to=quintela@redhat.com \
    --cc=berrange@redhat.com \
    --cc=cminyard@mvista.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=dgilbert@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=jasowang@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=stefanb@linux.ibm.com \
    --cc=sw@weilnetz.de \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).