[PULL 00/19] Fixes (including big i386/emulate performance improvement) for 11.0-rc

Paolo Bonzini posted 19 patches 1 week, 1 day ago
Failed in applying to current master (apply log)
There is a newer version of this series
include/hw/core/boards.h          |   6 -
include/qemu/hw-version.h         |  18 +--
target/i386/emulate/x86_emu.h     |   6 +
hw/audio/sb16.c                   |   7 +
hw/ide/core.c                     |   2 +-
hw/scsi/megasas.c                 |   2 +-
hw/scsi/scsi-bus.c                |   2 +-
hw/scsi/scsi-disk.c               |   2 +-
system/vl.c                       |   4 -
target/i386/cpu.c                 |   2 +-
target/i386/emulate/x86_helpers.c |  83 ++++++-----
target/i386/emulate/x86_mmu.c     |  27 ++--
target/i386/hvf/x86.c             |  11 ++
target/i386/kvm/tdx.c             |   2 +-
target/i386/whpx/whpx-all.c       | 284 ++++++++++++++++++++++++++++++++------
target/s390x/cpu_models.c         |   2 +-
util/osdep.c                      |  12 --
tests/functional/meson.build      |  12 +-
18 files changed, 343 insertions(+), 141 deletions(-)
[PULL 00/19] Fixes (including big i386/emulate performance improvement) for 11.0-rc
Posted by Paolo Bonzini 1 week, 1 day ago
The following changes since commit 8e711856d7639cbffa51405f2cc2366e3d9e3a23:

  Merge tag 'hppa-fixes-for-v11-pull-request' of https://github.com/hdeller/qemu-hppa into staging (2026-03-20 10:04:48 +0000)

are available in the Git repository at:

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

for you to fetch changes up to dfbc524fdd8932951791e78121be0ddca0529162:

  target/i386: emulate: follow priv_check_exempt (2026-03-25 17:43:41 +0100)

----------------------------------------------------------------
* tests/functional: preserve PYTHONPATH entries
* target/i386: show GMET feature
* target/i386/emulate, whpx/i386: on-demand access to runtime state, MMU fixes
* tdx: fix use-after-free in tdx_fetch_cpuid
* treewide: replace qemu_hw_version() with QEMU_HW_VERSION
* sb16: detect invalid migration stream

----------------------------------------------------------------
Alyssa Ross (1):
      tests/functional: preserve PYTHONPATH entries

Jenny Guanni Qu (1):
      hw/audio/sb16: validate VMState fields in post_load

Mohamed Mediouni (14):
      whpx: i386: workaround for Windows 10 support
      whpx: i386: enable exceptions VM exit only when needed
      whpx: i386: skip TSC read for MMIO exits
      whpx: i386: skip XCRs read for MMIO exits
      whpx: i386: don't restore segment registers after MMIO handling
      target/i386: emulate: add new callbacks
      whpx: i386: add implementation of new x86_emul_ops
      target/i386: emulate: indirect access to CRs
      whpx: i386: indirect access to CRs
      target/i386: emulate: segmentation rework
      whpx: i386: fetch segments on-demand
      whpx: i386: fast runtime state reads
      target/i386: emulate: set PG_ERROR_W_MASK as expected
      target/i386: emulate: follow priv_check_exempt

Paolo Bonzini (3):
      tdx: fix use-after-free in tdx_fetch_cpuid
      treewide: replace qemu_hw_version() with QEMU_HW_VERSION
      target/i386: expose AMD GMET feature

 include/hw/core/boards.h          |   6 -
 include/qemu/hw-version.h         |  18 +--
 target/i386/emulate/x86_emu.h     |   6 +
 hw/audio/sb16.c                   |   7 +
 hw/ide/core.c                     |   2 +-
 hw/scsi/megasas.c                 |   2 +-
 hw/scsi/scsi-bus.c                |   2 +-
 hw/scsi/scsi-disk.c               |   2 +-
 system/vl.c                       |   4 -
 target/i386/cpu.c                 |   2 +-
 target/i386/emulate/x86_helpers.c |  83 ++++++-----
 target/i386/emulate/x86_mmu.c     |  27 ++--
 target/i386/hvf/x86.c             |  11 ++
 target/i386/kvm/tdx.c             |   2 +-
 target/i386/whpx/whpx-all.c       | 284 ++++++++++++++++++++++++++++++++------
 target/s390x/cpu_models.c         |   2 +-
 util/osdep.c                      |  12 --
 tests/functional/meson.build      |  12 +-
 18 files changed, 343 insertions(+), 141 deletions(-)
-- 
2.53.0
Re: [PULL 00/19] Fixes (including big i386/emulate performance improvement) for 11.0-rc
Posted by Peter Maydell 1 week, 1 day ago
On Wed, 25 Mar 2026 at 16:45, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit 8e711856d7639cbffa51405f2cc2366e3d9e3a23:
>
>   Merge tag 'hppa-fixes-for-v11-pull-request' of https://github.com/hdeller/qemu-hppa into staging (2026-03-20 10:04:48 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to dfbc524fdd8932951791e78121be0ddca0529162:
>
>   target/i386: emulate: follow priv_check_exempt (2026-03-25 17:43:41 +0100)
>
> ----------------------------------------------------------------
> * tests/functional: preserve PYTHONPATH entries
> * target/i386: show GMET feature
> * target/i386/emulate, whpx/i386: on-demand access to runtime state, MMU fixes
> * tdx: fix use-after-free in tdx_fetch_cpuid
> * treewide: replace qemu_hw_version() with QEMU_HW_VERSION
> * sb16: detect invalid migration stream
>

Hi -- this has conflicts in tests/functional/meson.build --
could you rebase and resend, please?

thanks
-- PMM