]> git.proxmox.com Git - mirror_edk2.git/blobdiff - UefiCpuPkg/Library/CpuExceptionHandlerLib/CpuExceptionCommon.c
UefiCpuPkg/MpInitLib: Load uCode once for each core.
[mirror_edk2.git] / UefiCpuPkg / Library / CpuExceptionHandlerLib / CpuExceptionCommon.c
index e9f679eb5d9d87c65c2d77656164f5baa617b27e..0576144a97dfa5ac2c9055d97df6e364d84d61a2 100644 (file)
@@ -1,7 +1,7 @@
- /** @file\r
+/** @file\r
   CPU Exception Handler Library common functions.\r
 \r
-  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.<BR>\r
   This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
@@ -120,7 +120,7 @@ DumpModuleImageInfo (
   VOID                                 *PdbPointer;\r
   VOID                                 *EntryPoint;\r
 \r
-  Pe32Data = PeCoffSerachImageBase (CurrentEip);\r
+  Pe32Data = PeCoffSearchImageBase (CurrentEip);\r
   if (Pe32Data == 0) {\r
     InternalPrintMessage ("!!!! Can't find image information. !!!!\n");\r
   } else {\r
@@ -131,7 +131,7 @@ DumpModuleImageInfo (
     if (EFI_ERROR (Status)) {\r
       EntryPoint = NULL;\r
     }\r
-    InternalPrintMessage ("!!!! Find image ");\r
+    InternalPrintMessage ("!!!! Find image based on IP(0x%x) ", CurrentEip);\r
     PdbPointer = PeCoffLoaderGetPdbPointer ((VOID *) Pe32Data);\r
     if (PdbPointer != NULL) {\r
       InternalPrintMessage ("%a", PdbPointer);\r
@@ -177,4 +177,4 @@ ReadAndVerifyVectorInfo (
     VectorInfo ++;\r
   }\r
   return EFI_SUCCESS;\r
-}
\ No newline at end of file
+}\r