[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [xen-4.0-testing test] 5353: regressions - trouble: broken/fail/pass
flight 5353 xen-4.0-testing real [real] http://www.chiark.greenend.org.uk/~xensrcts/logs/5353/ Regressions :-( Tests which did not succeed and are blocking: test-amd64-amd64-pair 16 guest-start fail REGR. vs. 5230 test-amd64-amd64-pv 9 guest-start fail REGR. vs. 5230 test-amd64-amd64-win 14 guest-start.2 fail REGR. vs. 5230 test-amd64-amd64-xl-win 3 host-install(3) broken test-amd64-amd64-xl 9 guest-start fail REGR. vs. 5230 test-amd64-i386-pv 9 guest-start fail REGR. vs. 5230 test-amd64-i386-rhel6hvm-intel 3 host-install(3) broken test-amd64-i386-win-vcpus1 3 host-install(3) broken test-amd64-i386-xl-credit2 3 host-install(3) broken test-amd64-i386-xl-multivcpu 3 host-install(3) broken test-amd64-i386-xl-win-vcpus1 3 host-install(3) broken test-amd64-i386-xl 3 host-install(3) broken test-amd64-xcpkern-i386-pair 16 guest-start fail REGR. vs. 5230 test-amd64-xcpkern-i386-pv 3 host-install(3) broken test-amd64-xcpkern-i386-rhel6hvm-amd 3 host-install(3) broken test-amd64-xcpkern-i386-rhel6hvm-intel 3 host-install(3) broken test-amd64-xcpkern-i386-win 3 host-install(3) broken test-amd64-xcpkern-i386-xl-credit2 3 host-install(3) broken test-amd64-xcpkern-i386-xl-multivcpu 3 host-install(3) broken test-amd64-xcpkern-i386-xl-win 3 host-install(3) broken test-amd64-xcpkern-i386-xl 3 host-install(3) broken test-i386-i386-xl 9 guest-start fail REGR. vs. 5230 test-i386-xcpkern-i386-pair 16 guest-start fail REGR. vs. 5179 test-i386-xcpkern-i386-pv 3 host-install(3) broken test-i386-xcpkern-i386-win 3 host-install(3) broken test-i386-xcpkern-i386-xl 3 host-install(3) broken Tests which did not succeed, but are not blocking, including regressions (tests previously passed) regarded as allowable: test-amd64-i386-rhel6hvm-amd 7 redhat-install fail never pass test-amd64-i386-win 16 leak-check/check fail never pass test-i386-i386-win 16 leak-check/check fail never pass test-i386-i386-xl-win 7 windows-install fail never pass version targeted for testing: xen 0b16e1d60871 baseline version: xen 9b453f96dd46 ------------------------------------------------------------ People who touched revisions under test: Andre Przywara <andre.przywara@xxxxxxx> Keir Fraser <keir@xxxxxxx> Tim Deegan <Tim.Deegan@xxxxxxxxxx> Wei Gang <gang.wei@xxxxxxxxx> ------------------------------------------------------------ jobs: build-i386-xcpkern pass build-amd64 pass build-i386 pass build-amd64-oldkern pass build-i386-oldkern pass build-amd64-pvops pass build-i386-pvops pass test-amd64-amd64-xl fail test-amd64-i386-xl broken test-i386-i386-xl fail test-amd64-xcpkern-i386-xl broken test-i386-xcpkern-i386-xl broken test-amd64-i386-rhel6hvm-amd fail test-amd64-xcpkern-i386-rhel6hvm-amd broken test-amd64-i386-xl-credit2 broken test-amd64-xcpkern-i386-xl-credit2 broken test-amd64-i386-rhel6hvm-intel broken test-amd64-xcpkern-i386-rhel6hvm-intel broken test-amd64-i386-xl-multivcpu broken test-amd64-xcpkern-i386-xl-multivcpu broken test-amd64-amd64-pair fail test-amd64-i386-pair pass test-i386-i386-pair pass test-amd64-xcpkern-i386-pair fail test-i386-xcpkern-i386-pair fail test-amd64-amd64-pv fail test-amd64-i386-pv fail test-i386-i386-pv pass test-amd64-xcpkern-i386-pv broken test-i386-xcpkern-i386-pv broken test-amd64-i386-win-vcpus1 broken test-amd64-i386-xl-win-vcpus1 broken test-amd64-amd64-win fail test-amd64-i386-win fail test-i386-i386-win fail test-amd64-xcpkern-i386-win broken test-i386-xcpkern-i386-win broken test-amd64-amd64-xl-win broken test-i386-i386-xl-win fail test-amd64-xcpkern-i386-xl-win broken ------------------------------------------------------------ sg-report-flight on woking.cam.xci-test.com logs: /home/xc_osstest/logs images: /home/xc_osstest/images Logs, config files, etc. are available at http://www.chiark.greenend.org.uk/~xensrcts/logs Test harness code can be found at http://xenbits.xensource.com/gitweb?p=osstest.git;a=summary Not pushing. ------------------------------------------------------------ changeset: 21443:0b16e1d60871 tag: tip user: Wei Gang <gang.wei@xxxxxxxxx> date: Wed Jan 26 09:05:53 2011 +0000 x86: Fix pirq teardown on domain destruction. The privilege check in unmap_domain_pirq() fails since the teardown completes in RCU (idle domain) context. We can remove the check since it is covered in physdev_op() already, which is the only potentially unprivileged caller. Signed-off-by: Wei Gang <gang.wei@xxxxxxxxx> xen-unstable changeset: 22816:e7f44fb4ecc3 xen-unstable date: Wed Jan 26 08:54:12 2011 +0000 changeset: 21442:aadbc956e0d7 user: Keir Fraser <keir@xxxxxxx> date: Wed Jan 26 09:04:36 2011 +0000 x86: blacklist new AMD CPUID bits for PV domains there are some new CPUID bits (and leaves) which Dom0 and PV domains should not see to avoid trouble, since we don't emulate the features. The most prominent one is a topology leaf, which contains information specific to the physical CPU, not the virtual one. To avoid confusion (and possibly crashes) due to a confused Dom0 scheduler simply disable these bits. Signed-off-by: Andre Przywara <andre.przywara@xxxxxxx> Signed-off-by: Keir Fraser <keir@xxxxxxx> xen-unstable changeset: 22815:4785c70c2b6d xen-unstable date: Wed Jan 26 08:45:40 2011 +0000 changeset: 21441:8fa76bc21363 user: Keir Fraser <keir@xxxxxxx> date: Wed Jan 26 09:01:17 2011 +0000 x86: Do not pollute namespace with asm defns of PERFC_*. This fixes the build with perfc=y. Signed-off-by: Keir Fraser <keir@xxxxxxx> xen-unstable changeset: 22814:b9017fdaad4d xen-unstable date: Wed Jan 26 08:35:24 2011 +0000 changeset: 21440:6531202cdf1f user: Keir Fraser <keir@xxxxxxx> date: Tue Jan 25 14:54:42 2011 +0000 x86/tsc: remove misleading printk on HVM restore path. This warning no longer corresponds to what the code actually does. Signed-off-by: Tim Deegan <Tim.Deegan@xxxxxxxxxx> xen-unstable changeset: 22800:c50ae9d5dda4 xen-unstable date: Tue Jan 25 14:05:25 2011 +0000 changeset: 21439:9b453f96dd46 user: Keir Fraser <keir@xxxxxxx> date: Fri Jan 21 16:03:04 2011 +0000 x86_emulate: set the operand size for SMSW/reg writeback. Otherwise it defaults to 0 bytes. Signed-off-by: Tim Deegan <Tim.Deegan@xxxxxxxxxx> Signed-off-by: Keir Fraser <keir@xxxxxxx> xen-unstable changeset: 22782:fe8a177ae9cb xen-unstable date: Wed Jan 19 15:29:04 2011 +0000 (qemu changes not included) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |