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

[Xen-devel] [ovmf test] 107027: regressions - FAIL



flight 107027 ovmf real [real]
http://logs.test-lab.xenproject.org/osstest/logs/107027/

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 build-amd64-xsm               5 xen-build                fail REGR. vs. 107018
 build-i386                    5 xen-build                fail REGR. vs. 107018
 build-amd64                   5 xen-build                fail REGR. vs. 107018
 build-i386-xsm                5 xen-build                fail REGR. vs. 107018

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

version targeted for testing:
 ovmf                 d180dea0a81f49e25d7c4e4727c3368af7964ced
baseline version:
 ovmf                 de87f23291620d36d69ec55ea53a1c38b8780f0b

Last test of basis   107018  2017-03-31 05:47:36 Z    0 days
Failing since        107022  2017-03-31 09:16:43 Z    0 days    2 attempts
Testing same since   107027  2017-03-31 10:47:39 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
  Laszlo Ersek <lersek@xxxxxxxxxx>
  Ruiyu Ni <ruiyu.ni@xxxxxxxxx>

jobs:
 build-amd64-xsm                                              fail    
 build-i386-xsm                                               fail    
 build-amd64                                                  fail    
 build-i386                                                   fail    
 build-amd64-libvirt                                          blocked 
 build-i386-libvirt                                           blocked 
 build-amd64-pvops                                            pass    
 build-i386-pvops                                             pass    
 test-amd64-amd64-xl-qemuu-ovmf-amd64                         blocked 
 test-amd64-i386-xl-qemuu-ovmf-amd64                          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 d180dea0a81f49e25d7c4e4727c3368af7964ced
Author: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
Date:   Fri Mar 31 10:44:32 2017 +0100

    BeagleBoardPkg: add missing BootLogoLib resolution
    
    Recent changes to the PlatformBootManagerLib implementation in ArmPkg
    require its users to define a resolution for BootLogoLib. So add this
    missing resolution to Beagle.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
    Reviewed-by: Laszlo Ersek <lersek@xxxxxxxxxx>

commit e6c9036b2c4bd73e083fcb7c5f35701f46fc3416
Author: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
Date:   Fri Mar 31 09:44:02 2017 +0100

    BeagleBoardPkg: remove ArmCpuLib reference
    
    ArmCpuLib is not used, and will be removed. So drop the reference from
    our .DSC
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
    Reviewed-by: Laszlo Ersek <lersek@xxxxxxxxxx>

commit 28a5191cd1420868affda3720d3eb69aaf2736f7
Author: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
Date:   Fri Mar 31 09:43:14 2017 +0100

    ArmVirtPkg: remove ArmCpuLib references
    
    ArmCpuLib is never used anywhere, and is about to be removed. So remove
    any references from our .DSC files.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
    Reviewed-by: Laszlo Ersek <lersek@xxxxxxxxxx>

commit c2d56a894b3211bd96a63f388932ea8b38ae3463
Author: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
Date:   Fri Mar 31 09:22:56 2017 +0100

    BaseTools/GCC AARCH64: force disable PIC code generation
    
    As a security measure, some distro toolchains now default to PIC code
    generation, allowing executables (as opposed to shared libraries) using
    the objects to be built as PIE binaries, which can be loaded at a random
    virtual offset.
    
    However, our ELF to PE/COFF generation code does not deal with the
    resulting relocation types (i.e., GOT based), and so the use of PIC code
    leads to GenFw errors.
    
    Given that
    a) our non-PIC PE/COFF executables are already relocatable,
    b) PIC code leads to all symbol references to be indirected via GOT
       entries containing absolute addresses, each requiring an entry in the
       relocation table,
    c) the AArch64 ISA makes it perfectly feasible to built PIE executables
       from non-PIC code,
    
    there is absolutely no upside to using PIC code for building EDK2 modules,
    and so we're better off simply disabling it unconditionally.
    
    Note that when running under the OS, the GOT has an additional advantage,
    i.e., that all .text/.rodata pages remain clean and so can be shared between
    processes. This does not apply to the UEFI environment, however.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx>
    Acked-by: Laszlo Ersek <lersek@xxxxxxxxxx>

commit af8388059a2805f61dd5d06c7cad21bb90a72526
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Fri Sep 2 19:48:29 2016 +0800

    UefiCpuPkg/MtrrLib: All functions use definitions in Msr.h
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit 10c361ad026f141985b65e58597b472fdfc33944
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Fri Sep 2 18:10:45 2016 +0800

    UefiCpuPkg/MtrrLib: Refine MtrrGetMemoryAttributeByAddressWorker
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit 8051302a36b31f7619dc7753280ba449f163b62f
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Fri Sep 2 12:09:54 2016 +0800

    UefiCpuPkg/MtrrLib: Use a better algorithm to calculate MTRR
    
    The new algorithm finds out the more optimal MTRR solution for
    current memory type settings.
    Compare against the original algorithm, the new one guarantees
    to find the correct MTRR solution, but doesn't guarantee to
    find the most optimal MTRR solution.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit 012f4054dbf0debbe913422d0fd3545b36cb5dc9
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Fri Sep 2 20:23:35 2016 +0800

    UefiCpuPkg/MtrrLib: MtrrLibInitializeMtrrMask() uses definitions in CpuId.h
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit b8f015999e01100065322fed662efa9584697e37
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Fri Sep 2 10:45:53 2016 +0800

    UefiCpuPkg/MtrrLib: Add MtrrLib prefix to several internal functions
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit 94240f1b05fb72f1fd104713229c95b4541a8199
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Fri Sep 2 10:41:28 2016 +0800

    UefiCpuPkg/MtrrLib: Add MtrrLib prefix to ProgramFixedMtrr
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit 386f5785ea31fc535a7d85e7f477da2dc0a8c9ba
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Fri Sep 2 10:35:45 2016 +0800

    UefiCpuPkg/MtrrLib: GetVariableMtrrCountWorker uses definitions in Msr.h
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit 3bb13d35d6b9255f5a2ed4f05a91b98d3486aed3
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Fri Sep 2 10:27:29 2016 +0800

    UefiCpuPkg/MtrrLib: IsMtrrSupported uses definitions in Msr.h
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit 78c4992529c3954417068ee165a072c096d0b186
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Tue Aug 23 10:38:02 2016 +0800

    UefiCpuPkg/MtrrLib: Add CacheInvalid enum type to MtrrLib.h
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

commit 341fea6438482458f23d41c27cf710e0096ebb96
Author: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
Date:   Thu Aug 18 15:34:54 2016 +0800

    UefiCpuPkg/MtrrLib: Correct typo in comments and remove TABs
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx>

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
https://lists.xen.org/xen-devel

 


Rackspace

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