[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen-unstable-smoke test] 181014: trouble: broken/pass
flight 181014 xen-unstable-smoke real [real] http://logs.test-lab.xenproject.org/osstest/logs/181014/ Failures and problems with tests :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-amd64-xl-qemuu-debianhvm-amd64 <job status> broken test-amd64-amd64-xl-qemuu-debianhvm-amd64 5 host-install(5) broken REGR. vs. 180963 Tests which did not succeed, but are not blocking: test-amd64-amd64-libvirt 15 migrate-support-check fail never pass test-arm64-arm64-xl-xsm 15 migrate-support-check fail never pass test-arm64-arm64-xl-xsm 16 saverestore-support-check fail never pass test-armhf-armhf-xl 15 migrate-support-check fail never pass test-armhf-armhf-xl 16 saverestore-support-check fail never pass version targeted for testing: xen 05422d276b56f2ebc2309a84a66fc5722c45ad74 baseline version: xen f54dd5b53ee516fa1d4c106e0744ce0083acfcdc Last test of basis 180963 2023-05-26 13:01:58 Z 4 days Testing same since 181014 2023-05-30 11:02:30 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Anthony PERARD <anthony.perard@xxxxxxxxxx> Cyril Rébert <slack@xxxxxxxxx> Jan Beulich <jbeulich@xxxxxxxx> Julien Grall <jgrall@xxxxxxxxxx> Luca Fancellu <luca.fancellu@xxxxxxx> Stefano Stabellini <sstabellini@xxxxxxxxxx> Stewart Hildebrand <stewart.hildebrand@xxxxxxx> jobs: build-arm64-xsm pass build-amd64 pass build-armhf pass build-amd64-libvirt pass test-armhf-armhf-xl pass test-arm64-arm64-xl-xsm pass test-amd64-amd64-xl-qemuu-debianhvm-amd64 broken test-amd64-amd64-libvirt pass ------------------------------------------------------------ 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 broken-job test-amd64-amd64-xl-qemuu-debianhvm-amd64 broken broken-step test-amd64-amd64-xl-qemuu-debianhvm-amd64 host-install(5) Not pushing. ------------------------------------------------------------ commit 05422d276b56f2ebc2309a84a66fc5722c45ad74 Author: Anthony PERARD <anthony.perard@xxxxxxxxxx> Date: Tue May 30 12:12:59 2023 +0200 build: adjust compile.h compiler version command line CFLAGS is just from Config.mk, drop its use. Don't even bother to instead use the flags used to build Xen. Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> commit 352c917acfe1dd6afc2eee44aa4ab7c50d4bc48a Author: Jan Beulich <jbeulich@xxxxxxxx> Date: Tue May 30 12:00:34 2023 +0200 x86/vPIC: register only one ELCR handler instance There's no point consuming two port-I/O slots. Even less so considering that some real hardware permits both ports to be accessed in one go, emulating of which requires there to be only a single instance. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> commit 647377ea06b86d7356f5975e4780b9a6a81c188e Author: Stewart Hildebrand <stewart.hildebrand@xxxxxxx> Date: Tue May 30 11:59:33 2023 +0200 xen/arm: un-break build with clang clang doesn't like extern with __attribute__((__used__)): ./arch/arm/include/asm/setup.h:171:8: error: 'used' attribute ignored [-Werror,-Wignored-attributes] extern DEFINE_BOOT_PAGE_TABLE(boot_pgtable); ^ ./arch/arm/include/asm/lpae.h:273:29: note: expanded from macro 'DEFINE_BOOT_PAGE_TABLE' lpae_t __aligned(PAGE_SIZE) __section(".data.page_aligned") \$ ^ ./include/xen/compiler.h:71:27: note: expanded from macro '__section' #define __section(s) __used __attribute__((__section__(s))) ^ ./include/xen/compiler.h:104:39: note: expanded from macro '__used' #define __used __attribute__((__used__)) ^ Simplify the declarations by getting rid of the macro (and thus the __aligned/__section/__used attributes) in the header. No functional change intended as the macro/attributes are present in the respective definitions in xen/arch/arm/mm.c. Fixes: 1c78d76b67e1 ("xen/arm64: mm: Introduce helpers to prepare/enable/disable the identity mapping") Signed-off-by: Stewart Hildebrand <stewart.hildebrand@xxxxxxx> Acked-by: Julien Grall <jgrall@xxxxxxxxxx> commit 2a8a1681505d67dae5d3964f98cc1b1daf8e43f3 Author: Cyril Rébert <slack@xxxxxxxxx> Date: Tue May 30 11:57:42 2023 +0200 tools/xenstore: remove deprecated parameter from xenstore commands help Completing commit c65687e ("tools/xenstore: remove socket-only option from xenstore client"). As the socket-only option (-s) has been removed from the Xenstore access commands (xenstore-*), also remove the parameter from the commands help (xenstore-* -h). Suggested-by: Yann Dirson <yann.dirson@xxxxxxxx> Signed-off-by: Cyril Rébert <slack@xxxxxxxxx> Reviewed-by: Juergen Gross <jgross@xxxxxxxx> commit ca045140d90c7892ec0664cdb2ef3e16c97eb0b6 Author: Luca Fancellu <luca.fancellu@xxxxxxx> Date: Tue May 30 11:57:17 2023 +0200 xen/misra: xen-analysis.py: Fix cppcheck report relative paths Fix the generation of the relative path from the repo, for cppcheck reports, when the script is launching make with in-tree build. Fixes: b046f7e37489 ("xen/misra: xen-analysis.py: use the relative path from the ...") Reported-by: Michal Orzel <michal.orzel@xxxxxxx> Signed-off-by: Luca Fancellu <luca.fancellu@xxxxxxx> Acked-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> Tested-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> commit 8bd504290bc3e5fb4d04150f96a36783407661b4 Author: Luca Fancellu <luca.fancellu@xxxxxxx> Date: Tue May 30 11:57:02 2023 +0200 xen/misra: xen-analysis.py: Fix latent bug Currenly there is a latent bug that is not triggered because the function cppcheck_merge_txt_fragments is called with the parameter strip_paths having a list of only one element. The bug is that the split function should not be in the loop for strip_paths, but one level before, fix it. Fixes: 02b26c02c7c4 ("xen/scripts: add cppcheck tool to the xen-analysis.py script") Signed-off-by: Luca Fancellu <luca.fancellu@xxxxxxx> Acked-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> Tested-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> commit e56f2106b6727223bd7de03e20fedd1f94da655d Author: Jan Beulich <jbeulich@xxxxxxxx> Date: Tue May 30 11:56:22 2023 +0200 VMX/cpu-policy: disable RDTSCP and INVPCID insns as needed When either feature is available in hardware, but disabled for a guest, the respective insn would better cause #UD if attempted to be used. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Kevin Tian <kevin.tian@xxxxxxxxx> commit 233a8f20cfbe999505c7b07b359f03fc04111008 Author: Jan Beulich <jbeulich@xxxxxxxx> Date: Tue May 30 11:54:55 2023 +0200 VMX/cpu-policy: check availability of RDTSCP and INVPCID Both have separate enable bits, which are optional. While on real hardware we can perhaps expect these VMX controls to be available if (and only if) the base CPU feature is available, when running virtualized ourselves this may not be the case. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Kevin Tian <kevin.tian@xxxxxxxxx> (qemu changes not included)
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |