All of lore.kernel.org
 help / color / mirror / Atom feed
From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 0/6] migration queue
Date: Thu, 15 May 2014 03:40:01 +0200	[thread overview]
Message-ID: <1400118007-17539-1-git-send-email-quintela@redhat.com> (raw)

Hi peter

This pull request includes:
- split ram_save_block into two functions (David)
- simplify code for load_xbzrle (Chen)
- fix usb tests (fix on top of previous fixes)) (mst)
- calculate at time of printing throughput (peter)
- cleanup rest & usb devices version_minimum_id_old (qunitela)

Please, apply.

The following changes since commit f30d56e7d63fe2f536511bffa13306bec2e01c37:

  Merge remote-tracking branch 'remotes/rth/fix-i386' into staging (2014-05-13 18:36:19 +0100)

are available in the git repository at:


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

for you to fetch changes up to 719ffe1f5f72b1c7ace4afe9ba2815bcb53a829e:

  usb: fix up post load checks (2014-05-14 15:24:52 +0200)

----------------------------------------------------------------
migration/next for 20140515

----------------------------------------------------------------
Chen Gang (1):
      arch_init: Simplify code for load_xbzrle()

Dr. David Alan Gilbert (1):
      Split ram_save_block

Juan Quintela (2):
      savevm: Remove all the unneeded version_minimum_id_old (usb)
      savevm: Remove all the unneeded version_minimum_id_old (rest)

Michael S. Tsirkin (1):
      usb: fix up post load checks

Peter Lieven (1):
      migration: show average throughput when migration finishes

 arch_init.c                  | 155 +++++++++++++++++++++++--------------------
 audio/audio.c                |   3 +-
 cpus.c                       |   3 +-
 docs/migration.txt           |   6 +-
 exec.c                       |   3 +-
 hw/audio/milkymist-ac97.c    |   3 +-
 hw/block/m25p80.c            |   1 -
 hw/char/ipoctal232.c         |   9 +--
 hw/char/lm32_juart.c         |   3 +-
 hw/char/lm32_uart.c          |   3 +-
 hw/char/milkymist-uart.c     |   3 +-
 hw/char/sclpconsole-lm.c     |   3 +-
 hw/char/sclpconsole.c        |   3 +-
 hw/core/ptimer.c             |   3 +-
 hw/display/cg3.c             |   2 +-
 hw/display/g364fb.c          |   1 -
 hw/display/jazz_led.c        |   1 -
 hw/display/milkymist-tmu2.c  |   3 +-
 hw/display/milkymist-vgafb.c |   3 +-
 hw/display/tcx.c             |   3 +-
 hw/dma/sparc32_dma.c         |   3 +-
 hw/dma/sun4m_iommu.c         |   3 +-
 hw/i2c/core.c                |   6 +-
 hw/i2c/smbus_ich9.c          |   1 -
 hw/ide/core.c                |  16 ++---
 hw/ide/macio.c               |   3 +-
 hw/ide/microdrive.c          |   3 +-
 hw/ide/mmio.c                |   3 +-
 hw/input/adb.c               |   6 +-
 hw/input/milkymist-softusb.c |   3 +-
 hw/intc/lm32_pic.c           |   3 +-
 hw/intc/slavio_intctl.c      |   6 +-
 hw/ipack/ipack.c             |   3 +-
 hw/ipack/tpci200.c           |   3 +-
 hw/misc/eccmemctl.c          |   3 +-
 hw/misc/lm32_sys.c           |   3 +-
 hw/misc/macio/cuda.c         |   6 +-
 hw/misc/macio/mac_dbdma.c    |   6 +-
 hw/misc/milkymist-hpdmc.c    |   3 +-
 hw/misc/milkymist-pfpu.c     |   3 +-
 hw/misc/slavio_misc.c        |   3 +-
 hw/net/lance.c               |   3 +-
 hw/net/milkymist-minimac2.c  |   6 +-
 hw/net/mipsnet.c             |   3 +-
 hw/nvram/ds1225y.c           |   1 -
 hw/nvram/mac_nvram.c         |   3 +-
 hw/pci-host/bonito.c         |   3 +-
 hw/s390x/event-facility.c    |   3 +-
 hw/s390x/sclpquiesce.c       |   3 +-
 hw/scsi/esp-pci.c            |   1 -
 hw/scsi/esp.c                |   4 +-
 hw/sd/milkymist-memcard.c    |   3 +-
 hw/sd/sdhci.c                |   2 +-
 hw/timer/lm32_timer.c        |   3 +-
 hw/timer/milkymist-sysctl.c  |   3 +-
 hw/timer/slavio_timer.c      |   6 +-
 hw/usb/bus.c                 |   6 +-
 hw/usb/dev-hid.c             |   4 +-
 hw/usb/dev-hub.c             |   4 +-
 hw/usb/dev-storage.c         |   2 +-
 hw/usb/hcd-ehci-pci.c        |   2 +-
 hw/usb/hcd-ehci-sysbus.c     |   2 +-
 hw/usb/hcd-ehci.c            |   2 +-
 hw/usb/hcd-uhci.c            |   6 +-
 migration.c                  |   5 ++
 target-alpha/machine.c       |   2 -
 target-lm32/machine.c        |   6 +-
 target-moxie/machine.c       |   3 +-
 target-openrisc/machine.c    |   2 -
 tests/test-vmstate.c         |   9 +--
 70 files changed, 171 insertions(+), 234 deletions(-)

             reply	other threads:[~2014-05-15  2:22 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-15  1:40 Juan Quintela [this message]
2014-05-15  1:40 ` [Qemu-devel] [PULL 1/6] arch_init: Simplify code for load_xbzrle() Juan Quintela
2014-05-15  1:40 ` [Qemu-devel] [PULL 2/6] Split ram_save_block Juan Quintela
2014-05-15  1:40 ` [Qemu-devel] [PULL 3/6] savevm: Remove all the unneeded version_minimum_id_old (usb) Juan Quintela
2014-05-15  1:40 ` [Qemu-devel] [PULL 4/6] savevm: Remove all the unneeded version_minimum_id_old (rest) Juan Quintela
2014-05-15  1:40 ` [Qemu-devel] [PULL 5/6] migration: show average throughput when migration finishes Juan Quintela
2014-05-15  2:07   ` Eric Blake
2014-05-15  1:40 ` [Qemu-devel] [PULL 6/6] usb: fix up post load checks Juan Quintela
2014-05-15 17:04 ` [Qemu-devel] [PULL 0/6] migration queue Peter Maydell
2014-06-16  3:15 Juan Quintela
2014-06-16 10:39 ` Peter Maydell
2018-03-09 17:54 Dr. David Alan Gilbert (git)
2018-03-12 14:06 ` 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=1400118007-17539-1-git-send-email-quintela@redhat.com \
    --to=quintela@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.