qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/23] QEMU changes for 7.0 soft freeze
@ 2022-03-07 18:16 Paolo Bonzini
  2022-03-07 18:16 ` [PULL 01/23] whpx: Fixed reporting of the CPU context to GDB for 64-bit Paolo Bonzini
                   ` (23 more replies)
  0 siblings, 24 replies; 32+ messages in thread
From: Paolo Bonzini @ 2022-03-07 18:16 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 99c53410bc9d50e556f565b0960673cccb566452:

  Merge remote-tracking branch 'remotes/thuth-gitlab/tags/pull-request-2022-02-28' into staging (2022-03-01 13:25:54 +0000)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to d170dbb84f8ed8f8c9daa359d6d95cd02fd959b7:

  gitlab-ci: do not run tests with address sanitizer (2022-03-07 17:41:51 +0100)

----------------------------------------------------------------
* whpx fixes in preparation for GDB support (Ivan)
* VSS header fixes (Marc-André)
* 5-level EPT support (Vitaly)
* AMX support (Jing Liu & Yang Zhong)
* Bundle changes to MSI routes (Longpeng)
* More precise emulation of #SS (Gareth)
* Disable TAP output for check-block
* Disable ASAN testing
----------------------------------------------------------------

Gareth Webb (1):
      target/i386: Throw a #SS when loading a non-canonical IST

Ivan Shcherbakov (2):
      whpx: Fixed reporting of the CPU context to GDB for 64-bit
      whpx: Fixed incorrect CR8/TPR synchronization

Jing Liu (5):
      x86: Fix the 64-byte boundary enumeration for extended state
      x86: Add AMX XTILECFG and XTILEDATA components
      x86: Add XFD faulting bit for state components
      x86: Add AMX CPUIDs enumeration
      x86: add support for KVM_CAP_XSAVE2 and AMX state migration

Longpeng (Mike) (2):
      kvm-irqchip: introduce new API to support route change
      kvm/msi: do explicit commit when adding msi routes

Marc-André Lureau (3):
      meson: fix generic location of vss headers
      qga/vss-win32: check old VSS SDK headers
      qga/vss: update informative message about MinGW

Maxim Levitsky (1):
      KVM: SVM: always set MSR_AMD64_TSC_RATIO to default value

Paolo Bonzini (5):
      update meson-buildoptions.sh
      target/i386: only include bits in pg_mode if they are not ignored
      linux-headers: include missing changes from 5.17
      check-block: revert TAP output and reintroduce -makecheck
      gitlab-ci: do not run tests with address sanitizer

Vitaly Kuznetsov (2):
      vmxcap: Add 5-level EPT bit
      i386: Add Icelake-Server-v6 CPU model with 5-level EPT support

Yang Zhong (1):
      x86: Grant AMX permission for guest

Zeng Guang (1):
      x86: Support XFD and AMX xsave data migration

 .gitlab-ci.d/buildtest.yml           |   2 -
 accel/kvm/kvm-all.c                  |   7 +-
 accel/stubs/kvm-stub.c               |   2 +-
 hw/misc/ivshmem.c                    |   5 +-
 hw/vfio/pci.c                        |   5 +-
 hw/virtio/virtio-pci.c               |   4 +-
 include/sysemu/kvm.h                 |  23 ++++++-
 linux-headers/asm-x86/kvm.h          |   3 +
 linux-headers/linux/kvm.h            |   4 ++
 meson.build                          |   5 +-
 qga/meson.build                      |   2 +-
 qga/vss-win32/install.cpp            |   4 ++
 qga/vss-win32/provider.cpp           |   4 ++
 qga/vss-win32/vss-common.h           |   3 +-
 scripts/kvm/vmxcap                   |   1 +
 scripts/meson-buildoptions.sh        |   2 +-
 target/i386/cpu.c                    |  84 +++++++++++++++++++++--
 target/i386/cpu.h                    |  43 +++++++++++-
 target/i386/kvm/kvm-cpu.c            |  11 +--
 target/i386/kvm/kvm.c                | 125 ++++++++++++++++++++++++++++++-----
 target/i386/kvm/kvm_i386.h           |   1 +
 target/i386/machine.c                |  46 +++++++++++++
 target/i386/tcg/seg_helper.c         |  49 +++++++++++++-
 target/i386/tcg/sysemu/excp_helper.c |  40 +----------
 target/i386/whpx/whpx-all.c          |  30 ++++++++-
 target/i386/xsave_helper.c           |  28 ++++++++
 tests/check-block.sh                 |   6 +-
 tests/qemu-iotests/check             |   6 +-
 tests/qemu-iotests/meson.build       |   1 -
 tests/qemu-iotests/testenv.py        |  30 ++++-----
 tests/qemu-iotests/testrunner.py     |  54 +++++++--------
 31 files changed, 494 insertions(+), 136 deletions(-)
-- 
2.34.1



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

end of thread, other threads:[~2022-03-10 14:07 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-07 18:16 [PULL 00/23] QEMU changes for 7.0 soft freeze Paolo Bonzini
2022-03-07 18:16 ` [PULL 01/23] whpx: Fixed reporting of the CPU context to GDB for 64-bit Paolo Bonzini
2022-03-07 18:16 ` [PULL 02/23] whpx: Fixed incorrect CR8/TPR synchronization Paolo Bonzini
2022-03-07 18:16 ` [PULL 03/23] vmxcap: Add 5-level EPT bit Paolo Bonzini
2022-03-07 18:16 ` [PULL 04/23] meson: fix generic location of vss headers Paolo Bonzini
2022-03-07 18:16 ` [PULL 05/23] qga/vss-win32: check old VSS SDK headers Paolo Bonzini
2022-03-07 18:16 ` [PULL 06/23] qga/vss: update informative message about MinGW Paolo Bonzini
2022-03-07 18:16 ` [PULL 07/23] update meson-buildoptions.sh Paolo Bonzini
2022-03-07 18:16 ` [PULL 08/23] kvm-irqchip: introduce new API to support route change Paolo Bonzini
2022-03-07 18:16 ` [PULL 09/23] kvm/msi: do explicit commit when adding msi routes Paolo Bonzini
2022-03-07 18:16 ` [PULL 10/23] target/i386: only include bits in pg_mode if they are not ignored Paolo Bonzini
2022-03-07 18:16 ` [PULL 11/23] target/i386: Throw a #SS when loading a non-canonical IST Paolo Bonzini
2022-03-07 18:16 ` [PULL 12/23] linux-headers: include missing changes from 5.17 Paolo Bonzini
2022-03-07 18:16 ` [PULL 13/23] x86: Fix the 64-byte boundary enumeration for extended state Paolo Bonzini
2022-03-07 18:16 ` [PULL 14/23] x86: Add AMX XTILECFG and XTILEDATA components Paolo Bonzini
2022-03-07 18:16 ` [PULL 15/23] x86: Grant AMX permission for guest Paolo Bonzini
2022-03-07 18:16 ` [PULL 16/23] x86: Add XFD faulting bit for state components Paolo Bonzini
2022-03-07 18:16 ` [PULL 17/23] x86: Add AMX CPUIDs enumeration Paolo Bonzini
2022-03-07 18:16 ` [PULL 18/23] x86: add support for KVM_CAP_XSAVE2 and AMX state migration Paolo Bonzini
2022-03-07 18:16 ` [PULL 19/23] x86: Support XFD and AMX xsave data migration Paolo Bonzini
2022-03-07 18:16 ` [PULL 20/23] i386: Add Icelake-Server-v6 CPU model with 5-level EPT support Paolo Bonzini
2022-03-07 18:16 ` [PULL 21/23] KVM: SVM: always set MSR_AMD64_TSC_RATIO to default value Paolo Bonzini
2022-03-07 18:16 ` [PULL 22/23] check-block: revert TAP output and reintroduce -makecheck Paolo Bonzini
2022-03-07 18:16 ` [PULL 23/23] gitlab-ci: do not run tests with address sanitizer Paolo Bonzini
2022-03-08  8:14 ` [PULL 00/23] QEMU changes for 7.0 soft freeze Thomas Huth
2022-03-08 11:31   ` Paolo Bonzini
2022-03-09  9:46     ` Thomas Huth
2022-03-09 16:07       ` Paolo Bonzini
2022-03-10  7:56         ` Thomas Huth
2022-03-10 13:26           ` Paolo Bonzini
2022-03-09 18:44       ` Peter Maydell
2022-03-10  7:25         ` Thomas Huth

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).