mbox

[PULL,00/10] x86 and machine queue, 2017-06-05

Message ID 20170605185927.12111-1-ehabkost@redhat.com
State New
Headers show

Pull-request

git://github.com/ehabkost/qemu.git tags/x86-and-machine-pull-request

Message

Eduardo Habkost June 5, 2017, 6:59 p.m. UTC
The following changes since commit cb8b8ef4578dc17c350fd4b27700a9f178e2dad0:

  Merge remote-tracking branch 'remotes/elmarco/tags/chrfe-pull-request' into staging (2017-06-05 10:09:14 +0100)

are available in the git repository at:

  git://github.com/ehabkost/qemu.git tags/x86-and-machine-pull-request

for you to fetch changes up to 23ea4f30320bbd36a5d202ee469374ec3c747286:

  scripts: Test script to look for -device crashes (2017-06-05 14:59:09 -0300)

----------------------------------------------------------------
x86 and machine queue, 2017-06-05

----------------------------------------------------------------

Eduardo Habkost (4):
  pc: Use "min-[x]level" on compat_props
  qemu.py: Don't set _popen=None on error/shutdown
  qemu.py: Add QEMUMachine.exitcode() method
  scripts: Test script to look for -device crashes

Igor Mammedov (6):
  numa: consolidate cpu_preplug fixups/checks for pc/arm/spapr
  numa: move default mapping init to machine
  numa: make sure that all cpus have has_node_id set if numa is enabled
  numa: make hmp 'info numa' fetch numa nodes from qmp_query_cpus()
    result
  numa: move numa_node from CPUState into target specific classes
  spapr: cleanup spapr_fixup_cpu_numa_dt() usage

 scripts/qemu.py               |  17 +-
 include/hw/i386/pc.h          |  42 +--
 include/qom/cpu.h             |   2 -
 include/sysemu/numa.h         |   1 +
 target/arm/cpu.h              |   2 +
 target/i386/cpu.h             |   1 +
 target/ppc/cpu.h              |   1 +
 hw/arm/virt-acpi-build.c      |   4 +-
 hw/arm/virt.c                 |  16 +-
 hw/core/machine.c             |  37 ++-
 hw/i386/acpi-build.c          |   3 +-
 hw/i386/pc.c                  |  21 +-
 hw/ppc/spapr.c                |  41 +--
 hw/ppc/spapr_cpu_core.c       |   4 +-
 monitor.c                     |  11 +-
 numa.c                        |  43 ++-
 target/arm/cpu.c              |   2 +-
 target/i386/cpu.c             |   2 +-
 tests/test-x86-cpuid-compat.c |  38 +++
 scripts/device-crash-test     | 624 ++++++++++++++++++++++++++++++++++++++++++
 20 files changed, 774 insertions(+), 138 deletions(-)
 create mode 100755 scripts/device-crash-test

Comments

Peter Maydell June 6, 2017, 1:29 p.m. UTC | #1
On 5 June 2017 at 19:59, Eduardo Habkost <ehabkost@redhat.com> wrote:
> The following changes since commit cb8b8ef4578dc17c350fd4b27700a9f178e2dad0:
>
>   Merge remote-tracking branch 'remotes/elmarco/tags/chrfe-pull-request' into staging (2017-06-05 10:09:14 +0100)
>
> are available in the git repository at:
>
>   git://github.com/ehabkost/qemu.git tags/x86-and-machine-pull-request
>
> for you to fetch changes up to 23ea4f30320bbd36a5d202ee469374ec3c747286:
>
>   scripts: Test script to look for -device crashes (2017-06-05 14:59:09 -0300)
>
> ----------------------------------------------------------------
> x86 and machine queue, 2017-06-05
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM