[PULL 00/14] Misc patches for 2022-01-27

Paolo Bonzini posted 14 patches 2 years, 2 months ago
Test checkpatch failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220127111037.457901-1-pbonzini@redhat.com
Maintainers: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Paolo Bonzini <pbonzini@redhat.com>, Kevin Wolf <kwolf@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Cleber Rosa <crosa@redhat.com>, Hanna Reitz <hreitz@redhat.com>, Eduardo Habkost <eduardo@habkost.net>
There is a newer version of this series
configure                                          |  4 +-
docs/about/deprecated.rst                          | 13 ++++++
docs/devel/testing.rst                             |  2 +-
hw/i386/sgx.c                                      | 11 ++++-
hw/intc/i8259_common.c                             |  6 +--
hw/intc/ioapic_common.c                            |  2 +-
include/exec/cpu-all.h                             |  9 ----
include/exec/cpu-common.h                          |  9 ++++
include/hw/i386/ioapic_internal.h                  |  1 -
include/hw/isa/i8259_internal.h                    |  3 --
meson.build                                        | 16 +++----
qapi/machine.json                                  |  4 +-
qapi/misc-target.json                              | 22 ++++++---
qga/meson.build                                    |  2 +-
scripts/mtest2make.py                              | 20 +++++++--
tests/Makefile.include                             | 16 ++-----
tests/check-block.sh                               | 52 +++++++++++-----------
tests/docker/dockerfiles/fedora-win32-cross.docker |  1 +
tests/docker/dockerfiles/fedora-win64-cross.docker |  1 +
tests/meson.build                                  |  1 +
tests/qemu-iotests/check                           |  6 +--
tests/qemu-iotests/meson.build                     | 30 +++++++++++++
tests/qemu-iotests/testenv.py                      | 30 ++++++-------
tests/qemu-iotests/testrunner.py                   | 49 ++++++++++----------
tests/qtest/meson.build                            |  2 +-
25 files changed, 189 insertions(+), 123 deletions(-)
create mode 100644 tests/qemu-iotests/meson.build
[PULL 00/14] Misc patches for 2022-01-27
Posted by Paolo Bonzini 2 years, 2 months ago
The following changes since commit aeb0ae95b7f18c66158792641cb6ba0cde5789ab:

  Merge remote-tracking branch 'remotes/jsnow-gitlab/tags/python-pull-request' into staging (2022-01-22 12:03:22 +0000)

are available in the Git repository at:

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

for you to fetch changes up to b3378ce9cd2b10dadf34a59f1bcf2fd80af8b3fa:

  configure: fix parameter expansion of --cross-cc-cflags options (2022-01-27 12:09:10 +0100)

----------------------------------------------------------------
* configure and meson fixes
* "meson test" switch for iotests
* deprecation of old SGX QAPI
* unexport InterruptStatsProviderClass-related functions

----------------------------------------------------------------
Bernhard Beschow (1):
      intc: Unexport InterruptStatsProviderClass-related functions

Marc-André Lureau (3):
      build-sys: fix a meson deprecation warning
      build-sys: fix undefined ARCH error
      docker: add msitools to Fedora/mingw cross

Matheus Ferst (1):
      configure: fix parameter expansion of --cross-cc-cflags options

Paolo Bonzini (4):
      scripts/mtest2make: add support for SPEED=thorough
      build: make check-block a meson test
      qemu-iotests: require at least an argument to check-block.sh
      check-block: replace -makecheck with TAP output

Philippe Mathieu-Daudé (1):
      exec/cpu: Make host pages variables / macros 'target agnostic'

Philippe Mathieu-Daudé via (1):
      meson: Use find_program() to resolve the entitlement.sh script

Thomas Huth (1):
      meson.build: Use a function from libfdt 1.5.1 for the library check

Vladimir Sementsov-Ogievskiy (1):
      check-block.sh: passthrough -jN flag of make to -j N flag of check

Yang Zhong (1):
      qapi: Cleanup SGX related comments and restore @section-size

 configure                                          |  4 +-
 docs/about/deprecated.rst                          | 13 ++++++
 docs/devel/testing.rst                             |  2 +-
 hw/i386/sgx.c                                      | 11 ++++-
 hw/intc/i8259_common.c                             |  6 +--
 hw/intc/ioapic_common.c                            |  2 +-
 include/exec/cpu-all.h                             |  9 ----
 include/exec/cpu-common.h                          |  9 ++++
 include/hw/i386/ioapic_internal.h                  |  1 -
 include/hw/isa/i8259_internal.h                    |  3 --
 meson.build                                        | 16 +++----
 qapi/machine.json                                  |  4 +-
 qapi/misc-target.json                              | 22 ++++++---
 qga/meson.build                                    |  2 +-
 scripts/mtest2make.py                              | 20 +++++++--
 tests/Makefile.include                             | 16 ++-----
 tests/check-block.sh                               | 52 +++++++++++-----------
 tests/docker/dockerfiles/fedora-win32-cross.docker |  1 +
 tests/docker/dockerfiles/fedora-win64-cross.docker |  1 +
 tests/meson.build                                  |  1 +
 tests/qemu-iotests/check                           |  6 +--
 tests/qemu-iotests/meson.build                     | 30 +++++++++++++
 tests/qemu-iotests/testenv.py                      | 30 ++++++-------
 tests/qemu-iotests/testrunner.py                   | 49 ++++++++++----------
 tests/qtest/meson.build                            |  2 +-
 25 files changed, 189 insertions(+), 123 deletions(-)
 create mode 100644 tests/qemu-iotests/meson.build
-- 
2.34.1


Re: [PULL 00/14] Misc patches for 2022-01-27
Posted by Peter Maydell 2 years, 2 months ago
On Thu, 27 Jan 2022 at 11:18, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit aeb0ae95b7f18c66158792641cb6ba0cde5789ab:
>
>   Merge remote-tracking branch 'remotes/jsnow-gitlab/tags/python-pull-request' into staging (2022-01-22 12:03:22 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to b3378ce9cd2b10dadf34a59f1bcf2fd80af8b3fa:
>
>   configure: fix parameter expansion of --cross-cc-cflags options (2022-01-27 12:09:10 +0100)
>
> ----------------------------------------------------------------
> * configure and meson fixes
> * "meson test" switch for iotests
> * deprecation of old SGX QAPI
> * unexport InterruptStatsProviderClass-related functions

Philippe Mathieu-Daudé via (1):
      meson: Use find_program() to resolve the entitlement.sh script
ERROR: pull request includes commits attributed to list


could you fix up and resend, please?

thanks
-- PMM