]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Core/PiSmmCore/Handle.c
MdeModulePkg: Enhance the debug message for InstallProtocolInterface
[mirror_edk2.git] / MdeModulePkg / Core / PiSmmCore / Handle.c
index 9cedb2aeb5ee165b84614fe0eebf60f9d9f090e5..19faac8444141626673dd8974c9d9ae89bc7ccac 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   SMM handle & protocol handling.\r
 \r
-  Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.<BR>\r
   This program and the accompanying materials are licensed and made available \r
   under the terms and conditions of the BSD License which accompanies this \r
   distribution.  The full text of the license may be found at        \r
@@ -287,11 +287,12 @@ SmmInstallProtocolInterfaceNotify (
     // in the system\r
     //\r
     InsertTailList (&gHandleList, &Handle->AllHandles);\r
-  }\r
-\r
-  Status = SmmValidateHandle (Handle);\r
-  if (EFI_ERROR (Status)) {\r
-    goto Done;\r
+  } else {\r
+    Status = SmmValidateHandle (Handle);\r
+    if (EFI_ERROR (Status)) {\r
+      DEBUG((DEBUG_ERROR, "SmmInstallProtocolInterface: input handle at 0x%x is invalid\n", Handle));\r
+      goto Done;\r
+    }\r
   }\r
 \r
   //\r
@@ -340,6 +341,7 @@ Done:
     if (Prot != NULL) {\r
       FreePool (Prot);\r
     }\r
+    DEBUG((DEBUG_ERROR, "SmmInstallProtocolInterface: %g %p failed with %r\n", Protocol, Interface, Status));\r
   }\r
   return Status;\r
 }\r