[PULL v4 00/18] Build system and KVM changes for 2021-12-23

Paolo Bonzini posted 18 patches 2 years, 3 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220110144034.67410-1-pbonzini@redhat.com
Maintainers: Eduardo Habkost <eduardo@habkost.net>, Hanna Reitz <hreitz@redhat.com>, "Alex Bennée" <alex.bennee@linaro.org>, Christian Borntraeger <borntraeger@linux.ibm.com>, Marcelo Tosatti <mtosatti@redhat.com>, Laurent Vivier <lvivier@redhat.com>, Cornelia Huck <cohuck@redhat.com>, Thomas Huth <thuth@redhat.com>, Kevin Wolf <kwolf@redhat.com>, Cleber Rosa <crosa@redhat.com>, Riku Voipio <riku.voipio@iki.fi>, Laurent Vivier <laurent@vivier.eu>, Warner Losh <imp@bsdimp.com>, Kyle Evans <kevans@freebsd.org>, Alexandre Iooss <erdnaxe@crans.org>, Paolo Bonzini <pbonzini@redhat.com>, Mahmoud Mandour <ma.mandourr@gmail.com>
There is a newer version of this series
Makefile                                           |  11 +-
block/file-posix.c                                 |  37 ++--
bsd-user/{ => include}/special-errno.h             |   0
bsd-user/meson.build                               |   2 +-
common-user/meson.build                            |   2 +-
configure                                          | 189 ++++-----------------
contrib/elf2dmp/meson.build                        |   2 +-
contrib/ivshmem-client/meson.build                 |   2 +-
contrib/ivshmem-server/meson.build                 |   2 +-
contrib/rdmacm-mux/meson.build                     |   2 +-
.../{ => include}/host/aarch64/host-signal.h       |   0
linux-user/{ => include}/host/alpha/host-signal.h  |   0
linux-user/{ => include}/host/arm/host-signal.h    |   0
linux-user/{ => include}/host/i386/host-signal.h   |   0
.../{ => include}/host/loongarch64/host-signal.h   |   0
linux-user/{ => include}/host/mips/host-signal.h   |   0
linux-user/{ => include}/host/ppc/host-signal.h    |   0
linux-user/{ => include}/host/ppc64/host-signal.h  |   0
linux-user/{ => include}/host/riscv/host-signal.h  |   0
linux-user/{ => include}/host/s390/host-signal.h   |   0
linux-user/{ => include}/host/s390x/host-signal.h  |   0
linux-user/{ => include}/host/sparc/host-signal.h  |   0
.../{ => include}/host/sparc64/host-signal.h       |   0
linux-user/{ => include}/host/x32/host-signal.h    |   0
linux-user/{ => include}/host/x86_64/host-signal.h |   0
linux-user/{ => include}/special-errno.h           |   0
linux-user/meson.build                             |   4 +-
meson.build                                        |  37 ++--
pc-bios/s390-ccw/Makefile                          |   2 -
plugins/meson.build                                |  13 +-
scripts/make-config-poison.sh                      |  16 ++
scripts/meson-buildoptions.py                      |  21 ++-
scripts/meson-buildoptions.sh                      |   3 +
target/i386/cpu.h                                  |   3 +
target/i386/kvm/kvm.c                              | 130 ++++++++++++--
target/i386/machine.c                              |  29 ++++
tests/qtest/meson.build                            |   3 +-
tests/tcg/Makefile.target                          |   2 +-
tests/unit/meson.build                             |   2 +-
util/meson.build                                   |   7 +-
40 files changed, 275 insertions(+), 246 deletions(-)
rename bsd-user/{ => include}/special-errno.h (100%)
rename linux-user/{ => include}/host/aarch64/host-signal.h (100%)
rename linux-user/{ => include}/host/alpha/host-signal.h (100%)
rename linux-user/{ => include}/host/arm/host-signal.h (100%)
rename linux-user/{ => include}/host/i386/host-signal.h (100%)
rename linux-user/{ => include}/host/loongarch64/host-signal.h (100%)
rename linux-user/{ => include}/host/mips/host-signal.h (100%)
rename linux-user/{ => include}/host/ppc/host-signal.h (100%)
rename linux-user/{ => include}/host/ppc64/host-signal.h (100%)
rename linux-user/{ => include}/host/riscv/host-signal.h (100%)
rename linux-user/{ => include}/host/s390/host-signal.h (100%)
rename linux-user/{ => include}/host/s390x/host-signal.h (100%)
rename linux-user/{ => include}/host/sparc/host-signal.h (100%)
rename linux-user/{ => include}/host/sparc64/host-signal.h (100%)
rename linux-user/{ => include}/host/x32/host-signal.h (100%)
rename linux-user/{ => include}/host/x86_64/host-signal.h (100%)
rename linux-user/{ => include}/special-errno.h (100%)
create mode 100755 scripts/make-config-poison.sh
[PULL v4 00/18] Build system and KVM changes for 2021-12-23
Posted by Paolo Bonzini 2 years, 3 months ago
The following changes since commit afe33262585565b64df706c62b4b0f6e0ad30c71:

  Merge tag 'pull-riscv-to-apply-20220108' of github.com:alistair23/qemu into staging (2022-01-07 22:09:24 -0800)

are available in the Git repository at:

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

for you to fetch changes up to fb714a07243a88c41002c23a24e174c5d9d40d57:

  meson: reenable filemonitor-inotify compilation (2022-01-09 17:45:02 +0100)

----------------------------------------------------------------
* configure and meson cleanups
* KVM_GET/SET_SREGS2 support for x86

----------------------------------------------------------------
Maxim Levitsky (1):
      KVM: use KVM_{GET|SET}_SREGS2 when supported.

Paolo Bonzini (14):
      meson: reuse common_user_inc when building files specific to user-mode emulators
      user: move common-user includes to a subdirectory of {bsd,linux}-user/
      meson: cleanup common-user/ build
      configure: simplify creation of plugin symbol list
      configure: do not set bsd_user/linux_user early
      configure, makefile: remove traces of really old files
      configure: parse --enable/--disable-strip automatically, flip default
      configure: move non-command-line variables away from command-line parsing section
      meson: build contrib/ executables after generated headers
      configure, meson: move config-poison.h to meson
      meson: add comments in the target-specific flags section
      KVM: x86: ignore interrupt_bitmap field of KVM_GET/SET_SREGS
      configure: do not create roms/seabios/config.mak if SeaBIOS not present
      meson: build all modules by default

Philippe Mathieu-Daudé (1):
      tests/tcg: Fix target-specific Makefile variables path for user-mode

Thomas Huth (1):
      block/file-posix: Simplify the XFS_IOC_DIOINFO handling

Volker Rümelin (1):
      meson: reenable filemonitor-inotify compilation

 Makefile                                           |  11 +-
 block/file-posix.c                                 |  37 ++--
 bsd-user/{ => include}/special-errno.h             |   0
 bsd-user/meson.build                               |   2 +-
 common-user/meson.build                            |   2 +-
 configure                                          | 189 ++++-----------------
 contrib/elf2dmp/meson.build                        |   2 +-
 contrib/ivshmem-client/meson.build                 |   2 +-
 contrib/ivshmem-server/meson.build                 |   2 +-
 contrib/rdmacm-mux/meson.build                     |   2 +-
 .../{ => include}/host/aarch64/host-signal.h       |   0
 linux-user/{ => include}/host/alpha/host-signal.h  |   0
 linux-user/{ => include}/host/arm/host-signal.h    |   0
 linux-user/{ => include}/host/i386/host-signal.h   |   0
 .../{ => include}/host/loongarch64/host-signal.h   |   0
 linux-user/{ => include}/host/mips/host-signal.h   |   0
 linux-user/{ => include}/host/ppc/host-signal.h    |   0
 linux-user/{ => include}/host/ppc64/host-signal.h  |   0
 linux-user/{ => include}/host/riscv/host-signal.h  |   0
 linux-user/{ => include}/host/s390/host-signal.h   |   0
 linux-user/{ => include}/host/s390x/host-signal.h  |   0
 linux-user/{ => include}/host/sparc/host-signal.h  |   0
 .../{ => include}/host/sparc64/host-signal.h       |   0
 linux-user/{ => include}/host/x32/host-signal.h    |   0
 linux-user/{ => include}/host/x86_64/host-signal.h |   0
 linux-user/{ => include}/special-errno.h           |   0
 linux-user/meson.build                             |   4 +-
 meson.build                                        |  37 ++--
 pc-bios/s390-ccw/Makefile                          |   2 -
 plugins/meson.build                                |  13 +-
 scripts/make-config-poison.sh                      |  16 ++
 scripts/meson-buildoptions.py                      |  21 ++-
 scripts/meson-buildoptions.sh                      |   3 +
 target/i386/cpu.h                                  |   3 +
 target/i386/kvm/kvm.c                              | 130 ++++++++++++--
 target/i386/machine.c                              |  29 ++++
 tests/qtest/meson.build                            |   3 +-
 tests/tcg/Makefile.target                          |   2 +-
 tests/unit/meson.build                             |   2 +-
 util/meson.build                                   |   7 +-
 40 files changed, 275 insertions(+), 246 deletions(-)
 rename bsd-user/{ => include}/special-errno.h (100%)
 rename linux-user/{ => include}/host/aarch64/host-signal.h (100%)
 rename linux-user/{ => include}/host/alpha/host-signal.h (100%)
 rename linux-user/{ => include}/host/arm/host-signal.h (100%)
 rename linux-user/{ => include}/host/i386/host-signal.h (100%)
 rename linux-user/{ => include}/host/loongarch64/host-signal.h (100%)
 rename linux-user/{ => include}/host/mips/host-signal.h (100%)
 rename linux-user/{ => include}/host/ppc/host-signal.h (100%)
 rename linux-user/{ => include}/host/ppc64/host-signal.h (100%)
 rename linux-user/{ => include}/host/riscv/host-signal.h (100%)
 rename linux-user/{ => include}/host/s390/host-signal.h (100%)
 rename linux-user/{ => include}/host/s390x/host-signal.h (100%)
 rename linux-user/{ => include}/host/sparc/host-signal.h (100%)
 rename linux-user/{ => include}/host/sparc64/host-signal.h (100%)
 rename linux-user/{ => include}/host/x32/host-signal.h (100%)
 rename linux-user/{ => include}/host/x86_64/host-signal.h (100%)
 rename linux-user/{ => include}/special-errno.h (100%)
 create mode 100755 scripts/make-config-poison.sh
-- 
2.33.1


Re: [PULL v4 00/18] Build system and KVM changes for 2021-12-23
Posted by Peter Maydell 2 years, 3 months ago
On Mon, 10 Jan 2022 at 15:01, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit afe33262585565b64df706c62b4b0f6e0ad30c71:
>
>   Merge tag 'pull-riscv-to-apply-20220108' of github.com:alistair23/qemu into staging (2022-01-07 22:09:24 -0800)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to fb714a07243a88c41002c23a24e174c5d9d40d57:
>
>   meson: reenable filemonitor-inotify compilation (2022-01-09 17:45:02 +0100)

This breaks the centos-stream-8-x86_64 job:
https://gitlab.com/qemu-project/qemu/-/jobs/1959569820

because the commit "block/file-posix: Simplify the XFS_IOC_DIOINFO handling"
removes the configure --disable-xfsctl option, but that job's config
is still using it (looks like we set this up in the file
scripts/ci/org.centos/stream/8/x86_64/configure)

'git grep xfsctl' shows that scripts/coverity-scan/run-coverity-scan
is also still using --enable-xfsctl, which has similarly
been removed by that commit.

thanks
-- PMM