[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[xen-unstable-smoke test] 104194: trouble: blocked/broken



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

Failures and problems with tests :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 build-armhf                   3 host-install(3)        broken REGR. vs. 104171
 build-amd64                   3 host-install(3)        broken REGR. vs. 104171

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

version targeted for testing:
 xen                  c33b5f013db3460c07c017dea45a1c010c3dacc0
baseline version:
 xen                  98be5ffc05e689e2131f175ed95b011a7270db67

Last test of basis   104171  2017-01-13 15:01:08 Z    3 days
Failing since        104193  2017-01-16 18:01:01 Z    0 days    2 attempts
Testing same since   104194  2017-01-16 21:01:41 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
  He Chen <he.chen@xxxxxxxxxxxxxxx>
  Stefano Stabellini <sstabellini@xxxxxxxxxx>
  Wei Liu <wei.liu2@xxxxxxxxxx>

jobs:
 build-amd64                                                  broken  
 build-armhf                                                  broken  
 build-amd64-libvirt                                          blocked 
 test-armhf-armhf-xl                                          blocked 
 test-amd64-amd64-xl-qemuu-debianhvm-i386                     blocked 
 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

broken-step build-armhf host-install(3)
broken-step build-amd64 host-install(3)

Not pushing.

------------------------------------------------------------
commit c33b5f013db3460c07c017dea45a1c010c3dacc0
Author: Stefano Stabellini <sstabellini@xxxxxxxxxx>
Date:   Mon Jan 16 10:46:16 2017 -0800

    Add XENV to docs/misc
    
    Add the latest version of the XEN Environment table specification for
    ACPI to docs/misc.
    
    The original authors are:
      Parth Dixit<parth.dixit@xxxxxxxxxx>
      Julien Grall<julien.grall@xxxxxxxxxx>
    
    Signed-off-by: Stefano Stabellini <sstabellini@xxxxxxxxxx>

commit 140b31a8dea0069f5bdec9a3651f2602c34ecfc4
Author: Stefano Stabellini <sstabellini@xxxxxxxxxx>
Date:   Mon Jan 16 10:42:18 2017 -0800

    Add STAO spec to docs/misc
    
    Add the latest version of the STAtus Override table specification for
    ACPI to docs/misc.
    
    The original authors are:
    
      Al Stone <al.stone@xxxxxxxxxx>
      Graeme Gregory <graeme.gregory@xxxxxxxxxx>
      Parth Dixit<parth.dixit@xxxxxxxxxx>
    
    Signed-off-by: Stefano Stabellini <sstabellini@xxxxxxxxxx>

commit fe0d67576e335c02becf1cea8e67005509fa90b6
Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Date:   Fri Jan 13 18:51:04 2017 +0000

    x86/xstate: Fix array overrun on hardware with LWP
    
    c/s da62246e4c "x86/xsaves: enable xsaves/xrstors/xsavec in xen" introduced
    setup_xstate_features() to allocate and fill xstate_offsets[] and
    xstate_sizes[].
    
    However, fls() casts xfeature_mask to 32bits which truncates LWP out of the
    calculation.  As a result, the arrays are allocated too short, and the cpuid
    infrastructure reads off the end of them when calculating xstate_size for 
the
    guest.
    
    On one test system, this results in 0x3fec83c0 being returned as the maximum
    size of an xsave area, which surprisingly appears not to bother Windows or
    Linux too much.  I suspect they both use current size based on xcr0, which 
Xen
    forwards from real hardware.
    
    Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
    Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>

commit e5c98b0e6059b8a108ef78ec4448c91af1f8232b
Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Date:   Fri Jan 6 20:05:36 2017 +0000

    x86/pv: Check that emulate_privileged_op() don't change any unexpected flags
    
    No bits, other than arithmetic ones and the resume flag (which will most
    likely change from 1 to 0), can be changed by the instructions we permit.
    Extend the check to cover other flags.
    
    Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
    Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>

commit 9b1f6622b68145931d6ff93ff4f37e6666bbcae1
Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Date:   Fri Jan 13 13:23:42 2017 +0000

    x86/emul: Calculate not_64bit during instruction decode
    
    ... rather than repeating "generate_exception_if(mode_64bit(), EXC_UD);" in
    the emulation switch statement.
    
    Bloat-o-meter shows:
    
      add/remove: 0/0 grow/shrink: 1/2 up/down: 8/-495 (-487)
      function                                     old     new   delta
      per_cpu__state                                98     106      +8
      x86_decode                                  6782    6726     -56
      x86_emulate                                57160   56721    -439
    
    The reason for x86_decode() getting smaller is that this change alters the
    x86_decode_onebyte() switch statement from a chain of if()/else's to a jump
    table.  The jump table adds 250 bytes of data which bloat-o-meter clearly
    can't see.
    
    Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
    Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>

commit 90051a4ce58531a7dbcf193ded8091d26d16ea13
Author: He Chen <he.chen@xxxxxxxxxxxxxxx>
Date:   Mon Jan 16 16:05:03 2017 +0800

    tools/misc: add AVX512 vpopcntdq in xen-cpuid.c
    
    Add AVX512 vpopcntdq information in xen-cpuid.c
    
    Signed-off-by: He Chen <he.chen@xxxxxxxxxxxxxxx>
    Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
    Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx>

commit 0b68f30a8a0f2682b831fe34bd506edf0e820003
Author: Wei Liu <wei.liu2@xxxxxxxxxx>
Date:   Fri Jan 13 12:13:39 2017 +0000

    xenstored: remove -L option
    
    The only place that used such option was removed in 388d3011.
    
    Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx>
    Reviewed-by: Juergen Gross <jgross@xxxxxxxx>
(qemu changes not included)

_______________________________________________
osstest-output mailing list
osstest-output@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/cgi-bin/mailman/listinfo/osstest-output

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.