[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [xen-unstable-smoke test] 81805: regressions - FAIL
flight 81805 xen-unstable-smoke real [real] http://logs.test-lab.xenproject.org/osstest/logs/81805/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-amd64-amd64-libvirt 9 debian-install fail REGR. vs. 81619 Tests which did not succeed, but are not blocking: test-armhf-armhf-xl 12 migrate-support-check fail never pass test-armhf-armhf-xl 13 saverestore-support-check fail never pass version targeted for testing: xen c26b88bf644011396b4e4f6f15901a66b87d8c19 baseline version: xen 1a57a83ef71ba1bf81fe97e35ca302e6a7949649 Last test of basis 81619 2016-02-09 13:01:33 Z 1 days Testing same since 81805 2016-02-10 14:16:20 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Anthony PERARD <anthony.perard@xxxxxxxxxx> George Dunlap <george.dunlap@xxxxxxxxxx> Ian Campbell < ian.campbell@xxxxxxxxxx > Jan Beulich <jbeulich@xxxxxxxx> Razvan Cojocaru <rcojocaru@xxxxxxxxxxxxxxx> Tamas K Lengyel <tlengyel@xxxxxxxxxxx> Tim Deegan <tim@xxxxxxx> Wei Liu <wei.liu2@xxxxxxxxxx> jobs: build-amd64 pass build-armhf pass build-amd64-libvirt pass test-armhf-armhf-xl pass test-amd64-amd64-xl-qemuu-debianhvm-i386 pass test-amd64-amd64-libvirt 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 Not pushing. ------------------------------------------------------------ commit c26b88bf644011396b4e4f6f15901a66b87d8c19 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Date: Wed Feb 10 14:51:25 2016 +0100 x86: fix get_cpu_info() when built with clang Clang understands the GCCism in use here, but still complains that sp is unintialised. In such cases, resort to the older version of this code, which directly reads %rsp into the temporary variable. Note that we still keep the GCCism in the default case, as it causes GCC to create rather better assembly. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> commit 9fd8bbff561870ebe6258fdb0d66a0d5a28161eb Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Date: Wed Feb 10 14:50:59 2016 +0100 x86: improve annotation of autogen_entrypoints[] Clang complains that the __used attribute is not applicable to an extern. In this case, the only relevent attribute is that the data is constant. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> commit e0a97098e20d8fe334b76b37dd6fb0a358a6953c Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Date: Wed Feb 10 14:50:37 2016 +0100 x86: fix section type mismatch in mm.c Clang doesn't like mixing const and non-const data in the same section. Move zero_page into .bss.page_aligned.const and wildcard .bss.page_aligned when linking. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: George Dunlap <george.dunlap@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> commit c86aa9a250ca0c87760b369f295f67ae01542fa9 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Date: Wed Feb 10 14:50:15 2016 +0100 x86: remove %z modifier from inline assembly Clang doesn't support the %z modifier. Replace both uses with an explicit l suffix, and cover the changes with BUILD_BUG_ON()s Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> commit e49cce6e514edab788160c3664dea97a03b266eb Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Date: Wed Feb 10 14:49:06 2016 +0100 remove or annotate possibly-unused functions Clang notices more unused functions than GCC. * sh_next_page() is only used at GUEST_PAGING_LEVELS=2, so remove it from the other guest level translation units * rcu_batch_after() is completely unused. * Various of the COMPAT() generated functions are used only for their BUILD_BUG_ON() properties. Annotate them all as __maybe_used. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Tim Deegan <tim@xxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> commit 70cbc38d774af77b6a05ffb2d8fb7e0a38025378 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Date: Wed Feb 10 14:48:36 2016 +0100 xen/lib.h: fix ASSERT() to build with clang Clang warns about a semicolon immediately following an if() clause as a possible mistake, and recommends putting the semicolon on a new line if it was intentional. A newline is not an option here, so use a set of empty braces instead. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> commit 21bc42de1e15aa40bbc4e576ece33375f38efd8d Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Date: Wed Feb 10 14:47:01 2016 +0100 fix XSM build following c/s 92942fd Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> commit 4ab3ac074cb1f101f42e02103fa263a1f4f422b5 Author: Anthony PERARD <anthony.perard@xxxxxxxxxx> Date: Wed Feb 10 14:46:45 2016 +0100 hvmloader: fix scratch_alloc to avoid overlaps scratch_alloc() set scratch_start to the last byte of the current allocation. The value of scratch_start is then reused as is (if it is already aligned) in the next allocation. This result in a potential reuse of the last byte of the previous allocation. Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> commit dc8080fe7fba71b8c44c230ca0d0d1ae4467e690 Author: Tamas K Lengyel <tlengyel@xxxxxxxxxxx> Date: Wed Feb 10 14:46:09 2016 +0100 x86/altp2m: merge p2m_set_altp2m_mem_access and p2m_set_mem_access The altp2m subsystem in its current form duplicates much of the existing code present in p2m for setting mem_access permissions. In this patch we consolidate the two versions but keep the separate MEMOP and HVMOP interfaces. Signed-off-by: Tamas K Lengyel <tlengyel@xxxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Razvan Cojocaru <rcojocaru@xxxxxxxxxxxxxxx> Acked-by: Ian Campbell < ian.campbell@xxxxxxxxxx > Reviewed-by: George Dunlap <george.dunlap@xxxxxxxxxx> (qemu changes not included) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |