qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/17] ppc-for-2.10 queue 20170606
@ 2017-06-06  2:51 David Gibson
  2017-06-06  2:51 ` [Qemu-devel] [PULL 01/17] migration: remove register_savevm() David Gibson
                   ` (17 more replies)
  0 siblings, 18 replies; 22+ messages in thread
From: David Gibson @ 2017-06-06  2:51 UTC (permalink / raw)
  To: peter.maydell; +Cc: agraf, qemu-ppc, qemu-devel, mdroth, David Gibson

The following changes since commit 199e19ee538eb61fd08b1c1ee5aa838ebdcc968e:

  Merge remote-tracking branch 'remotes/mjt/tags/trivial-patches-fetch' into staging (2017-06-05 15:28:12 +0100)

are available in the git repository at:

  git://github.com/dgibson/qemu.git tags/ppc-for-2.10-20170606

for you to fetch changes up to 91dcb1ffa67cfa41a13dcc89dd44e2310b5773b0:

  spapr: Remove some non-useful properties on DRC objects (2017-06-06 09:24:25 +1000)

----------------------------------------------------------------
ppc patch queue 2017-06-06

Accumulated patches for ppc targets and the pseries machine type.

The big thing in this batch is a start on a substantial cleanup of the
pseries hotplug mechanisms, which were pretty confusing.  For now
these shouldn't cause substantial behavioural changes, but I am hoping
these lead to clearer code and eventually to fixes for the bugs we
have in hotplug handling, particularly when hotplug and migration are
combined.

The remaining patches are mostly bugfixes.

----------------------------------------------------------------
Aaron Larson (1):
      target-ppc: Fix openpic timer read register offset

Cédric Le Goater (1):
      ppc/pnv: check the return value of fdt_setprop()

David Gibson (10):
      migration: Mark CPU states dirty before incoming migration/loadvm
      spapr: Move DRC RTAS calls into spapr_drc.c
      spapr: Abolish DRC get_fdt method
      spapr: Abolish DRC set_configured method
      spapr: Make DRC get_index and get_type methods into plain functions
      spapr: Introduce DRC subclasses
      spapr: Clean up spapr_dr_connector_by_*()
      spapr: Move configure-connector state into DRC
      spapr: Eliminate spapr_drc_get_type_str()
      spapr: Remove some non-useful properties on DRC objects

Felipe Franciosi (1):
      spapr: Allow boot from vhost-*-scsi backends

Greg Kurz (1):
      spapr/drc: don't migrate DRC of cold-plugged CPUs and LMBs

Laurent Vivier (1):
      migration: remove register_savevm()

Peter Maydell (1):
      spapr_nvram: Check return value from blk_getlength()

Suraj Jitindar Singh (1):
      target/ppc: Fixup set_spr error in h_register_process_table

 cpus.c                      |   9 +
 hw/intc/openpic.c           |  22 +-
 hw/net/vmxnet3.c            |   8 +-
 hw/nvram/spapr_nvram.c      |  10 +-
 hw/ppc/pnv.c                |   5 +-
 hw/ppc/spapr.c              |  58 +++--
 hw/ppc/spapr_drc.c          | 573 +++++++++++++++++++++++++++++++-------------
 hw/ppc/spapr_events.c       |  12 +-
 hw/ppc/spapr_hcall.c        |   5 +-
 hw/ppc/spapr_pci.c          |  13 +-
 hw/ppc/spapr_rtas.c         | 304 -----------------------
 hw/s390x/s390-skeys.c       |   9 +-
 hw/s390x/s390-virtio-ccw.c  |   8 +-
 include/hw/ppc/spapr.h      |  14 --
 include/hw/ppc/spapr_drc.h  |  69 +++++-
 include/migration/vmstate.h |   8 -
 include/sysemu/cpus.h       |   1 +
 include/sysemu/hax.h        |   1 +
 include/sysemu/hw_accel.h   |  10 +
 include/sysemu/kvm.h        |   1 +
 kvm-all.c                   |  10 +
 migration/savevm.c          |  18 +-
 slirp/slirp.c               |   8 +-
 target/i386/hax-all.c       |  10 +
 24 files changed, 595 insertions(+), 591 deletions(-)

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

end of thread, other threads:[~2017-06-07  8:08 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-06  2:51 [Qemu-devel] [PULL 00/17] ppc-for-2.10 queue 20170606 David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 01/17] migration: remove register_savevm() David Gibson
2017-06-06 17:49   ` Peter Maydell
2017-06-06 22:14     ` Paolo Bonzini
2017-06-07  8:07     ` Juan Quintela
2017-06-06  2:51 ` [Qemu-devel] [PULL 02/17] migration: Mark CPU states dirty before incoming migration/loadvm David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 03/17] spapr: Move DRC RTAS calls into spapr_drc.c David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 04/17] spapr: Abolish DRC get_fdt method David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 05/17] spapr: Abolish DRC set_configured method David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 06/17] spapr: Make DRC get_index and get_type methods into plain functions David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 07/17] target-ppc: Fix openpic timer read register offset David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 08/17] target/ppc: Fixup set_spr error in h_register_process_table David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 09/17] spapr_nvram: Check return value from blk_getlength() David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 10/17] ppc/pnv: check the return value of fdt_setprop() David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 11/17] spapr: Allow boot from vhost-*-scsi backends David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 12/17] spapr/drc: don't migrate DRC of cold-plugged CPUs and LMBs David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 13/17] spapr: Introduce DRC subclasses David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 14/17] spapr: Clean up spapr_dr_connector_by_*() David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 15/17] spapr: Move configure-connector state into DRC David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 16/17] spapr: Eliminate spapr_drc_get_type_str() David Gibson
2017-06-06  2:51 ` [Qemu-devel] [PULL 17/17] spapr: Remove some non-useful properties on DRC objects David Gibson
2017-06-06 14:37 ` [Qemu-devel] [PULL 00/17] ppc-for-2.10 queue 20170606 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).