qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/18] ppc-for-5.2 queue 20201028
@ 2020-10-27 14:17 David Gibson
  2020-10-27 14:17 ` [PULL 01/18] spapr: Clarify why DR connectors aren't user creatable David Gibson
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: David Gibson @ 2020-10-27 14:17 UTC (permalink / raw)
  To: peter.maydell; +Cc: David Gibson, qemu-ppc, qemu-devel, groug

The following changes since commit d55450df995d6223486db11c66491cbf6c131523:

  Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20201026a' into staging (2020-10-27 10:25:42 +0000)

are available in the Git repository at:

  git://github.com/dgibson/qemu.git tags/ppc-for-5.2-20201028

for you to fetch changes up to 136fbf654dd5fa88a5057dcc43947536f3b418df:

  ppc/: fix some comment spelling errors (2020-10-28 01:08:53 +1100)

----------------------------------------------------------------
ppc patch queue 2020-10-28

Here's the next pull request for ppc and spapr related patches, which
should be the last things for soft freeze.  Includes:

 * Numerous error handling cleanups from Greg Kurz
 * Cleanups to cpu realization and hotplug handling from Greg Kurz
 * A handful of other small fixes and cleanups

This does include a change to pc_dimm_plug() that isn't in my normal
areas of concern.  That's there as a a prerequisite for ppc specific
changes, and has an ack from Igor.

----------------------------------------------------------------
Elena Afanasova (1):
      hw/net: move allocation to the heap due to very large stack frame

Greg Kurz (15):
      spapr: Clarify why DR connectors aren't user creatable
      spapr: Move spapr_create_nvdimm_dr_connectors() to core machine code
      spapr: Fix leak of CPU machine specific data
      spapr: Unrealize vCPUs with qdev_unrealize()
      spapr: Drop spapr_delete_vcpu() unused argument
      spapr: Make spapr_cpu_core_unrealize() idempotent
      spapr: Simplify spapr_cpu_core_realize() and spapr_cpu_core_unrealize()
      pc-dimm: Drop @errp argument of pc_dimm_plug()
      spapr: Use appropriate getter for PC_DIMM_ADDR_PROP
      spapr: Use appropriate getter for PC_DIMM_SLOT_PROP
      spapr: Pass &error_abort when getting some PC DIMM properties
      spapr: Simplify error handling in spapr_memory_plug()
      spapr: Use error_append_hint() in spapr_reallocate_hpt()
      target/ppc: Fix kvmppc_load_htab_chunk() error reporting
      spapr: Improve spapr_reallocate_hpt() error reporting

Laurent Vivier (1):
      ppc/spapr: re-assert IRQs during event-scan if there are pending

zhaolichang (1):
      ppc/: fix some comment spelling errors

 accel/tcg/user-exec-stub.c      |  4 ++
 hw/arm/virt.c                   |  9 +----
 hw/i386/pc.c                    |  8 +---
 hw/mem/pc-dimm.c                |  2 +-
 hw/net/spapr_llan.c             |  5 ++-
 hw/ppc/spapr.c                  | 90 +++++++++++++++++++++--------------------
 hw/ppc/spapr_cpu_core.c         | 69 ++++++++++++++-----------------
 hw/ppc/spapr_drc.c              |  3 +-
 hw/ppc/spapr_events.c           | 12 ++++++
 hw/ppc/spapr_nvdimm.c           | 16 ++------
 include/hw/mem/pc-dimm.h        |  2 +-
 include/hw/ppc/spapr.h          |  3 +-
 include/hw/ppc/spapr_nvdimm.h   |  3 +-
 target/ppc/cpu.h                |  6 +--
 target/ppc/excp_helper.c        |  6 +--
 target/ppc/fpu_helper.c         |  2 +-
 target/ppc/internal.h           |  2 +-
 target/ppc/kvm.c                | 13 +++---
 target/ppc/kvm_ppc.h            |  5 ++-
 target/ppc/machine.c            |  2 +-
 target/ppc/mmu-hash64.c         |  2 +-
 target/ppc/mmu_helper.c         |  4 +-
 target/ppc/translate_init.c.inc |  4 +-
 23 files changed, 131 insertions(+), 141 deletions(-)


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

end of thread, other threads:[~2020-10-30 11:57 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-27 14:17 [PULL 00/18] ppc-for-5.2 queue 20201028 David Gibson
2020-10-27 14:17 ` [PULL 01/18] spapr: Clarify why DR connectors aren't user creatable David Gibson
2020-10-27 14:17 ` [PULL 02/18] ppc/spapr: re-assert IRQs during event-scan if there are pending David Gibson
2020-10-27 14:17 ` [PULL 03/18] hw/net: move allocation to the heap due to very large stack frame David Gibson
2020-10-27 14:17 ` [PULL 04/18] spapr: Move spapr_create_nvdimm_dr_connectors() to core machine code David Gibson
2020-10-27 14:17 ` [PULL 05/18] spapr: Fix leak of CPU machine specific data David Gibson
2020-10-27 14:17 ` [PULL 06/18] spapr: Unrealize vCPUs with qdev_unrealize() David Gibson
2020-10-27 14:17 ` [PULL 07/18] spapr: Drop spapr_delete_vcpu() unused argument David Gibson
2020-10-27 14:17 ` [PULL 08/18] spapr: Make spapr_cpu_core_unrealize() idempotent David Gibson
2020-10-27 14:17 ` [PULL 09/18] spapr: Simplify spapr_cpu_core_realize() and spapr_cpu_core_unrealize() David Gibson
2020-10-27 14:17 ` [PULL 10/18] pc-dimm: Drop @errp argument of pc_dimm_plug() David Gibson
2020-10-27 14:17 ` [PULL 11/18] spapr: Use appropriate getter for PC_DIMM_ADDR_PROP David Gibson
2020-10-27 14:17 ` [PULL 12/18] spapr: Use appropriate getter for PC_DIMM_SLOT_PROP David Gibson
2020-10-27 14:17 ` [PULL 13/18] spapr: Pass &error_abort when getting some PC DIMM properties David Gibson
2020-10-27 14:17 ` [PULL 14/18] spapr: Simplify error handling in spapr_memory_plug() David Gibson
2020-10-27 14:17 ` [PULL 15/18] spapr: Use error_append_hint() in spapr_reallocate_hpt() David Gibson
2020-10-27 14:17 ` [PULL 16/18] target/ppc: Fix kvmppc_load_htab_chunk() error reporting David Gibson
2020-10-27 14:17 ` [PULL 17/18] spapr: Improve spapr_reallocate_hpt() " David Gibson
2020-10-27 14:17 ` [PULL 18/18] ppc/: fix some comment spelling errors David Gibson
2020-10-30 11:55 ` [PULL 00/18] ppc-for-5.2 queue 20201028 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).