xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [Xen-devel] [xen-unstable-smoke test] 146973: regressions - FAIL
@ 2020-02-12 21:37 osstest service owner
  0 siblings, 0 replies; only message in thread
From: osstest service owner @ 2020-02-12 21:37 UTC (permalink / raw)
  To: xen-devel, osstest-admin

flight 146973 xen-unstable-smoke real [real]
http://logs.test-lab.xenproject.org/osstest/logs/146973/

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 build-amd64-libvirt           6 libvirt-build            fail REGR. vs. 146882
 build-arm64-xsm               6 xen-build                fail REGR. vs. 146882
 build-armhf                   6 xen-build                fail REGR. vs. 146882

Tests which did not succeed, but are not blocking:
 test-armhf-armhf-xl           1 build-check(1)               blocked  n/a
 test-arm64-arm64-xl-xsm       1 build-check(1)               blocked  n/a
 test-amd64-amd64-libvirt      1 build-check(1)               blocked  n/a

version targeted for testing:
 xen                  af09b7d79cb8ae7498882e61efec75486eb69544
baseline version:
 xen                  6c47c37b9b40d6fe40bce8c8fd39135f6d549c8c

Last test of basis   146882  2020-02-11 16:00:54 Z    1 days
Failing since        146893  2020-02-11 20:01:02 Z    1 days   11 attempts
Testing same since   146935  2020-02-12 11:06:10 Z    0 days    5 attempts

------------------------------------------------------------
People who touched revisions under test:
  Andrew Cooper <andrew.cooper3@citrix.com>
  Ian Jackson <ian.jackson@eu.citrix.com>
  Jan Beulich <jbeulich@suse.com>
  Juergen Gross <jgross@suse.com>
  Julien Grall <julien@xen.org>
  Roger Pau Monné <roger.pau@citrix.com>

jobs:
 build-arm64-xsm                                              fail    
 build-amd64                                                  pass    
 build-armhf                                                  fail    
 build-amd64-libvirt                                          fail    
 test-armhf-armhf-xl                                          blocked 
 test-arm64-arm64-xl-xsm                                      blocked 
 test-amd64-amd64-xl-qemuu-debianhvm-amd64                    pass    
 test-amd64-amd64-libvirt                                     blocked 


------------------------------------------------------------
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 af09b7d79cb8ae7498882e61efec75486eb69544
Author: Juergen Gross <jgross@suse.com>
Date:   Wed Feb 12 10:55:06 2020 +0100

    xen: remove empty softirq_init()
    
    softirq_init() is empty since Xen 4.1. Remove it together with its call
    sites.
    
    Signed-off-by: Juergen Gross <jgross@suse.com>
    Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>

commit 66b282bbb1aa64a3d7a6f7d705cf10ba844cd611
Author: Jan Beulich <jbeulich@suse.com>
Date:   Wed Feb 12 10:54:08 2020 +0100

    AMD/IOMMU: drop redundant code
    
    The level 1 special exit path is unnecessary in iommu_pde_from_dfn() -
    the subsequent code takes care of this case quite fine.
    
    Signed-off-by: Jan Beulich <jbeulich@suse.com>
    Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>

commit 6827bea2b3b99153821b8b7446bdced27f720188
Author: Jan Beulich <jbeulich@suse.com>
Date:   Wed Feb 12 10:52:20 2020 +0100

    dom0-build: fix build with clang5
    
    With non-empty CONFIG_DOM0_MEM clang5 produces
    
    dom0_build.c:344:24: error: use of logical '&&' with constant operand [-Werror,-Wconstant-logical-operand]
        if ( !dom0_mem_set && CONFIG_DOM0_MEM[0] )
                           ^  ~~~~~~~~~~~~~~~~~~
    dom0_build.c:344:24: note: use '&' for a bitwise operation
        if ( !dom0_mem_set && CONFIG_DOM0_MEM[0] )
                           ^~
                           &
    dom0_build.c:344:24: note: remove constant to silence this warning
        if ( !dom0_mem_set && CONFIG_DOM0_MEM[0] )
                          ~^~~~~~~~~~~~~~~~~~~~~
    1 error generated.
    
    Obviously neither of the two suggestions are an option here. Oddly
    enough swapping the operands of the && helps, while e.g. casting or
    parenthesizing doesn't. Another workable variant looks to be the use of
    !! on the constant.
    
    Signed-off-by: Jan Beulich <jbeulich@suse.com>
    Acked-by: Julien Grall <julien@xen.org>
    Acked-by: Roger Pau Monné <roger.pau@citrix.com>

commit 1b3cec69bf300e012a0269f0a4f28cca1ebf22c9
Author: Andrew Cooper <andrew.cooper3@citrix.com>
Date:   Wed Feb 5 15:25:21 2020 +0000

    tools/libxl: Combine legacy CPUID handling logic
    
    While we are in the process of overhauling boot time CPUID/MSR handling, the
    existing logic is going to have to remain in roughly this form for backwards
    compatibility.
    
    Fold libxl__cpuid_apply_policy() and libxl__cpuid_set() together into a single
    libxl__cpuid_legacy() to reduce the complexity for callers.
    
    No functional change.
    
    Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
    Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>

commit dacb80f9757c011161cec6609f39837c9ea8caa8
Author: Andrew Cooper <andrew.cooper3@citrix.com>
Date:   Wed Jan 8 12:53:49 2020 +0000

    tools/libxl: Remove libxl_cpuid_{set,apply_policy}() from the API
    
    These functions should never have been exposed.  They don't have external
    users, and can't usefully be used for several reasons.
    
    Move libxl_cpuid_{set,apply_policy}() to being internal functions, and leave
    an equivalent of the nop stubs in the API for caller compatibility.
    
    Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
    Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
(qemu changes not included)

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-02-12 21:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-12 21:37 [Xen-devel] [xen-unstable-smoke test] 146973: regressions - FAIL osstest service owner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).