[PULL 00/13] build, Python, target/i386 changes for 2023-02-27

Paolo Bonzini posted 13 patches 1 year, 1 month ago
Only 12 patches received!
MAINTAINERS                                        |   2 +
configure                                          |  82 +++++++++---
docs/devel/testing.rst                             |  76 ++++++-----
docs/meson.build                                   |   9 +-
meson_options.txt                                  |   2 +-
scripts/make-config-poison.sh                      |   2 +-
scripts/meson-buildoptions.sh                      |   1 +
target/i386/cpu.c                                  | 142 ++++++++++++++++++++-
target/i386/cpu.h                                  |  11 ++
target/i386/kvm/kvm.c                              |  17 ++-
target/i386/tcg/emit.c.inc                         |  14 +-
tests/docker/dockerfiles/alpine.docker             |   2 +-
tests/docker/dockerfiles/centos8.docker            |  22 ++--
tests/docker/dockerfiles/fedora-win32-cross.docker |   1 +
tests/docker/dockerfiles/fedora-win64-cross.docker |   1 +
tests/docker/dockerfiles/opensuse-leap.docker      |  22 ++--
tests/docker/dockerfiles/ubuntu2004.docker         |   2 +-
tests/lcitool/libvirt-ci                           |   2 +-
tests/lcitool/mappings.yml                         |  77 +++++++++++
tests/lcitool/targets/centos-stream-8.yml          |   3 +
tests/lcitool/targets/opensuse-leap-153.yml        |   3 +
tests/tcg/i386/test-i386-bmi2.c                    |   3 +
22 files changed, 398 insertions(+), 98 deletions(-)
create mode 100644 tests/lcitool/mappings.yml
create mode 100644 tests/lcitool/targets/centos-stream-8.yml
create mode 100644 tests/lcitool/targets/opensuse-leap-153.yml
[PULL 00/13] build, Python, target/i386 changes for 2023-02-27
Posted by Paolo Bonzini 1 year, 1 month ago
The following changes since commit 1270a3f57c9221080f3205a15964814ff8359ca9:

  Merge tag 'for-upstream' of https://repo.or.cz/qemu/kevin into staging (2023-02-24 15:09:39 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 7eb061b06e97af9a8da7f31b839d78997ae737fc:

  i386: Add new CPU model SapphireRapids (2023-02-27 18:53:00 +0100)

----------------------------------------------------------------
* New Sapphire Rapids model support
* x86 bugfixes
* Prepare to drop support for Python 3.6

----------------------------------------------------------------
John Snow (2):
      meson: stop looking for 'sphinx-build-3'
      configure: Look for auxiliary Python installations

Markus Armbruster (1):
      meson: Avoid duplicates in generated config-poison.h again

Paolo Bonzini (7):
      configure: protect against escaping venv when running Meson
      lcitool: update submodule
      docs/devel: update and clarify lcitool instructions
      ci, docker: update CentOS and OpenSUSE Python to non-EOL versions
      target/i386: add FSRM to TCG
      target/i386: add FZRM, FSRS, FSRC
      target/i386: KVM: allow fast string operations if host supports them

Philippe Mathieu-Daudé (1):
      MAINTAINERS: Cover RCU documentation

Richard Henderson (1):
      target/i386: Fix BZHI instruction

Wang, Lei (1):
      i386: Add new CPU model SapphireRapids

 MAINTAINERS                                        |   2 +
 configure                                          |  82 +++++++++---
 docs/devel/testing.rst                             |  76 ++++++-----
 docs/meson.build                                   |   9 +-
 meson_options.txt                                  |   2 +-
 scripts/make-config-poison.sh                      |   2 +-
 scripts/meson-buildoptions.sh                      |   1 +
 target/i386/cpu.c                                  | 142 ++++++++++++++++++++-
 target/i386/cpu.h                                  |  11 ++
 target/i386/kvm/kvm.c                              |  17 ++-
 target/i386/tcg/emit.c.inc                         |  14 +-
 tests/docker/dockerfiles/alpine.docker             |   2 +-
 tests/docker/dockerfiles/centos8.docker            |  22 ++--
 tests/docker/dockerfiles/fedora-win32-cross.docker |   1 +
 tests/docker/dockerfiles/fedora-win64-cross.docker |   1 +
 tests/docker/dockerfiles/opensuse-leap.docker      |  22 ++--
 tests/docker/dockerfiles/ubuntu2004.docker         |   2 +-
 tests/lcitool/libvirt-ci                           |   2 +-
 tests/lcitool/mappings.yml                         |  77 +++++++++++
 tests/lcitool/targets/centos-stream-8.yml          |   3 +
 tests/lcitool/targets/opensuse-leap-153.yml        |   3 +
 tests/tcg/i386/test-i386-bmi2.c                    |   3 +
 22 files changed, 398 insertions(+), 98 deletions(-)
 create mode 100644 tests/lcitool/mappings.yml
 create mode 100644 tests/lcitool/targets/centos-stream-8.yml
 create mode 100644 tests/lcitool/targets/opensuse-leap-153.yml
-- 
2.39.1


Re: [PULL 00/13] build, Python, target/i386 changes for 2023-02-27
Posted by Peter Maydell 1 year, 1 month ago
On Mon, 27 Feb 2023 at 17:55, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit 1270a3f57c9221080f3205a15964814ff8359ca9:
>
>   Merge tag 'for-upstream' of https://repo.or.cz/qemu/kevin into staging (2023-02-24 15:09:39 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream-8.0
>
> for you to fetch changes up to 7eb061b06e97af9a8da7f31b839d78997ae737fc:
>
>   i386: Add new CPU model SapphireRapids (2023-02-27 18:53:00 +0100)
>
> ----------------------------------------------------------------
> * New Sapphire Rapids model support
> * x86 bugfixes
> * Prepare to drop support for Python 3.6
>
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/8.0
for any user-visible changes.

-- PMM