All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/18] ppc-for-2.7 queue 20160617
@ 2016-06-17  6:36 David Gibson
  2016-06-17  6:36 ` [Qemu-devel] [PULL 01/18] hw/ppc/spapr: Silence deprecation message in qtest mode David Gibson
                   ` (18 more replies)
  0 siblings, 19 replies; 24+ messages in thread
From: David Gibson @ 2016-06-17  6:36 UTC (permalink / raw)
  To: peter.maydell
  Cc: agraf, aik, bharata, imammedo, mdroth, qemu-ppc, qemu-devel,
	David Gibson

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

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

end of thread, other threads:[~2017-01-30 11:53 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-17  6:36 [Qemu-devel] [PULL 00/18] ppc-for-2.7 queue 20160617 David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 01/18] hw/ppc/spapr: Silence deprecation message in qtest mode David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 02/18] ppc / sparc: Add a tester for checking whether OpenBIOS runs successfully David Gibson
2016-06-17 13:13   ` Thomas Huth
2016-06-17  6:36 ` [Qemu-devel] [PULL 03/18] target-ppc: Bug in BookE wait instruction David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 04/18] vfio: Fix broken EEH David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 05/18] target-ppc: Fix rlwimi, rlwinm, rlwnm David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 06/18] qdev: hotplug: Introduce HotplugHandler.pre_plug() callback David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 07/18] cpu: Abstract CPU core type David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 08/18] xics, xics_kvm: Handle CPU unplug correctly David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 09/18] spapr_drc: Prevent detach racing against attach for CPU DR David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 10/18] qom: API to get instance_size of a type David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 11/18] spapr: Abstract CPU core device and type specific core devices David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 12/18] spapr: Move spapr_cpu_init() to spapr_cpu_core.c David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 13/18] spapr: convert boot CPUs into CPU core devices David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 14/18] spapr: CPU hotplug support David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 15/18] spapr: CPU hot unplug support David Gibson
2017-01-26 11:32   ` Igor Mammedov
2017-01-26 14:26     ` Bharata B Rao
2017-01-30 11:53       ` Igor Mammedov
2016-06-17  6:36 ` [Qemu-devel] [PULL 16/18] QMP: Add query-hotpluggable-cpus David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 17/18] hmp: Add 'info hotpluggable-cpus' HMP command David Gibson
2016-06-17  6:36 ` [Qemu-devel] [PULL 18/18] spapr: implement query-hotpluggable-cpus callback David Gibson
2016-06-17 12:35 ` [Qemu-devel] [PULL 00/18] ppc-for-2.7 queue 20160617 Peter Maydell

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.