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

[ovmf baseline-only test] 74645: all pass



This run is configured for baseline tests only.

flight 74645 ovmf real [real]
http://osstest.xs.citrite.net/~osstest/testlogs/logs/74645/

Perfect :-)
All tests in this flight passed as required
version targeted for testing:
 ovmf                 c8dca871df2a6b6d9a3b46cca7ee65ee66a33355
baseline version:
 ovmf                 d3180516f31b93f3dc14ebb0191cd78bcfc052d9

Last test of basis    74642  2018-04-26 05:58:31 Z    1 days
Testing same since    74645  2018-04-27 21:18:25 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Star Zeng <star.zeng@xxxxxxxxx>

jobs:
 build-amd64-xsm                                              pass    
 build-i386-xsm                                               pass    
 build-amd64                                                  pass    
 build-i386                                                   pass    
 build-amd64-libvirt                                          pass    
 build-i386-libvirt                                           pass    
 build-amd64-pvops                                            pass    
 build-i386-pvops                                             pass    
 test-amd64-amd64-xl-qemuu-ovmf-amd64                         pass    
 test-amd64-i386-xl-qemuu-ovmf-amd64                          pass    


------------------------------------------------------------
sg-report-flight on osstest.xs.citrite.net
logs: /home/osstest/logs
images: /home/osstest/images

Logs, config files, etc. are available at
    http://osstest.xs.citrite.net/~osstest/testlogs/logs

Test harness code can be found at
    http://xenbits.xensource.com/gitweb?p=osstest.git;a=summary


Push not applicable.

------------------------------------------------------------
commit c8dca871df2a6b6d9a3b46cca7ee65ee66a33355
Author: Star Zeng <star.zeng@xxxxxxxxx>
Date:   Tue Apr 3 17:35:06 2018 +0800

    SignedCapsulePkg SystemFirmwareUpdate: Fix typo EFI_SECURITY_VIOLATIO
    
    Fix typo EFI_SECURITY_VIOLATIO to EFI_SECURITY_VIOLATION.
    
    Cc: Jiewen Yao <jiewen.yao@xxxxxxxxx>
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx>
    Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx>

commit 1779cf40c050aff49ac3879d7b3156bab372f669
Author: Star Zeng <star.zeng@xxxxxxxxx>
Date:   Tue Apr 3 17:33:05 2018 +0800

    IntelSiliconPkg MicrocodeUpdate: Fix typo EFI_SECURITY_VIOLATIO
    
    Fix typo EFI_SECURITY_VIOLATIO to EFI_SECURITY_VIOLATION.
    
    Cc: Jiewen Yao <jiewen.yao@xxxxxxxxx>
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx>
    Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx>

commit 58fe27722dad2e6313101e232ff9004b51cac77f
Author: Star Zeng <star.zeng@xxxxxxxxx>
Date:   Mon Apr 2 15:39:04 2018 +0800

    MdePkg FirmwareManagement.h: Fix typo EFI_SECURITY_VIOLATIO
    
    Fix typo EFI_SECURITY_VIOLATIO to EFI_SECURITY_VIOLATION.
    
    Cc: Jiewen Yao <jiewen.yao@xxxxxxxxx>
    Cc: Michael D Kinney <michael.d.kinney@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx>
    Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx>

commit 67d3e63c2c92dc9729e7f56b4fa8b4b47bfefe73
Author: Star Zeng <star.zeng@xxxxxxxxx>
Date:   Mon Apr 23 16:13:23 2018 +0800

    MdeModulePkg NvmExpressDxe: return error code in error path
    
    REF: https://bugzilla.tianocore.org/show_bug.cgi?id=937
    
    In NvmeExpressPassthru.c near line 659:
        Prp = NvmeCreatePrpList (
                PciIo,
                PhyAddr,
                EFI_SIZE_TO_PAGES(Offset + Bytes) - 1,
                &PrpListHost,
                &PrpListNo,
                &MapPrpList
                );
        if (Prp == NULL) {
          goto EXIT;
        }
    Status is not set to an error code - Status is initialized to
    EFI_SUCCESS, or set by a PciIo->Map to EFI_SUCCESS above this
    code. This error path should set Status to an error code before
    goto EXIT.
    
    Change-Id: I8a5cdf981aa609534c205d3676395805ac60a003
    Cc: Hao Wu <hao.a.wu@xxxxxxxxx>
    Cc: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Cc: Michael Turner <Michael.Turner@xxxxxxxxxxxxx>
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx>
    Reviewed-by: Hao Wu <hao.a.wu@xxxxxxxxx>

commit 3545488dd64c4bf9e7549d020112342985931ab1
Author: Star Zeng <star.zeng@xxxxxxxxx>
Date:   Fri Apr 20 15:13:32 2018 +0800

    MdeModulePkg EsrtFmpDxe: Use EfiBootServicesData for ESRT table
    
    REF: https://bugzilla.tianocore.org/show_bug.cgi?id=933
    
    We see UEFI spec is saying to use EfiBootServicesData for ESRT table.
    
    UEFI 2.7 chapter 23.3:
    The ESRT shall be stored in memory of type EfiBootServicesData.
    
    And we see EsrtDxe is using AllocatePool for ESRT table, but
    EsrtFmpDxe is using AllocateRuntimeZeroPool for ESRT table.
    
    This patch updates code to use EfiBootServicesData for ESRT table
    in EsrtFmpDxe.
    
    Change-Id: I72a73e0cc0a37e429cc262d68eb284fb268cb5ef
    Cc: Jiewen Yao <jiewen.yao@xxxxxxxxx>
    Cc: Michael D Kinney <michael.d.kinney@xxxxxxxxx>
    Cc: Sean Brogan <sean.brogan@xxxxxxxxxxxxx>
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx>
    Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx>
    Reviewed-by: Michael D Kinney <michael.d.kinney@xxxxxxxxx>

commit 3e5c6c07b151478c4944e46a5fdfac14e117e4f1
Author: Star Zeng <star.zeng@xxxxxxxxx>
Date:   Mon Apr 9 10:10:40 2018 +0800

    UefiCpuPkg MpInitLib: Fix typo "sCPUID" to "CPUID"
    
    Cc: Eric Dong <eric.dong@xxxxxxxxx>
    Cc: Ruiyu Ni <ruiyu.ni@xxxxxxxxx>
    Cc: Jiewen Yao <jiewen.yao@xxxxxxxxx>
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx>
    Reviewed-by: Eric Dong <eric.dong@xxxxxxxxx>

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

 


Rackspace

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