All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eduardo Habkost <ehabkost@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>,
	Marcel Apfelbaum <marcel.apfelbaum@gmail.com>,
	Peter Maydell <peter.maydell@linaro.org>,
	Igor Mammedov <imammedo@redhat.com>,
	Richard Henderson <rth@twiddle.net>,
	qemu-devel@nongnu.org
Subject: [PULL 00/18] x86 and machine queue, 2019-10-15
Date: Tue, 15 Oct 2019 18:37:27 -0300	[thread overview]
Message-ID: <20191015213745.22174-1-ehabkost@redhat.com> (raw)

The following changes since commit 69b81893bc28feb678188fbcdce52eff1609bdad:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20191015' into staging (2019-10-15 18:15:59 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 69edb0f37a52053978de65a81241ef171a6f2396:

  target/i386: Add Snowridge-v2 (no MPX) CPU model (2019-10-15 18:34:44 -0300)

----------------------------------------------------------------
x86 and machine queue, 2019-10-15

Features:
* Snowridge-v2 (no MPX) CPU model (Xiaoyao Li)

Bug fixes:
* cpu-plug-test: fix device_add for pc/q35 machines (Igor Mammedov)
* Fix legacy guest with xsave panic on older Linux kernel (Bingsong Si)
* Omit all-zeroes entries from KVM CPUID table (Eduardo Habkost)

Cleanups:
* Convert reset handlers to DeviceReset (Philippe Mathieu-Daudé)
* MachineClass::auto_enable_numa field (Tao Xu)
* target/i386/cpu.h cleanups (Tao Xu)
* memory_device_get_free_addr() cleanups (Wei Yang)

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


Bingsong Si (1):
  i386: Fix legacy guest with xsave panic on host kvm without update
    cpuid.

Eduardo Habkost (1):
  i386: Omit all-zeroes entries from KVM CPUID table

Igor Mammedov (2):
  tests: add qtest_qmp_device_add_qdict() helper
  tests: cpu-plug-test: fix device_add for pc/q35 machines

Philippe Mathieu-Daudé (8):
  hw/acpi/piix4: Convert reset handler to DeviceReset
  hw/isa/piix4: Convert reset handler to DeviceReset
  hw/ide/piix: Convert reset handler to DeviceReset
  hw/ide/sii3112: Convert reset handler to DeviceReset
  hw/ide/via82c: Convert reset handler to DeviceReset
  hw/isa/vt82c686: Convert reset handler to DeviceReset
  hw/input/lm832x: Convert reset handler to DeviceReset
  hw/misc/vmcoreinfo: Add comment about reset handler

Tao Xu (3):
  numa: Introduce MachineClass::auto_enable_numa for implicit NUMA node
  target/i386: clean up comments over 80 chars per line
  target/i386: drop the duplicated definition of cpuid AVX512_VBMI macro

Wei Yang (2):
  memory-device: not necessary to use goto for the last check
  memory-device: break the loop if tmp exceed the hinted range

Xiaoyao Li (1):
  target/i386: Add Snowridge-v2 (no MPX) CPU model

 include/hw/boards.h         |   1 +
 target/i386/cpu.h           | 169 +++++++++++++++++++++++-------------
 tests/libqtest.h            |  12 +++
 hw/acpi/piix4.c             |   7 +-
 hw/core/numa.c              |  10 ++-
 hw/ide/piix.c               |   9 +-
 hw/ide/sii3112.c            |   7 +-
 hw/ide/via.c                |  10 +--
 hw/input/lm832x.c           |  12 ++-
 hw/isa/piix4.c              |   7 +-
 hw/isa/vt82c686.c           |  11 +--
 hw/mem/memory-device.c      |   3 +-
 hw/misc/vmcoreinfo.c        |   4 +
 hw/ppc/spapr.c              |   9 +-
 target/i386/cpu.c           |  28 ++++--
 target/i386/hvf/x86_cpuid.c |   2 +-
 target/i386/kvm.c           |  14 +++
 tests/cpu-plug-test.c       |  62 ++++++-------
 tests/libqtest.c            |  29 ++++---
 19 files changed, 247 insertions(+), 159 deletions(-)

-- 
2.21.0



             reply	other threads:[~2019-10-15 21:39 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-15 21:37 Eduardo Habkost [this message]
2019-10-15 21:37 ` [PULL 01/18] tests: add qtest_qmp_device_add_qdict() helper Eduardo Habkost
2019-10-15 21:37 ` [PULL 02/18] tests: cpu-plug-test: fix device_add for pc/q35 machines Eduardo Habkost
2019-10-15 21:37 ` [PULL 03/18] numa: Introduce MachineClass::auto_enable_numa for implicit NUMA node Eduardo Habkost
2019-10-15 21:37 ` [PULL 04/18] hw/acpi/piix4: Convert reset handler to DeviceReset Eduardo Habkost
2019-10-15 21:37 ` [PULL 05/18] hw/isa/piix4: " Eduardo Habkost
2019-10-15 21:37 ` [PULL 06/18] hw/ide/piix: " Eduardo Habkost
2019-10-15 21:37 ` [PULL 07/18] hw/ide/sii3112: " Eduardo Habkost
2019-10-15 21:37 ` [PULL 08/18] hw/ide/via82c: " Eduardo Habkost
2019-10-15 21:37 ` [PULL 09/18] hw/isa/vt82c686: " Eduardo Habkost
2019-10-15 21:37 ` [PULL 10/18] hw/input/lm832x: " Eduardo Habkost
2019-10-15 21:37 ` [PULL 11/18] hw/misc/vmcoreinfo: Add comment about reset handler Eduardo Habkost
2019-10-15 21:37 ` [PULL 12/18] memory-device: not necessary to use goto for the last check Eduardo Habkost
2019-10-15 21:37 ` [PULL 13/18] memory-device: break the loop if tmp exceed the hinted range Eduardo Habkost
2019-10-15 21:37 ` [PULL 14/18] target/i386: clean up comments over 80 chars per line Eduardo Habkost
2019-10-15 21:37 ` [PULL 15/18] target/i386: drop the duplicated definition of cpuid AVX512_VBMI macro Eduardo Habkost
2019-10-15 21:37 ` [PULL 16/18] i386: Fix legacy guest with xsave panic on host kvm without update cpuid Eduardo Habkost
2019-10-15 21:37 ` [PULL 17/18] i386: Omit all-zeroes entries from KVM CPUID table Eduardo Habkost
2019-10-15 21:37 ` [PULL 18/18] target/i386: Add Snowridge-v2 (no MPX) CPU model Eduardo Habkost
2019-10-18  9:56 ` [PULL 00/18] x86 and machine queue, 2019-10-15 Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191015213745.22174-1-ehabkost@redhat.com \
    --to=ehabkost@redhat.com \
    --cc=imammedo@redhat.com \
    --cc=marcel.apfelbaum@gmail.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.