[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [ovmf baseline-only test] 71975: all pass
This run is configured for baseline tests only. flight 71975 ovmf real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/71975/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf 4ad5f597153c7cb20a968236c2c7d6ff01994350 baseline version: ovmf 0024172d909ec73a9ce9ffdfc9fdd4382080e110 Last test of basis 71974 2017-08-14 18:17:16 Z 0 days Testing same since 71975 2017-08-15 03:47:26 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Jiewen Yao <jiewen.yao@xxxxxxxxx> 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 4ad5f597153c7cb20a968236c2c7d6ff01994350 Author: Jiewen Yao <jiewen.yao@xxxxxxxxx> Date: Wed Aug 9 15:53:43 2017 +0800 IntelSiliconPkg/IntelVTdDxe: Improve performance. This patch is to improve IOMMU performance. All WBINVD is removed due to performance issue. CLFLUSH by WriteBackDataCacheRange() is used to only flush the context table or second level page table if they are changed. This patch also removed some unused functions. Cc: Star Zeng <star.zeng@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiewen Yao <jiewen.yao@xxxxxxxxx> Reviewed-by: Star Zeng <star.zeng@xxxxxxxxx> commit 3ccf5a8a41b42fc5116fdc03bc2a273f7f3c5179 Author: Jiewen Yao <jiewen.yao@xxxxxxxxx> Date: Fri Aug 11 22:46:24 2017 +0800 IntelSiliconPkg/dsc: Add CacheMaintenanceLib. It will be used by IntelVTdDxe. Cc: Star Zeng <star.zeng@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiewen Yao <jiewen.yao@xxxxxxxxx> Reviewed-by: Star Zeng <star.zeng@xxxxxxxxx> commit 3cf737c74b0f2fa2d2c6a861343bde6fa2473a3f Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Mon Aug 7 15:28:46 2017 +0800 ShellPkg UefiDpLib: Init CustomCumulativeData.MinDur Init CustomCumulativeData.MinDur to PERF_MAXDUR, otherwise the MinDur displayed for custom cumulative data will be always 0, but not the real shortest duration. Cc: Liming Gao <liming.gao@xxxxxxxxx> Cc: Ruiyu Ni <ruiyu.ni@xxxxxxxxx> Cc: Cinnamon Shia <cinnamon.shia@xxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit ce10f482f786283b160146bb7ba2d9770479c10c Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Mon Aug 7 15:28:21 2017 +0800 PerformancePkg DP: Init CustomCumulativeData.MinDur Init CustomCumulativeData.MinDur to PERF_MAXDUR, otherwise the MinDur displayed for custom cumulative data will be always 0, but not the real shortest duration. Cc: Liming Gao <liming.gao@xxxxxxxxx> Cc: Cinnamon Shia <cinnamon.shia@xxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 9a701955a55d094e93c3613a3ae462660551d592 Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Thu Aug 10 09:30:42 2017 +0800 MdeModulePkg DxeCore: Enhance "ConvertPages: Incompatible memory types" When double free pages by FreePages() or allocate allocated pages by AllocatePages() with AllocateAddress type, the code will print debug message "ConvertPages: Incompatible memory types", but the debug message is not very obvious for the error paths by FreePages() or AllocatePages(). Refer https://lists.01.org/pipermail/edk2-devel/2017-August/013075.html for the discussion. This patch is to enhance the debug message for the error paths by FreePages() or AllocatePages. Cc: Liming Gao <liming.gao@xxxxxxxxx> Cc: Andrew Fish <afish@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit d9af5af8d96866821e50882fbd45686c28aaafed Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Fri Aug 11 11:02:39 2017 +0800 MdeModulePkg DxeCore: Fix double free pages on LoadImage failure path https://bugzilla.tianocore.org/show_bug.cgi?id=667 reported there is double free pages on LoadImage failure path. CoreLoadPeImage() ... return EFI_SUCCESS; Done: // // Free memory. // if (DstBufAlocated) { CoreFreePages (Image->ImageContext.ImageAddress, Image->NumberOfPages); } ... CoreUnloadAndCloseImage() ... if ((Image->ImageBasePage != 0) && FreePage) { CoreFreePages (Image->ImageBasePage, Image->NumberOfPages); } ... This patch is to follow the suggestion at https://lists.01.org/pipermail/edk2-devel/2017-August/013112.html to set Image->ImageContext.ImageAddress and Image->ImageBasePage to 0 after the free in CoreLoadPeImage(). Cc: Liming Gao <liming.gao@xxxxxxxxx> Cc: Andrew Fish <afish@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@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 |