mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/PiSmmCore: log SMM image start failure
In the CoreStartImage() function [MdeModulePkg/Core/Dxe/Image/Image.c], if the image entry point returns a failure code, then the DXE Core logs a helpful DEBUG_ERROR message, with the following format string: "Error: Image at %11p start failed: %r\n" Do similarly in the SMM Core (update the message slightly). Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Cc: Eric Dong <eric.dong@intel.com> Cc: Hao A Wu <hao.a.wu@intel.com> Cc: Igor Mammedov <imammedo@redhat.com> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Cc: Philippe Mathieu-Daudé <philmd@redhat.com> Cc: Ray Ni <ray.ni@intel.com> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=1512 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200226221156.29589-2-lersek@redhat.com> Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Tested-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
This commit is contained in:
parent
61d3b2d427
commit
a1ddad9593
|
@ -902,6 +902,12 @@ SmmDispatcher (
|
|||
Status = ((EFI_IMAGE_ENTRY_POINT)(UINTN)DriverEntry->ImageEntryPoint)(DriverEntry->ImageHandle, gST);
|
||||
PERF_START_IMAGE_END (DriverEntry->ImageHandle);
|
||||
if (EFI_ERROR(Status)){
|
||||
DEBUG ((
|
||||
DEBUG_ERROR,
|
||||
"Error: SMM image at %11p start failed: %r\n",
|
||||
DriverEntry->SmmLoadedImage.ImageBase,
|
||||
Status
|
||||
));
|
||||
UnregisterSmramProfileImage (DriverEntry, TRUE);
|
||||
SmmFreePages(DriverEntry->ImageBuffer, DriverEntry->NumberOfPage);
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue