mirror of https://github.com/acidanthera/audk.git
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10612 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6b22483ffb
commit
7df41b1150
|
@ -104,11 +104,10 @@ MemoryStatusCodeReportWorker (
|
|||
PacketIndex = 0;
|
||||
|
||||
//
|
||||
// Journal GUID'ed HOBs to find empty record entry. if found, then save status code in it.
|
||||
// otherwise, create a new GUID'ed HOB.
|
||||
// Journal GUID'ed HOBs to find empty record entry.
|
||||
//
|
||||
Hob.Raw = GetFirstGuidHob (&gMemoryStatusCodeRecordGuid);
|
||||
while (Hob.Raw != NULL) {
|
||||
while ((Hob.Raw = GetNextGuidHob (&gMemoryStatusCodeRecordGuid, Hob.Raw)) != NULL) {
|
||||
PacketHeader = (MEMORY_STATUSCODE_PACKET_HEADER *) GET_GUID_HOB_DATA (Hob.Guid);
|
||||
|
||||
//
|
||||
|
@ -124,17 +123,14 @@ MemoryStatusCodeReportWorker (
|
|||
//
|
||||
PacketIndex++;
|
||||
|
||||
Hob.Raw = GetNextGuidHob (&gMemoryStatusCodeRecordGuid, Hob.Raw);
|
||||
Hob.Raw = GET_NEXT_HOB (Hob);
|
||||
}
|
||||
|
||||
if (Record == NULL) {
|
||||
//
|
||||
// No available entry found, so create new packet.
|
||||
// No available entry found
|
||||
//
|
||||
PacketHeader = CreateMemoryStatusCodePacket (PacketIndex);
|
||||
|
||||
Record = (MEMORY_STATUSCODE_RECORD *) (PacketHeader + 1);
|
||||
Record = &Record[PacketHeader->RecordIndex++];
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
Record->CodeType = CodeType;
|
||||
|
|
|
@ -24,7 +24,7 @@ EFI_EVENT mLogDataHubEvent;
|
|||
//
|
||||
// Cache data hub protocol.
|
||||
//
|
||||
EFI_DATA_HUB_PROTOCOL *mDataHubProtocol;
|
||||
EFI_DATA_HUB_PROTOCOL *mDataHubProtocol = NULL;
|
||||
|
||||
|
||||
/**
|
||||
|
@ -189,6 +189,7 @@ DataHubStatusCodeReportWorker (
|
|||
BASE_LIST Marker;
|
||||
CHAR8 *Format;
|
||||
UINTN CharCount;
|
||||
EFI_STATUS Status;
|
||||
|
||||
//
|
||||
// Use atom operation to avoid the reentant of report.
|
||||
|
@ -205,6 +206,13 @@ DataHubStatusCodeReportWorker (
|
|||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
if (mDataHubProtocol == NULL) {
|
||||
Status = DataHubStatusCodeInitializeWorker ();
|
||||
if (EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
||||
Record = AcquireRecordBuffer ();
|
||||
if (Record == NULL) {
|
||||
//
|
||||
|
@ -358,7 +366,10 @@ DataHubStatusCodeInitializeWorker (
|
|||
NULL,
|
||||
(VOID **) &mDataHubProtocol
|
||||
);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
if (EFI_ERROR (Status)) {
|
||||
mDataHubProtocol = NULL;
|
||||
return Status;
|
||||
}
|
||||
|
||||
//
|
||||
// Create a Notify Event to log data in Data Hub
|
||||
|
|
|
@ -226,8 +226,7 @@ InitializationDispatcherWorker (
|
|||
ASSERT_EFI_ERROR (Status);
|
||||
}
|
||||
if (FeaturePcdGet (PcdStatusCodeUseDataHub)) {
|
||||
Status = DataHubStatusCodeInitializeWorker ();
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
DataHubStatusCodeInitializeWorker ();
|
||||
}
|
||||
if (FeaturePcdGet (PcdStatusCodeUseOEM)) {
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue