[PULL 00/23] First batch of s390x, qtest, CI and misc patches for 8.0

Thomas Huth posted 23 patches 1 year, 4 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20221214100911.165291-1-thuth@redhat.com
Maintainers: "Alex Bennée" <alex.bennee@linaro.org>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Thomas Huth <thuth@redhat.com>, Wainer dos Santos Moschetta <wainersm@redhat.com>, Beraldo Leal <bleal@redhat.com>, Jason Wang <jasowang@redhat.com>, Matthew Rosato <mjrosato@linux.ibm.com>, Eric Farman <farman@linux.ibm.com>, Halil Pasic <pasic@linux.ibm.com>, Christian Borntraeger <borntraeger@linux.ibm.com>, Richard Henderson <richard.henderson@linaro.org>, David Hildenbrand <david@redhat.com>, Ilya Leoshkevich <iii@linux.ibm.com>, Markus Armbruster <armbru@redhat.com>, "Dr. David Alan Gilbert" <dgilbert@redhat.com>, Laurent Vivier <lvivier@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Coiby Xu <Coiby.Xu@gmail.com>, Ed Maste <emaste@freebsd.org>, Li-Wen Hsu <lwhsu@freebsd.org>, Warner Losh <imp@bsdimp.com>, Kyle Evans <kevans@freebsd.org>, Stefan Weil <sw@weilnetz.de>
There is a newer version of this series
include/hw/s390x/s390-pci-bus.h   |   6 ++
target/s390x/helper.h             |   4 +-
tests/qtest/libqos/e1000e.h       |   1 -
target/s390x/tcg/insn-data.h.inc  |   4 +-
hw/s390x/s390-pci-bus.c           |  28 +++++++
hw/s390x/s390-pci-inst.c          |  51 ++++++++++++
hw/s390x/s390-pci-vfio.c          |  13 +++
monitor/misc.c                    |   6 --
target/s390x/tcg/mem_helper.c     |  18 ++--
target/s390x/tcg/translate.c      |   6 +-
tests/qtest/e1000e-test.c         |  19 ++---
tests/qtest/libqos/e1000e.c       |   2 +-
tests/qtest/vhost-user-blk-test.c |   6 ++
util/oslib-win32.c                |   4 -
util/qemu-config.c                | 168 +++++++++++++++++---------------------
.gitlab-ci.d/cirrus.yml           |   2 +-
.gitlab-ci.d/crossbuilds.yml      |   8 ++
.gitlab-ci.d/windows.yml          |  35 ++++++--
.gitlab/issue_templates/bug.md    |  16 ++--
MAINTAINERS                       |  20 ++++-
hw/display/Kconfig                |   2 +-
hw/net/Kconfig                    |   2 +-
scripts/make-release              |  16 +++-
tests/qtest/meson.build           |   6 --
tests/vm/freebsd                  |   4 +-
25 files changed, 289 insertions(+), 158 deletions(-)
[PULL 00/23] First batch of s390x, qtest, CI and misc patches for 8.0
Posted by Thomas Huth 1 year, 4 months ago
 Hi!

The following changes since commit 5204b499a6cae4dfd9fe762d5e6e82224892383b:

  mailmap: Fix Stefan Weil author email (2022-12-13 15:56:57 -0500)

are available in the Git repository at:

  https://gitlab.com/thuth/qemu.git tags/pull-request-2022-12-14

for you to fetch changes up to 8eeb98e2ea03639e743fdae82ae69d571d8ef0a3:

  tests/qtest/vhost-user-blk-test: don't abort all qtests on missing envar (2022-12-14 08:55:37 +0100)

----------------------------------------------------------------
* s390x PCI fixes and improvements (for the ISM device)
* Fix emulated MVCP and MVCS s390x instructions
* Clean-ups for the e1000e qtest
* Enable qtests on Windows
* Update FreeBSD CI to version 12.4
* Check --disable-tcg for ppc64 in the CI
* Improve scripts/make-releases a little bit
* Many other misc small clean-ups and fixes here and there

----------------------------------------------------------------
Akihiko Odaki (3):
      tests/qtest/libqos/e1000e: Remove "other" interrupts
      tests/qtest/e1000e-test: De-duplicate constants
      tests/qtest/libqos/e1000e: Correctly group register accesses

Bin Meng (4):
      .gitlab-ci.d/windows.yml: Unify the prerequisite packages
      .gitlab-ci.d/windows.yml: Keep 64-bit and 32-bit build scripts consistent
      .gitlab-ci.d/windows.yml: Exclude qTests from 64-bit CI job for now
      tests/qtest: Enable qtest build on Windows

Brad Smith (1):
      FreeBSD: Upgrade to 12.4 release

Christian Schoenebeck (1):
      tests/qtest/vhost-user-blk-test: don't abort all qtests on missing envar

Matthew Rosato (3):
      s390x/pci: coalesce unmap operations
      s390x/pci: shrink DMA aperture to be bound by vfio DMA limit
      s390x/pci: reset ISM passthrough devices on shutdown and system reset

