qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 00/18] ppc-for-2.7 queue 20160617


From: David Gibson
Subject: [Qemu-devel] [PULL 00/18] ppc-for-2.7 queue 20160617
Date: Fri, 17 Jun 2016 16:36:21 +1000

The following changes since commit 585fcd4b11070b3220685fc54ecca1991cdeb161:

  Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging 
(2016-06-16 17:58:45 +0100)

are available in the git repository at:

  git://github.com/dgibson/qemu.git tags/ppc-for-2.7-20160617

for you to fetch changes up to 2474bfd4603b2d354fdb4001b083b7c72bff627f:

  spapr: implement query-hotpluggable-cpus callback (2016-06-17 16:33:49 +1000)

----------------------------------------------------------------
ppc patch queue for 2016-06-17

Here's the current accumulated set of spapr, ppc and related patches.
  * The big thing in here is CPU hotplug for spapr
    - This includes a number of acked generic changes adding new
      infrastructure for hotplugging cpu cores
  * A number of TCG bug fixes are also included
  * This adds a new testcase to make it harder to accidentally break
    Macintosh (and other openbios) platforms

----------------------------------------------------------------
Bharata B Rao (10):
      cpu: Abstract CPU core type
      xics,xics_kvm: Handle CPU unplug correctly
      spapr_drc: Prevent detach racing against attach for CPU DR
      qom: API to get instance_size of a type
      spapr: Abstract CPU core device and type specific core devices
      spapr: Move spapr_cpu_init() to spapr_cpu_core.c
      spapr: convert boot CPUs into CPU core devices
      spapr: CPU hotplug support
      spapr: CPU hot unplug support
      hmp: Add 'info hotpluggable-cpus' HMP command

Gavin Shan (1):
      vfio: Fix broken EEH

Igor Mammedov (3):
      qdev: hotplug: Introduce HotplugHandler.pre_plug() callback
      QMP: Add query-hotpluggable-cpus
      spapr: implement query-hotpluggable-cpus callback

Jakub Horak (1):
      target-ppc: Bug in BookE wait instruction

Richard Henderson (1):
      target-ppc: Fix rlwimi, rlwinm, rlwnm

Thomas Huth (2):
      hw/ppc/spapr: Silence deprecation message in qtest mode
      ppc / sparc: Add a tester for checking whether OpenBIOS runs successfully

 hmp-commands-info.hx            |  14 ++
 hmp.c                           |  42 +++++
 hmp.h                           |   1 +
 hw/core/hotplug.c               |  11 ++
 hw/core/qdev.c                  |   9 +-
 hw/cpu/Makefile.objs            |   1 +
 hw/cpu/core.c                   |  88 +++++++++
 hw/intc/xics.c                  |  14 ++
 hw/intc/xics_kvm.c              |   8 +-
 hw/ppc/Makefile.objs            |   1 +
 hw/ppc/spapr.c                  | 218 +++++++++++++++------
 hw/ppc/spapr_cpu_core.c         | 405 ++++++++++++++++++++++++++++++++++++++++
 hw/ppc/spapr_drc.c              |  12 ++
 hw/ppc/spapr_events.c           |   3 +
 hw/ppc/spapr_pci_vfio.c         |   5 +-
 hw/ppc/spapr_rtas.c             |  24 +++
 hw/vfio/common.c                |   2 +-
 include/hw/boards.h             |   5 +
 include/hw/cpu/core.h           |  31 +++
 include/hw/hotplug.h            |  14 +-
 include/hw/ppc/spapr.h          |   7 +
 include/hw/ppc/spapr_cpu_core.h |  36 ++++
 include/hw/ppc/spapr_drc.h      |   1 +
 include/hw/ppc/xics.h           |   1 +
 include/qom/object.h            |   8 +-
 monitor.c                       |  13 ++
 qapi-schema.json                |  55 ++++++
 qmp-commands.hx                 |  23 +++
 qom/object.c                    |   8 +
 target-ppc/kvm.c                |  28 +++
 target-ppc/translate.c          |  75 +++++---
 tests/Makefile.include          |   6 +
 tests/prom-env-test.c           |  90 +++++++++
 33 files changed, 1169 insertions(+), 90 deletions(-)
 create mode 100644 hw/cpu/core.c
 create mode 100644 hw/ppc/spapr_cpu_core.c
 create mode 100644 include/hw/cpu/core.h
 create mode 100644 include/hw/ppc/spapr_cpu_core.h
 create mode 100644 tests/prom-env-test.c



reply via email to

[Prev in Thread] Current Thread [Next in Thread]