qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/18] ppc-for-2.11 queue 20170915
@ 2017-09-15  3:51 David Gibson
  2017-09-15  3:51 ` [Qemu-devel] [PULL 01/18] net: Add SunGEM device emulation as found on Apple UniNorth David Gibson
                   ` (19 more replies)
  0 siblings, 20 replies; 22+ messages in thread
From: David Gibson @ 2017-09-15  3:51 UTC (permalink / raw)
  To: peter.maydell; +Cc: agraf, gkurz, qemu-devel, qemu-ppc, aik, David Gibson

The following changes since commit 3dabde1128b671f36ac6cb36b97b273139964420:

  Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20170914' into staging (2017-09-14 16:33:02 +0100)

are available in the git repository at:

  git://github.com/dgibson/qemu.git tags/ppc-for-2.11-20170915

for you to fetch changes up to 70a0c19e83aa4c71c879d51e426e89e4b3d4e014:

  ppc/kvm: use kvm_vm_check_extension() in kvmppc_is_pr() (2017-09-15 10:29:48 +1000)

----------------------------------------------------------------
ppc patch queue 2017-09-15

Here's the current batch of accumulated ppc patches.  These are all
pretty simple bugfixes or cleanups, no big new features here.

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      vfio, spapr: Fix levels calculation

Benjamin Herrenschmidt (1):
      net: Add SunGEM device emulation as found on Apple UniNorth

Cédric Le Goater (2):
      ppc/xive: fix OV5_XIVE_EXPLOIT bits
      spapr: fix CAS-generated reset

Daniel Henrique Barboza (1):
      hw/ppc/spapr.c: cleaning up qdev_get_machine() calls

Greg Kurz (13):
      spapr_pci: drop useless check in spapr_phb_vfio_get_loc_code()
      spapr_pci: drop useless check in spapr_populate_pci_child_dt()
      spapr_pci: use g_strdup_printf()
      spapr: only update SDR1 once per-cpu during CAS
      spapr_pci: use the common _FDT() helper
      spapr_pci: handle FDT creation errors with _FDT()
      xics: fix several error leaks
      spapr_cpu_core: fail gracefully with non-pseries machine types
      spapr_pci: convert sprintf() to g_strdup_printf()
      spapr_pci: don't create 64-bit MMIO window if we don't need to
      spapr_cpu_core: cleaning up qdev_get_machine() calls
      spapr_events: use QTAILQ_FOREACH_SAFE() in spapr_clear_pending_events()
      ppc/kvm: use kvm_vm_check_extension() in kvmppc_is_pr()

 default-configs/ppc-softmmu.mak |    1 +
 hw/intc/xics.c                  |   12 +-
 hw/net/Makefile.objs            |    1 +
 hw/net/sungem.c                 | 1447 +++++++++++++++++++++++++++++++++++++++
 hw/net/trace-events             |   44 ++
 hw/pci/pci.c                    |    2 +
 hw/ppc/spapr.c                  |   21 +-
 hw/ppc/spapr_cpu_core.c         |   11 +-
 hw/ppc/spapr_events.c           |    4 +-
 hw/ppc/spapr_hcall.c            |   21 +-
 hw/ppc/spapr_pci.c              |  106 ++-
 hw/vfio/spapr.c                 |    2 +-
 include/hw/pci/pci_ids.h        |    1 +
 include/hw/ppc/spapr_ovec.h     |    3 +-
 target/ppc/kvm.c                |    2 +-
 15 files changed, 1580 insertions(+), 98 deletions(-)
 create mode 100644 hw/net/sungem.c

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

end of thread, other threads:[~2017-09-15 19:29 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-15  3:51 [Qemu-devel] [PULL 00/18] ppc-for-2.11 queue 20170915 David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 01/18] net: Add SunGEM device emulation as found on Apple UniNorth David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 02/18] hw/ppc/spapr.c: cleaning up qdev_get_machine() calls David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 03/18] spapr_pci: drop useless check in spapr_phb_vfio_get_loc_code() David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 04/18] spapr_pci: drop useless check in spapr_populate_pci_child_dt() David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 05/18] spapr_pci: use g_strdup_printf() David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 06/18] spapr: only update SDR1 once per-cpu during CAS David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 07/18] ppc/xive: fix OV5_XIVE_EXPLOIT bits David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 08/18] spapr: fix CAS-generated reset David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 09/18] spapr_pci: use the common _FDT() helper David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 10/18] spapr_pci: handle FDT creation errors with _FDT() David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 11/18] vfio, spapr: Fix levels calculation David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 12/18] xics: fix several error leaks David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 13/18] spapr_cpu_core: fail gracefully with non-pseries machine types David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 14/18] spapr_pci: convert sprintf() to g_strdup_printf() David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 15/18] spapr_pci: don't create 64-bit MMIO window if we don't need to David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 16/18] spapr_cpu_core: cleaning up qdev_get_machine() calls David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 17/18] spapr_events: use QTAILQ_FOREACH_SAFE() in spapr_clear_pending_events() David Gibson
2017-09-15  3:51 ` [Qemu-devel] [PULL 18/18] ppc/kvm: use kvm_vm_check_extension() in kvmppc_is_pr() David Gibson
2017-09-15  4:26 ` [Qemu-devel] [PULL 00/18] ppc-for-2.11 queue 20170915 no-reply
2017-09-15  5:00   ` David Gibson
2017-09-15 19:28 ` 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).