Thomas Huth (11):
      target/s390x/tcg/mem_helper: Test the right bits in psw_key_valid()
      target/s390x: The MVCP and MVCS instructions are not privileged
      monitor/misc: Remove superfluous include statements
      scripts/make-release: Add a simple help text for the script
      scripts/make-release: Only clone single branches to speed up the script
      util/qemu-config: Fix "query-command-line-options" to provide the right values
      util/oslib-win32: Remove obsolete reference to g_poll code
      MAINTAINERS: Add documentation files to the corresponding sections
      hw: Include the VMWare devices only in the x86 targets
      gitlab-ci: Check building ppc64 without TCG
      .gitlab/issue_templates: Move suggestions into comments

 include/hw/s390x/s390-pci-bus.h   |   6 ++
 target/s390x/helper.h             |   4 +-
 tests/qtest/libqos/e1000e.h       |   1 -
 target/s390x/tcg/insn-data.h.inc  |   4 +-
 hw/s390x/s390-pci-bus.c           |  28 +++++++
 hw/s390x/s390-pci-inst.c          |  51 ++++++++++++
 hw/s390x/s390-pci-vfio.c          |  13 +++
 monitor/misc.c                    |   6 --
 target/s390x/tcg/mem_helper.c     |  18 ++--
 target/s390x/tcg/translate.c      |   6 +-
 tests/qtest/e1000e-test.c         |  19 ++---
 tests/qtest/libqos/e1000e.c       |   2 +-
 tests/qtest/vhost-user-blk-test.c |   6 ++
 util/oslib-win32.c                |   4 -
 util/qemu-config.c                | 168 +++++++++++++++++---------------------
 .gitlab-ci.d/cirrus.yml           |   2 +-
 .gitlab-ci.d/crossbuilds.yml      |   8 ++
 .gitlab-ci.d/windows.yml          |  35 ++++++--
 .gitlab/issue_templates/bug.md    |  16 ++--
 MAINTAINERS                       |  20 ++++-
 hw/display/Kconfig                |   2 +-
 hw/net/Kconfig                    |   2 +-
 scripts/make-release              |  16 +++-
 tests/qtest/meson.build           |   6 --
 tests/vm/freebsd                  |   4 +-
 25 files changed, 289 insertions(+), 158 deletions(-)
Re: [PULL 00/23] First batch of s390x, qtest, CI and misc patches for 8.0
Posted by Peter Maydell 1 year, 4 months ago
On Wed, 14 Dec 2022 at 10:16, Thomas Huth <thuth@redhat.com> wrote:
>
>  Hi!
>
> The following changes since commit 5204b499a6cae4dfd9fe762d5e6e82224892383b:
>
>   mailmap: Fix Stefan Weil author email (2022-12-13 15:56:57 -0500)
>
> are available in the Git repository at:
>
>   https://gitlab.com/thuth/qemu.git tags/pull-request-2022-12-14
>
> for you to fetch changes up to 8eeb98e2ea03639e743fdae82ae69d571d8ef0a3:
>
>   tests/qtest/vhost-user-blk-test: don't abort all qtests on missing envar (2022-12-14 08:55:37 +0100)
>
> ----------------------------------------------------------------
> * s390x PCI fixes and improvements (for the ISM device)
> * Fix emulated MVCP and MVCS s390x instructions
> * Clean-ups for the e1000e qtest
> * Enable qtests on Windows
> * Update FreeBSD CI to version 12.4
> * Check --disable-tcg for ppc64 in the CI
> * Improve scripts/make-releases a little bit
> * Many other misc small clean-ups and fixes here and there

Hi; this fails to compile:

../../util/qemu-config.c: In function 'objprop_to_cmdline_prop':
../../util/qemu-config.c:165:13: error: 'CommandLineParameterInfo' has
no member named 'has_help'
  165 |         info->has_help = true;
      |             ^~
../../util/qemu-config.c: In function 'query_all_machine_properties':
../../util/qemu-config.c:217:9: error: 'CommandLineParameterInfo' has
no member named 'has_help'
  217 |     info->has_help = true;
      |         ^~

I'm afraid your pullreq has crossed in the mail with Markus'
QAPI one, which refactored things so these QAPI structs
no longer have has_* fields.

thanks
-- PMM
Re: [PULL 00/23] First batch of s390x, qtest, CI and misc patches for 8.0
Posted by Thomas Huth 1 year, 4 months ago
On 15/12/2022 14.38, Peter Maydell wrote:
> On Wed, 14 Dec 2022 at 10:16, Thomas Huth <thuth@redhat.com> wrote:
>>
>>   Hi!
>>
>> The following changes since commit 5204b499a6cae4dfd9fe762d5e6e82224892383b:
>>
>>    mailmap: Fix Stefan Weil author email (2022-12-13 15:56:57 -0500)
>>
>> are available in the Git repository at:
>>
>>    https://gitlab.com/thuth/qemu.git tags/pull-request-2022-12-14
>>
>> for you to fetch changes up to 8eeb98e2ea03639e743fdae82ae69d571d8ef0a3:
>>
>>    tests/qtest/vhost-user-blk-test: don't abort all qtests on missing envar (2022-12-14 08:55:37 +0100)
>>
>> ----------------------------------------------------------------
>> * s390x PCI fixes and improvements (for the ISM device)
>> * Fix emulated MVCP and MVCS s390x instructions
>> * Clean-ups for the e1000e qtest
>> * Enable qtests on Windows
>> * Update FreeBSD CI to version 12.4
>> * Check --disable-tcg for ppc64 in the CI
>> * Improve scripts/make-releases a little bit
>> * Many other misc small clean-ups and fixes here and there
> 
> Hi; this fails to compile:
> 
> ../../util/qemu-config.c: In function 'objprop_to_cmdline_prop':
> ../../util/qemu-config.c:165:13: error: 'CommandLineParameterInfo' has
> no member named 'has_help'
>    165 |         info->has_help = true;
>        |             ^~
> ../../util/qemu-config.c: In function 'query_all_machine_properties':
> ../../util/qemu-config.c:217:9: error: 'CommandLineParameterInfo' has
> no member named 'has_help'
>    217 |     info->has_help = true;
>        |         ^~
> 
> I'm afraid your pullreq has crossed in the mail with Markus'
> QAPI one, which refactored things so these QAPI structs
> no longer have has_* fields.

Right. Should be easy to fix, I'll send a v2 as soon as I've checked that it 
compiles fine everywhere...

  Thomas