[Qemu-commits] [qemu/qemu] 2c8311: Update VERSION for v7.2.0-rc1

2022-11-17 Thread Paolo Bonzini via Qemu-commits
  Branch: refs/heads/staging
  Home:   https://github.com/qemu/qemu
  Commit: 2c8311241d1f7377bb4ff76064b1d1fe15166413
  
https://github.com/qemu/qemu/commit/2c8311241d1f7377bb4ff76064b1d1fe15166413
  Author: Stefan Hajnoczi 
  Date:   2022-11-15 (Tue, 15 Nov 2022)

  Changed paths:
M VERSION

  Log Message:
  ---
  Update VERSION for v7.2.0-rc1

Signed-off-by: Stefan Hajnoczi 


  Commit: 44ee69ea16bd0390082ed88d4e82d6cea3a18b46
  
https://github.com/qemu/qemu/commit/44ee69ea16bd0390082ed88d4e82d6cea3a18b46
  Author: Thomas Huth 
  Date:   2022-11-16 (Wed, 16 Nov 2022)

  Changed paths:
M hw/s390x/ipl.h
M hw/s390x/s390-pci-vfio.c
M hw/s390x/s390-virtio-ccw.c
M pc-bios/s390-ccw/cio.h
M pc-bios/s390-ccw/iplb.h
M pc-bios/s390-ccw/start.S
M target/s390x/cpu_models.h
M target/s390x/ioinst.c
M target/s390x/tcg/excp_helper.c
M target/s390x/tcg/fpu_helper.c
M target/s390x/tcg/misc_helper.c
M target/s390x/tcg/translate.c
M target/s390x/tcg/translate_vx.c.inc

  Log Message:
  ---
  s390x: Fix spelling errors

Fix typos (discovered with the 'codespell' utility).
Note: Though "migrateable" still seems to be a valid spelling, we change
it to "migratable" since this is the way more common spelling here.

Message-Id: <2022182828.282251-1-th...@redhat.com>
Reviewed-by: Stefan Weil 
Reviewed-by: Ilya Leoshkevich 
Signed-off-by: Thomas Huth 


  Commit: be5df2edb5d69ff3107c5616aa035a9ba8d0422e
  
https://github.com/qemu/qemu/commit/be5df2edb5d69ff3107c5616aa035a9ba8d0422e
  Author: Thomas Huth 
  Date:   2022-11-16 (Wed, 16 Nov 2022)

  Changed paths:
M docs/system/s390x/bootdevices.rst

  Log Message:
  ---
  docs/system/s390x: Document the "loadparm" machine property

The "loadparm" machine property is useful for selecting alternative
kernels on the disk of the guest, but so far we do not tell the users
yet how to use it. Add some documentation to fill this gap.

Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=2128235
Message-Id: <20221114132502.110213-1-th...@redhat.com>
Reviewed-by: Claudio Imbrenda 
Signed-off-by: Thomas Huth 


  Commit: c70fe3b148c82f6dc2f13c2a98a430b81ba8a8b4
  
https://github.com/qemu/qemu/commit/c70fe3b148c82f6dc2f13c2a98a430b81ba8a8b4
  Author: Daniel P. Berrangé 
  Date:   2022-11-17 (Thu, 17 Nov 2022)

  Changed paths:
M .gitlab-ci.d/cirrus.yml
R .gitlab-ci.d/cirrus/macos-11.vars
A .gitlab-ci.d/cirrus/macos-12.vars
M tests/lcitool/libvirt-ci
M tests/lcitool/refresh

  Log Message:
  ---
  ci: replace x86_64 macos-11 with aarch64 macos-12

The Cirrus CI service has announced the intent to discontinue
support for x86_64 macOS CI runners. They already have aarch64
runners available and require all projects to switch to these
images before Jan 1st 2023. The different architecture is
merely determined by the image name requested.

For aarch64 they only support macOS 12 onwards. At the same
time our support policy only guarantees the most recent 2
major versions, so macOS 12 is already technically our min
version.

https://cirrus-ci.org/blog/2022/11/08/sunsetting-intel-macos-instances/

Signed-off-by: Daniel P. Berrangé 
Message-Id: <20221116175023.80627-1-berra...@redhat.com>
Tested-by: Thomas Huth 
Signed-off-by: Thomas Huth 


  Commit: 1b7a07c4414323d985e89c4e78a4c30cba0e7a85
  
https://github.com/qemu/qemu/commit/1b7a07c4414323d985e89c4e78a4c30cba0e7a85
  Author: Ani Sinha 
  Date:   2022-11-17 (Thu, 17 Nov 2022)

  Changed paths:
M docs/devel/acpi-bits.rst
M tests/avocado/acpi-bits.py

  Log Message:
  ---
  acpi/tests/avocado/bits: some misc fixes

Most of the changes are trivial. The bits test timeout has now been increased
to 200 seconds in order to accommodate slower systems and fewer unnecessary
failures. Removed of the reference to non-existent README file in docs. Some
minor corrections in the doc file.

Signed-off-by: Ani Sinha 
Message-Id: <20221117053644.516649-1-...@anisinha.ca>
Reviewed-by: Thomas Huth 
Signed-off-by: Thomas Huth 


  Commit: 049b4ad66984aad278b3fc0a75b5a995c9b66a16
  
https://github.com/qemu/qemu/commit/049b4ad66984aad278b3fc0a75b5a995c9b66a16
  Author: Vaibhav Jain 
  Date:   2022-11-17 (Thu, 17 Nov 2022)

  Changed paths:
M target/ppc/cpu_init.c
M target/ppc/excp_helper.c

  Log Message:
  ---
  target/ppc: Fix build warnings when building with 'disable-tcg'

Kowshik reported that building qemu with GCC 12.2.1 for 'ppc64-softmmu'
target is failing due to following build warnings:


 ../target/ppc/cpu_init.c:7018:13: error: 'ppc_restore_state_to_opc' defined 
but not used [-Werror=unused-function]
 7018 | static void ppc_restore_state_to_opc(CPUState *cs,


Fix this by wrapping these function definitions in 'ifdef CONFIG_TCG' so that
they are only defined if qemu is compiled with '--enable-tcg'

Reported-by: Kowshik Jois B S 
Fixes: 61bd1d2942 ("target/ppc: Convert to tcg_ops 

[Qemu-commits] [qemu/qemu] 2c8311: Update VERSION for v7.2.0-rc1

2022-11-15 Thread Paolo Bonzini via Qemu-commits
  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 2c8311241d1f7377bb4ff76064b1d1fe15166413
  
https://github.com/qemu/qemu/commit/2c8311241d1f7377bb4ff76064b1d1fe15166413
  Author: Stefan Hajnoczi 
  Date:   2022-11-15 (Tue, 15 Nov 2022)

  Changed paths:
M VERSION

  Log Message:
  ---
  Update VERSION for v7.2.0-rc1

Signed-off-by: Stefan Hajnoczi