[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [qemu-mainline bisection] complete build-arm64
branch xen-unstable xenbranch xen-unstable job build-arm64 testid xen-build Tree: ovmf git://xenbits.xen.org/osstest/ovmf.git Tree: qemuu git://git.qemu.org/qemu.git Tree: seabios git://xenbits.xen.org/osstest/seabios.git Tree: xen git://xenbits.xen.org/xen.git *** Found and reproduced problem changeset *** Bug is in tree: qemuu git://git.qemu.org/qemu.git Bug introduced: 782d7b30dd8e27ba24346e7c411b476db88b59e7 Bug not present: e12ce85b2c79d83a340953291912875c30b3af06 Last fail repro: http://logs.test-lab.xenproject.org/osstest/logs/156005/ commit 782d7b30dd8e27ba24346e7c411b476db88b59e7 Merge: e12ce85b2c c47110d90f Author: Peter Maydell <peter.maydell@xxxxxxxxxx> Date: Sat Oct 17 20:52:55 2020 +0100 Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging * Drop ninjatool and just require ninja (Paolo) * Fix docs build under msys2 (Yonggang) * HAX snafu fix (Claudio) * Disable signal handlers during fuzzing (Alex) * Miscellaneous fixes (Bruce, Greg) # gpg: Signature made Sat 17 Oct 2020 15:45:56 BST # gpg: using RSA key F13338574B662389866C7682BFFBD25F78C7AE83 # gpg: issuer "pbonzini@xxxxxxxxxx" # gpg: Good signature from "Paolo Bonzini <bonzini@xxxxxxx>" [full] # gpg: aka "Paolo Bonzini <pbonzini@xxxxxxxxxx>" [full] # Primary key fingerprint: 46F5 9FBD 57D6 12E7 BFD4 E2F7 7E15 100C CD36 69B1 # Subkey fingerprint: F133 3857 4B66 2389 866C 7682 BFFB D25F 78C7 AE83 * remotes/bonzini-gitlab/tags/for-upstream: (22 commits) ci: include configure and meson logs in all jobs if configure fails hax: unbreak accelerator cpu code after cpus.c split fuzz: Disable QEMU's SIG{INT,HUP,TERM} handlers cirrus: Enable doc build on msys2/mingw meson: Move the detection logic for sphinx to meson meson: move SPHINX_ARGS references within "if build_docs" docs: Fix Sphinx configuration for msys2/mingw meson: Only install icons and qemu.desktop if have_system configure: fix handling of --docdir parameter meson: cleanup curses/iconv test meson.build: don't condition iconv detection on library detection build: add --enable/--disable-libudev build: replace ninjatool with ninja build: cleanups to Makefile add ninja to dockerfiles, CI configurations and test VMs dockerfiles: enable Centos 8 PowerTools configure: move QEMU_INCLUDES to meson tests: add missing generated sources to testqapi make: run shell with pipefail tests/Makefile.include: unbreak non-tcg builds ... Signed-off-by: Peter Maydell <peter.maydell@xxxxxxxxxx> commit c47110d90fa5401bcc42c17f8ae0724a1c96599a Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Fri Oct 16 05:49:28 2020 -0400 ci: include configure and meson logs in all jobs if configure fails Reviewed-by: Philippe Mathieu-Daudé <f4bug@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit a1b0e4613006704fb02209df548ce9fde62232e0 Author: Claudio Fontana <cfontana@xxxxxxx> Date: Fri Oct 16 10:00:32 2020 +0200 hax: unbreak accelerator cpu code after cpus.c split during my split of cpus.c, code line "current_cpu = cpu" was removed by mistake, causing hax to break. This commit fixes the situation restoring it. Reported-by: Volker Rümelin <vr_qemu@xxxxxxxxxxx> Fixes: e92558e4bf8059ce4f0b310afe218802b72766bc Signed-off-by: Claudio Fontana <cfontana@xxxxxxx> Message-Id: <20201016080032.13914-1-cfontana@xxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit fc69fa216cf52709b1279a592364e50c674db6ff Author: Alexander Bulekov <alxndr@xxxxxx> Date: Wed Oct 14 10:21:57 2020 -0400 fuzz: Disable QEMU's SIG{INT,HUP,TERM} handlers Prior to this patch, the only way I found to terminate the fuzzer was either to: 1. Explicitly specify the number of fuzzer runs with the -runs= flag 2. SIGKILL the process with "pkill -9 qemu-fuzz-*" or similar In addition to being annoying to deal with, SIGKILLing the process skips over any exit handlers(e.g. registered with atexit()). This is bad, since some fuzzers might create temporary files that should ideally be removed on exit using an exit handler. The only way to achieve a clean exit now is to specify -runs=N , but the desired "N" is tricky to identify prior to fuzzing. Why doesn't the process exit with standard SIGINT,SIGHUP,SIGTERM signals? QEMU installs its own handlers for these signals in os-posix.c:os_setup_signal_handling, which notify the main loop that an exit was requested. The fuzzer, however, does not run qemu_main_loop, which performs the main_loop_should_exit() check. This means that the fuzzer effectively ignores these signals. As we don't really care about cleanly stopping the disposable fuzzer "VM", this patch uninstalls QEMU's signal handlers. Thus, we can stop the fuzzer with SIG{INT,HUP,TERM} and the fuzzing code can optionally use atexit() to clean up temporary files/resources. Reviewed-by: Darren Kenny <darren.kenny@xxxxxxxxxx> Signed-off-by: Alexander Bulekov <alxndr@xxxxxx> Message-Id: <20201014142157.46028-1-alxndr@xxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 5bfb4f52fe897f5594a0089891e19c78d3ecd672 Author: Yonggang Luo <luoyonggang@xxxxxxxxx> Date: Fri Oct 16 06:06:26 2020 +0800 cirrus: Enable doc build on msys2/mingw Currently rST depends on old version sphinx-2.x. Install it by downloading it. Remove the need of university mirror, the main repo are recovered. Signed-off-by: Yonggang Luo <luoyonggang@xxxxxxxxx> Message-Id: <20201015220626.418-5-luoyonggang@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit e36676604683c1ee12963d83eaaf3d3c2a1790ce Author: Yonggang Luo <luoyonggang@xxxxxxxxx> Date: Fri Oct 16 06:06:25 2020 +0800 meson: Move the detection logic for sphinx to meson Signed-off-by: Yonggang Luo <luoyonggang@xxxxxxxxx> Message-Id: <20201015220626.418-4-luoyonggang@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 9dc6ee3fd78a478935eecf936cddd575c6dfb20a Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Fri Oct 16 04:05:26 2020 -0400 meson: move SPHINX_ARGS references within "if build_docs" Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit a94a689cc5c5b2a1fbba4dd418e456a14e6e12e5 Author: Yonggang Luo <luoyonggang@xxxxxxxxx> Date: Fri Oct 16 06:06:23 2020 +0800 docs: Fix Sphinx configuration for msys2/mingw Python doesn't support running ../scripts/kernel-doc directly. Signed-off-by: Yonggang Luo <luoyonggang@xxxxxxxxx> Message-Id: <20201015220626.418-2-luoyonggang@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 3856873ee404c028a47115147f21cdc4b0d25566 Author: Bruce Rogers <brogers@xxxxxxxx> Date: Thu Oct 15 14:18:40 2020 -0600 meson: Only install icons and qemu.desktop if have_system These files are not needed for a linux-user only install. Signed-off-by: Bruce Rogers <brogers@xxxxxxxx> Message-Id: <20201015201840.282956-1-brogers@xxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit c6502638075557ff38fbb874af32f91186b667eb Author: Bruce Rogers <brogers@xxxxxxxx> Date: Thu Oct 15 13:07:42 2020 -0600 configure: fix handling of --docdir parameter Commit ca8c0909f01 changed qemu_docdir to be docdir, then later uses the qemu_docdir name in the final assignment. Unfortunately, one instance of qemu_docdir was missed: the one which comes from the --docdir parameter. This patch restores the proper handling of the --docdir parameter. Fixes: ca8c0909f01 ("configure: build docdir like other suffixed directories") Signed-off-by: Bruce Rogers <brogers@xxxxxxxx> Reviewed-by: Philippe Mathieu-Daudé <philmd@xxxxxxxxxx> Message-Id: <20201015190742.270629-1-brogers@xxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 30fe76b17cc5aad395eb8a8a3da59e377a0b3d8e Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Oct 15 13:26:50 2020 -0400 meson: cleanup curses/iconv test Skip the test if it is system emulation is not requested, and differentiate errors for lack of iconv and lack of curses. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit ac0c8351abf79f3b65105ea27bd0491387d804f6 Author: Bruce Rogers <brogers@xxxxxxxx> Date: Wed Oct 14 16:19:39 2020 -0600 meson.build: don't condition iconv detection on library detection It isn't necessarily the case that use of iconv requires an additional library. For that reason we shouldn't conditionalize iconv detection on libiconv.found. Fixes: 5285e593c33 (configure: Fixes ncursesw detection under msys2/mingw by convert them to meson) Signed-off-by: Bruce Rogers <brogers@xxxxxxxx> Reviewed-by: Yonggang Luo<l <brogers@xxxxxxxx>uoyonggang@xxxxxxxxx> Reviewed-by:Yonggang Luo <luoyonggang@xxxxxxxxx> Message-Id: <20201014221939.196958-1-brogers@xxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 5c53015a480b3fe137ebd8b3b584a595c65e8f21 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Oct 15 06:09:27 2020 -0400 build: add --enable/--disable-libudev Initially, libudev detection was bundled with --enable-mpath because qemu-pr-helper was the only user of libudev. Recently however the USB U2F emulation has also started using libudev, so add a separate option. This also allows 1) disabling libudev if desired for static builds and 2) for non-static builds, requiring libudev even if multipath support is undesirable. The multipath test is adjusted, because it is now possible to enter it with configurations that should fail, such as --static --enable-mpath --disable-libudev. Reported-by: Peter Maydell <peter.maydell@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 09e93326e448ab43fa26a9e2d9cc20ecf951f32b Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Aug 13 09:28:11 2020 -0400 build: replace ninjatool with ninja Now that the build is done entirely by Meson, there is no need to keep the Makefile conversion. Instead, we can ask Ninja about the targets it exposes and forward them. The main advantages are, from smallest to largest: - reducing the possible namespace pollution within the Makefile - removal of a relatively large Python program - faster build because parsing Makefile.ninja is slower than parsing build.ninja; and faster build after Meson runs because we do not have to generate Makefile.ninja. - tracking of command lines, which provides more accurate rebuilds In addition the change removes the requirement for GNU make 3.82, which was annoying on Mac, and avoids bugs on Windows due to ninjatool not knowing how to convert Windows escapes to POSIX escapes. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 2b8575bd5fbc8a8880e9ecfb1c7e7990feb1fea6 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Oct 15 12:20:02 2020 -0400 build: cleanups to Makefile Group similar rules, add comments to "else" and "endif" lines, detect too-old config-host.mak before messing things up. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 345d7053ca4a39b0496366f3c953ae2681570ce3 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Aug 13 09:58:50 2020 -0400 add ninja to dockerfiles, CI configurations and test VMs Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Acked-by: Alex Bennée <alex.bennee@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit f2f984a3b3bc8322df2efa3937bf11e8ea2bcaa5 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Wed Oct 14 07:12:37 2020 -0400 dockerfiles: enable Centos 8 PowerTools ninja is included in the CentOS PowerTools repository. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 1e6e616dc21a8117cbe36a7e9026221b566cdf56 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Wed Oct 14 08:45:42 2020 -0400 configure: move QEMU_INCLUDES to meson Confusingly, QEMU_INCLUDES is not used by configure tests. Moving it to meson.build ensures that Windows paths are specified instead of the msys paths like /c/Users/... Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 97d6efd0a3f3a08942de6c2aee5d2983c54ca84c Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Wed Oct 14 07:20:17 2020 -0400 tests: add missing generated sources to testqapi Ninja notices them due to a different order in visiting the graph. Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 3bf4583580ab705de1beff6222e934239c3a0356 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Wed Oct 14 07:35:13 2020 -0400 make: run shell with pipefail Without pipefail, it is possible to miss failures if the recipes include pipes. Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 88da4b043b4f91a265947149b1cd6758c046a4bd Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Tue Oct 13 21:21:21 2020 +0200 tests/Makefile.include: unbreak non-tcg builds Remove from check-block the requirement that all TARGET_DIRS are built. Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit e90df5eada4e6047548203d781bd61ddcc45d7b4 Author: Greg Kurz <groug@xxxxxxxx> Date: Thu Oct 15 16:49:06 2020 +0200 Makefile: Ensure cscope.out/tags/TAGS are generated in the source tree Tools usually expect the index files to be in the source tree, eg. emacs. This is already the case when doing out-of-tree builds, but with in-tree builds they end up in the build directory. Force cscope, ctags and etags to put them in the source tree. Signed-off-by: Greg Kurz <groug@xxxxxxxx> Message-Id: <160277334665.1754102.10921580280105870386.stgit@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 6ebd89cf9ca3f5a6948542c4522b9380b1e9539f Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Oct 15 03:20:45 2020 -0400 submodules: bump meson to 0.55.3 This adds some bugfixes, and allows MSYS2 to configure without "--ninja=ninja". Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> For bisection revision-tuple graph see: http://logs.test-lab.xenproject.org/osstest/results/bisect/qemu-mainline/build-arm64.xen-build.html Revision IDs in each graph node refer, respectively, to the Trees above. ---------------------------------------- Running cs-bisection-step --graph-out=/home/logs/results/bisect/qemu-mainline/build-arm64.xen-build --summary-out=tmp/156005.bisection-summary --basis-template=152631 --blessings=real,real-bisect,real-retry qemu-mainline build-arm64 xen-build Searching for failure / basis pass: 155979 fail [host=rochester0] / 155971 ok. Failure / basis pass flights: 155979 / 155971 Tree: ovmf git://xenbits.xen.org/osstest/ovmf.git Tree: qemuu git://git.qemu.org/qemu.git Tree: seabios git://xenbits.xen.org/osstest/seabios.git Tree: xen git://xenbits.xen.org/xen.git Latest 709b163940c55604b983400eb49dad144a2aa091 ba2a9a9e6318bfd93a2306dec40137e198205b86 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc Basis pass 73e3cb6c7eea4f5db81c87574dcefe1282de4772 e12ce85b2c79d83a340953291912875c30b3af06 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc Generating revisions with ./adhoc-revtuple-generator git://xenbits.xen.org/osstest/ovmf.git#73e3cb6c7eea4f5db81c87574dcefe1282de4772-709b163940c55604b983400eb49dad144a2aa091 git://git.qemu.org/qemu.git#e12ce85b2c79d83a340953291912875c30b3af06-ba2a9a9e6318bfd93a2306dec40137e198205b86 git://xenbits.xen.org/osstest/seabios.git#58a44be024f69d2e4d2b58553529230abdd3935e-58a44be024f69d2e4d2b58553529230abdd3935e git://xenbits.xen.org/xen.git#0dfddb2116e3757f77a691a3fe335173088d69dc-0dfddb2116e3757f77a6\ 91a3fe335173088d69dc Loaded 29910 nodes in revision graph Searching for test results: 155953 [host=laxton1] 155971 pass 73e3cb6c7eea4f5db81c87574dcefe1282de4772 e12ce85b2c79d83a340953291912875c30b3af06 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 155979 fail 709b163940c55604b983400eb49dad144a2aa091 ba2a9a9e6318bfd93a2306dec40137e198205b86 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 155995 pass 73e3cb6c7eea4f5db81c87574dcefe1282de4772 e12ce85b2c79d83a340953291912875c30b3af06 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 155996 fail 709b163940c55604b983400eb49dad144a2aa091 ba2a9a9e6318bfd93a2306dec40137e198205b86 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 155997 pass 709b163940c55604b983400eb49dad144a2aa091 dc7a05da69613d5c87ec0359c5dbb9d2b4765301 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 155999 pass 709b163940c55604b983400eb49dad144a2aa091 31a6f3534aba275aa9b3da21a58e79065ba865b5 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 156000 fail 709b163940c55604b983400eb49dad144a2aa091 782d7b30dd8e27ba24346e7c411b476db88b59e7 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 156001 fail 73e3cb6c7eea4f5db81c87574dcefe1282de4772 782d7b30dd8e27ba24346e7c411b476db88b59e7 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 156002 pass 73e3cb6c7eea4f5db81c87574dcefe1282de4772 e12ce85b2c79d83a340953291912875c30b3af06 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 156003 fail 73e3cb6c7eea4f5db81c87574dcefe1282de4772 782d7b30dd8e27ba24346e7c411b476db88b59e7 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 156004 pass 73e3cb6c7eea4f5db81c87574dcefe1282de4772 e12ce85b2c79d83a340953291912875c30b3af06 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc 156005 fail 73e3cb6c7eea4f5db81c87574dcefe1282de4772 782d7b30dd8e27ba24346e7c411b476db88b59e7 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc Searching for interesting versions Result found: flight 155971 (pass), for basis pass Result found: flight 155979 (fail), for basis failure Repro found: flight 155995 (pass), for basis pass Repro found: flight 155996 (fail), for basis failure 0 revisions at 73e3cb6c7eea4f5db81c87574dcefe1282de4772 e12ce85b2c79d83a340953291912875c30b3af06 58a44be024f69d2e4d2b58553529230abdd3935e 0dfddb2116e3757f77a691a3fe335173088d69dc No revisions left to test, checking graph state. Result found: flight 155971 (pass), for last pass Result found: flight 156001 (fail), for first failure Repro found: flight 156002 (pass), for last pass Repro found: flight 156003 (fail), for first failure Repro found: flight 156004 (pass), for last pass Repro found: flight 156005 (fail), for first failure *** Found and reproduced problem changeset *** Bug is in tree: qemuu git://git.qemu.org/qemu.git Bug introduced: 782d7b30dd8e27ba24346e7c411b476db88b59e7 Bug not present: e12ce85b2c79d83a340953291912875c30b3af06 Last fail repro: http://logs.test-lab.xenproject.org/osstest/logs/156005/ commit 782d7b30dd8e27ba24346e7c411b476db88b59e7 Merge: e12ce85b2c c47110d90f Author: Peter Maydell <peter.maydell@xxxxxxxxxx> Date: Sat Oct 17 20:52:55 2020 +0100 Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging * Drop ninjatool and just require ninja (Paolo) * Fix docs build under msys2 (Yonggang) * HAX snafu fix (Claudio) * Disable signal handlers during fuzzing (Alex) * Miscellaneous fixes (Bruce, Greg) # gpg: Signature made Sat 17 Oct 2020 15:45:56 BST # gpg: using RSA key F13338574B662389866C7682BFFBD25F78C7AE83 # gpg: issuer "pbonzini@xxxxxxxxxx" # gpg: Good signature from "Paolo Bonzini <bonzini@xxxxxxx>" [full] # gpg: aka "Paolo Bonzini <pbonzini@xxxxxxxxxx>" [full] # Primary key fingerprint: 46F5 9FBD 57D6 12E7 BFD4 E2F7 7E15 100C CD36 69B1 # Subkey fingerprint: F133 3857 4B66 2389 866C 7682 BFFB D25F 78C7 AE83 * remotes/bonzini-gitlab/tags/for-upstream: (22 commits) ci: include configure and meson logs in all jobs if configure fails hax: unbreak accelerator cpu code after cpus.c split fuzz: Disable QEMU's SIG{INT,HUP,TERM} handlers cirrus: Enable doc build on msys2/mingw meson: Move the detection logic for sphinx to meson meson: move SPHINX_ARGS references within "if build_docs" docs: Fix Sphinx configuration for msys2/mingw meson: Only install icons and qemu.desktop if have_system configure: fix handling of --docdir parameter meson: cleanup curses/iconv test meson.build: don't condition iconv detection on library detection build: add --enable/--disable-libudev build: replace ninjatool with ninja build: cleanups to Makefile add ninja to dockerfiles, CI configurations and test VMs dockerfiles: enable Centos 8 PowerTools configure: move QEMU_INCLUDES to meson tests: add missing generated sources to testqapi make: run shell with pipefail tests/Makefile.include: unbreak non-tcg builds ... Signed-off-by: Peter Maydell <peter.maydell@xxxxxxxxxx> commit c47110d90fa5401bcc42c17f8ae0724a1c96599a Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Fri Oct 16 05:49:28 2020 -0400 ci: include configure and meson logs in all jobs if configure fails Reviewed-by: Philippe Mathieu-Daudé <f4bug@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit a1b0e4613006704fb02209df548ce9fde62232e0 Author: Claudio Fontana <cfontana@xxxxxxx> Date: Fri Oct 16 10:00:32 2020 +0200 hax: unbreak accelerator cpu code after cpus.c split during my split of cpus.c, code line "current_cpu = cpu" was removed by mistake, causing hax to break. This commit fixes the situation restoring it. Reported-by: Volker Rümelin <vr_qemu@xxxxxxxxxxx> Fixes: e92558e4bf8059ce4f0b310afe218802b72766bc Signed-off-by: Claudio Fontana <cfontana@xxxxxxx> Message-Id: <20201016080032.13914-1-cfontana@xxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit fc69fa216cf52709b1279a592364e50c674db6ff Author: Alexander Bulekov <alxndr@xxxxxx> Date: Wed Oct 14 10:21:57 2020 -0400 fuzz: Disable QEMU's SIG{INT,HUP,TERM} handlers Prior to this patch, the only way I found to terminate the fuzzer was either to: 1. Explicitly specify the number of fuzzer runs with the -runs= flag 2. SIGKILL the process with "pkill -9 qemu-fuzz-*" or similar In addition to being annoying to deal with, SIGKILLing the process skips over any exit handlers(e.g. registered with atexit()). This is bad, since some fuzzers might create temporary files that should ideally be removed on exit using an exit handler. The only way to achieve a clean exit now is to specify -runs=N , but the desired "N" is tricky to identify prior to fuzzing. Why doesn't the process exit with standard SIGINT,SIGHUP,SIGTERM signals? QEMU installs its own handlers for these signals in os-posix.c:os_setup_signal_handling, which notify the main loop that an exit was requested. The fuzzer, however, does not run qemu_main_loop, which performs the main_loop_should_exit() check. This means that the fuzzer effectively ignores these signals. As we don't really care about cleanly stopping the disposable fuzzer "VM", this patch uninstalls QEMU's signal handlers. Thus, we can stop the fuzzer with SIG{INT,HUP,TERM} and the fuzzing code can optionally use atexit() to clean up temporary files/resources. Reviewed-by: Darren Kenny <darren.kenny@xxxxxxxxxx> Signed-off-by: Alexander Bulekov <alxndr@xxxxxx> Message-Id: <20201014142157.46028-1-alxndr@xxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 5bfb4f52fe897f5594a0089891e19c78d3ecd672 Author: Yonggang Luo <luoyonggang@xxxxxxxxx> Date: Fri Oct 16 06:06:26 2020 +0800 cirrus: Enable doc build on msys2/mingw Currently rST depends on old version sphinx-2.x. Install it by downloading it. Remove the need of university mirror, the main repo are recovered. Signed-off-by: Yonggang Luo <luoyonggang@xxxxxxxxx> Message-Id: <20201015220626.418-5-luoyonggang@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit e36676604683c1ee12963d83eaaf3d3c2a1790ce Author: Yonggang Luo <luoyonggang@xxxxxxxxx> Date: Fri Oct 16 06:06:25 2020 +0800 meson: Move the detection logic for sphinx to meson Signed-off-by: Yonggang Luo <luoyonggang@xxxxxxxxx> Message-Id: <20201015220626.418-4-luoyonggang@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 9dc6ee3fd78a478935eecf936cddd575c6dfb20a Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Fri Oct 16 04:05:26 2020 -0400 meson: move SPHINX_ARGS references within "if build_docs" Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit a94a689cc5c5b2a1fbba4dd418e456a14e6e12e5 Author: Yonggang Luo <luoyonggang@xxxxxxxxx> Date: Fri Oct 16 06:06:23 2020 +0800 docs: Fix Sphinx configuration for msys2/mingw Python doesn't support running ../scripts/kernel-doc directly. Signed-off-by: Yonggang Luo <luoyonggang@xxxxxxxxx> Message-Id: <20201015220626.418-2-luoyonggang@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 3856873ee404c028a47115147f21cdc4b0d25566 Author: Bruce Rogers <brogers@xxxxxxxx> Date: Thu Oct 15 14:18:40 2020 -0600 meson: Only install icons and qemu.desktop if have_system These files are not needed for a linux-user only install. Signed-off-by: Bruce Rogers <brogers@xxxxxxxx> Message-Id: <20201015201840.282956-1-brogers@xxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit c6502638075557ff38fbb874af32f91186b667eb Author: Bruce Rogers <brogers@xxxxxxxx> Date: Thu Oct 15 13:07:42 2020 -0600 configure: fix handling of --docdir parameter Commit ca8c0909f01 changed qemu_docdir to be docdir, then later uses the qemu_docdir name in the final assignment. Unfortunately, one instance of qemu_docdir was missed: the one which comes from the --docdir parameter. This patch restores the proper handling of the --docdir parameter. Fixes: ca8c0909f01 ("configure: build docdir like other suffixed directories") Signed-off-by: Bruce Rogers <brogers@xxxxxxxx> Reviewed-by: Philippe Mathieu-Daudé <philmd@xxxxxxxxxx> Message-Id: <20201015190742.270629-1-brogers@xxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 30fe76b17cc5aad395eb8a8a3da59e377a0b3d8e Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Oct 15 13:26:50 2020 -0400 meson: cleanup curses/iconv test Skip the test if it is system emulation is not requested, and differentiate errors for lack of iconv and lack of curses. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit ac0c8351abf79f3b65105ea27bd0491387d804f6 Author: Bruce Rogers <brogers@xxxxxxxx> Date: Wed Oct 14 16:19:39 2020 -0600 meson.build: don't condition iconv detection on library detection It isn't necessarily the case that use of iconv requires an additional library. For that reason we shouldn't conditionalize iconv detection on libiconv.found. Fixes: 5285e593c33 (configure: Fixes ncursesw detection under msys2/mingw by convert them to meson) Signed-off-by: Bruce Rogers <brogers@xxxxxxxx> Reviewed-by: Yonggang Luo<l <brogers@xxxxxxxx>uoyonggang@xxxxxxxxx> Reviewed-by:Yonggang Luo <luoyonggang@xxxxxxxxx> Message-Id: <20201014221939.196958-1-brogers@xxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 5c53015a480b3fe137ebd8b3b584a595c65e8f21 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Oct 15 06:09:27 2020 -0400 build: add --enable/--disable-libudev Initially, libudev detection was bundled with --enable-mpath because qemu-pr-helper was the only user of libudev. Recently however the USB U2F emulation has also started using libudev, so add a separate option. This also allows 1) disabling libudev if desired for static builds and 2) for non-static builds, requiring libudev even if multipath support is undesirable. The multipath test is adjusted, because it is now possible to enter it with configurations that should fail, such as --static --enable-mpath --disable-libudev. Reported-by: Peter Maydell <peter.maydell@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 09e93326e448ab43fa26a9e2d9cc20ecf951f32b Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Aug 13 09:28:11 2020 -0400 build: replace ninjatool with ninja Now that the build is done entirely by Meson, there is no need to keep the Makefile conversion. Instead, we can ask Ninja about the targets it exposes and forward them. The main advantages are, from smallest to largest: - reducing the possible namespace pollution within the Makefile - removal of a relatively large Python program - faster build because parsing Makefile.ninja is slower than parsing build.ninja; and faster build after Meson runs because we do not have to generate Makefile.ninja. - tracking of command lines, which provides more accurate rebuilds In addition the change removes the requirement for GNU make 3.82, which was annoying on Mac, and avoids bugs on Windows due to ninjatool not knowing how to convert Windows escapes to POSIX escapes. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 2b8575bd5fbc8a8880e9ecfb1c7e7990feb1fea6 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Oct 15 12:20:02 2020 -0400 build: cleanups to Makefile Group similar rules, add comments to "else" and "endif" lines, detect too-old config-host.mak before messing things up. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 345d7053ca4a39b0496366f3c953ae2681570ce3 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Aug 13 09:58:50 2020 -0400 add ninja to dockerfiles, CI configurations and test VMs Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Acked-by: Alex Bennée <alex.bennee@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit f2f984a3b3bc8322df2efa3937bf11e8ea2bcaa5 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Wed Oct 14 07:12:37 2020 -0400 dockerfiles: enable Centos 8 PowerTools ninja is included in the CentOS PowerTools repository. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 1e6e616dc21a8117cbe36a7e9026221b566cdf56 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Wed Oct 14 08:45:42 2020 -0400 configure: move QEMU_INCLUDES to meson Confusingly, QEMU_INCLUDES is not used by configure tests. Moving it to meson.build ensures that Windows paths are specified instead of the msys paths like /c/Users/... Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 97d6efd0a3f3a08942de6c2aee5d2983c54ca84c Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Wed Oct 14 07:20:17 2020 -0400 tests: add missing generated sources to testqapi Ninja notices them due to a different order in visiting the graph. Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 3bf4583580ab705de1beff6222e934239c3a0356 Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Wed Oct 14 07:35:13 2020 -0400 make: run shell with pipefail Without pipefail, it is possible to miss failures if the recipes include pipes. Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 88da4b043b4f91a265947149b1cd6758c046a4bd Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Tue Oct 13 21:21:21 2020 +0200 tests/Makefile.include: unbreak non-tcg builds Remove from check-block the requirement that all TARGET_DIRS are built. Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit e90df5eada4e6047548203d781bd61ddcc45d7b4 Author: Greg Kurz <groug@xxxxxxxx> Date: Thu Oct 15 16:49:06 2020 +0200 Makefile: Ensure cscope.out/tags/TAGS are generated in the source tree Tools usually expect the index files to be in the source tree, eg. emacs. This is already the case when doing out-of-tree builds, but with in-tree builds they end up in the build directory. Force cscope, ctags and etags to put them in the source tree. Signed-off-by: Greg Kurz <groug@xxxxxxxx> Message-Id: <160277334665.1754102.10921580280105870386.stgit@xxxxxxxxx> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> commit 6ebd89cf9ca3f5a6948542c4522b9380b1e9539f Author: Paolo Bonzini <pbonzini@xxxxxxxxxx> Date: Thu Oct 15 03:20:45 2020 -0400 submodules: bump meson to 0.55.3 This adds some bugfixes, and allows MSYS2 to configure without "--ninja=ninja". Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> Revision graph left in /home/logs/results/bisect/qemu-mainline/build-arm64.xen-build.{dot,ps,png,html,svg}. ---------------------------------------- 156005: tolerable ALL FAIL flight 156005 qemu-mainline real-bisect [real] http://logs.test-lab.xenproject.org/osstest/logs/156005/ Failures :-/ but no regressions. Tests which did not succeed, including tests which could not be run: build-arm64 6 xen-build fail baseline untested jobs: build-arm64 fail ------------------------------------------------------------ sg-report-flight on osstest.test-lab.xenproject.org logs: /home/logs/logs images: /home/logs/images Logs, config files, etc. are available at http://logs.test-lab.xenproject.org/osstest/logs Explanation of these reports, and of osstest in general, is at http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README.email;hb=master http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README;hb=master Test harness code can be found at http://xenbits.xen.org/gitweb?p=osstest.git;a=summary
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |