From: osstest service owner <osstest-admin@xenproject.org>
To: xen-devel@lists.xensource.com, osstest-admin@xenproject.org
Subject: [xen-unstable-smoke test] 81805: regressions - FAIL
Date: Wed, 10 Feb 2016 16:50:34 +0000 [thread overview]
Message-ID: <osstest-81805-mainreport@xen.org> (raw)
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@citrix.com>
Anthony PERARD <anthony.perard@citrix.com>
George Dunlap <george.dunlap@citrix.com>
Ian Campbell < ian.campbell@citrix.com >
Jan Beulich <jbeulich@suse.com>
Razvan Cojocaru <rcojocaru@bitdefender.com>
Tamas K Lengyel <tlengyel@novetta.com>
Tim Deegan <tim@xen.org>
Wei Liu <wei.liu2@citrix.com>
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@citrix.com>
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@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
commit 9fd8bbff561870ebe6258fdb0d66a0d5a28161eb
Author: Andrew Cooper <andrew.cooper3@citrix.com>
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@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
commit e0a97098e20d8fe334b76b37dd6fb0a358a6953c
Author: Andrew Cooper <andrew.cooper3@citrix.com>
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@citrix.com>
Acked-by: George Dunlap <george.dunlap@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
commit c86aa9a250ca0c87760b369f295f67ae01542fa9
Author: Andrew Cooper <andrew.cooper3@citrix.com>
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@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
commit e49cce6e514edab788160c3664dea97a03b266eb
Author: Andrew Cooper <andrew.cooper3@citrix.com>
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@citrix.com>
Acked-by: Tim Deegan <tim@xen.org>
Acked-by: Jan Beulich <jbeulich@suse.com>
commit 70cbc38d774af77b6a05ffb2d8fb7e0a38025378
Author: Andrew Cooper <andrew.cooper3@citrix.com>
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@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
commit 21bc42de1e15aa40bbc4e576ece33375f38efd8d
Author: Andrew Cooper <andrew.cooper3@citrix.com>
Date: Wed Feb 10 14:47:01 2016 +0100
fix XSM build following c/s 92942fd
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
commit 4ab3ac074cb1f101f42e02103fa263a1f4f422b5
Author: Anthony PERARD <anthony.perard@citrix.com>
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@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
commit dc8080fe7fba71b8c44c230ca0d0d1ae4467e690
Author: Tamas K Lengyel <tlengyel@novetta.com>
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@novetta.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
Acked-by: Ian Campbell < ian.campbell@citrix.com >
Reviewed-by: George Dunlap <george.dunlap@citrix.com>
(qemu changes not included)
reply other threads:[~2016-02-10 16:50 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=osstest-81805-mainreport@xen.org \
--to=osstest-admin@xenproject.org \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.