[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [ovmf baseline-only test] 71929: all pass
This run is configured for baseline tests only. flight 71929 ovmf real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/71929/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf c1acb0f9b8222a97d2ad72dbebbcefc214d9ce03 baseline version: ovmf c65df5d9a14331d2b6d583359f1cf88c3b710d34 Last test of basis 71925 2017-08-01 13:47:14 Z 0 days Testing same since 71929 2017-08-01 19:47:26 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Star Zeng <star.zeng@xxxxxxxxx> Yonghong Zhu <yonghong.zhu@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 c1acb0f9b8222a97d2ad72dbebbcefc214d9ce03 Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Fri Jul 28 10:05:19 2017 +0800 MdeModulePkg FirmwarePerfPei: Remove SEC performance data getting code Current SEC performance data getting code in FirmwarePerformancePei may get wrong SEC performance data if FirmwarePerformancePei executes after memory discovered. And as SecCore has added SecPerformancePpiCallBack to get SEC performance data and build HOB to convey the SEC performance data to DXE phase. This patch is to remove the SEC performance data getting code in FirmwarePerformancePei. Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit f2e70629742fe1d387186d9f2bb5cdb338b46009 Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Fri Jul 28 10:05:08 2017 +0800 UefiCpuPkg SecCore: Add SecPerformancePpiCallBack Add SecPerformancePpiCallBack to get SEC performance data and build HOB to convey the SEC performance data to DXE phase. Cc: Liming Gao <liming.gao@xxxxxxxxx> Cc: Jeff Fan <jeff.fan@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 9e9ca2100f22be29f1a53129d741f4305ff34a71 Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Fri Jul 28 22:13:00 2017 +0800 UefiCpuPkg SecCore: Adjust PeiTemporaryRamBase&Size to be 8byte aligned As HOB which has 8byte aligned requirement will be built based on them in PEI phase. Cc: Liming Gao <liming.gao@xxxxxxxxx> Cc: Jeff Fan <jeff.fan@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Jeff Fan <jeff.fan@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 884200f95f7fbf7ffad8b304fdfb331570c74677 Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Wed Jul 26 15:55:26 2017 +0800 MdeModulePkg PeiCore: Handle notification PPI from SEC InstallPpi() will be used for normal PPI in PPI list from SEC, and NotifyPpi() will be used for notification PPI in PPI list from SEC. Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit cc9488476fe7dc551305eb9aaa5aab09b1df5581 Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Wed Jul 26 11:19:22 2017 +0800 MdePkg PiPeiCis.h: Add description for notification PPI from SEC This patch is to follow latest (>= 1.5) PI spec to add description for notification PPI from SEC Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit ecf85eb24c62f7864884e3719418d4d22d515135 Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Fri Jul 28 11:44:54 2017 +0800 MdeModulePkg PiSmmCoreMemoryAllocLib: Fix a FreePool() assertion issue When PiSmmCore links against PeiDxeDebugLibReportStatusCode, the code flow below will cause a FreePool() assertion issue. PiSmmCoreMemoryAllocationLibConstructor() -> SmmInitializeMemoryServices() -> DEBUG ((DEBUG_INFO, "SmmAddMemoryRegion\n")) in SmmAddMemoryRegion() -> DebugPrint() -> REPORT_STATUS_CODE_EX() -> ReportStatusCodeEx() -> AllocatePool()/FreePool(PiSmmCoreMemoryAllocLib) -> ASSERT() at Head = CR (Buffer, POOL_HEAD, Data, POOL_HEAD_SIGNATURE) in CoreFreePoolI() of DxeCore Pool.c It is because at the point of FreePool() in the code flow above, mSmmCoreMemoryAllocLibSmramRanges/mSmmCoreMemoryAllocLibSmramRangeCount are not been initialized yet, the FreePool() will be directed to gBS->FreePool(), that is wrong. This patch is to temporarily use BootServicesData to hold the SmramRanges data before calling SmmInitializeMemoryServices(). Cc: Liming Gao <liming.gao@xxxxxxxxx> Cc: Jiewen Yao <jiewen.yao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 997b2c543751cb4a3473270c1a7016ade311f01b Author: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Date: Wed Jul 19 10:59:37 2017 +0800 BaseTools/GenCrc32: Fix a bug to hand empty file for decode Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=535 Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit b5bd6387d225dfef9a693982cabccd37fcdd1fb7 Author: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Date: Wed Jul 19 10:58:34 2017 +0800 BaseTools/EfiLdrImage: Fix a segmentation fault from vfprintf() Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=533 Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit ef6cd66ae46c7d90be6ffdf3f8ed092738292336 Author: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Date: Wed Jul 19 10:57:11 2017 +0800 BaseTools/EfiRom: Fix a segmentation fault from vsprintf()/vfprintf() Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=534 Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 13d79c2976205ffc2ec380e87163b39ada96bc03 Author: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Date: Wed Jul 19 10:55:47 2017 +0800 BaseTools/GenFfs: Fix a segmentation fault from vsprintf()/vfprintf() Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=536 Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 67f3d09924b0fedf36833d11e599c609d319d0ea Author: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Date: Wed Jul 19 10:54:39 2017 +0800 BaseTools/GenSec: Fix a segmentation fault in main() Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=537 Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 15face06f400283e227aa814bf3180ccd19328a3 Author: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Date: Wed Jul 19 10:53:06 2017 +0800 BaseTools/Split: Fix the segmentation fault in GetSplitValue() Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=538 Cc: Liming Gao <liming.gao@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |