MdeModulePkg FaultTolerantWritePei: Refine the code to avoid error report.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Eric Dong <eric.dong@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14462 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -254,7 +254,9 @@ PeimFaultTolerantWriteInitialize (
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!EFI_ERROR (Status) && ((FtwLastWriteRecord->SpareComplete == FTW_VALID_STATE) && (FtwLastWriteRecord->DestinationComplete != FTW_VALID_STATE))) {
|
if (!EFI_ERROR (Status)) {
|
||||||
|
ASSERT (FtwLastWriteRecord != NULL);
|
||||||
|
if ((FtwLastWriteRecord->SpareComplete == FTW_VALID_STATE) && (FtwLastWriteRecord->DestinationComplete != FTW_VALID_STATE)) {
|
||||||
//
|
//
|
||||||
// If FTW last write was still in progress with SpareComplete set and DestinationComplete not set.
|
// If FTW last write was still in progress with SpareComplete set and DestinationComplete not set.
|
||||||
// It means the target buffer has been backed up in spare block, then target block has been erased,
|
// It means the target buffer has been backed up in spare block, then target block has been erased,
|
||||||
@@ -272,6 +274,7 @@ PeimFaultTolerantWriteInitialize (
|
|||||||
(UINTN) FtwLastWrite.Length));
|
(UINTN) FtwLastWrite.Length));
|
||||||
BuildGuidDataHob (&gEdkiiFaultTolerantWriteGuid, (VOID *) &FtwLastWrite, sizeof (FAULT_TOLERANT_WRITE_LAST_WRITE_DATA));
|
BuildGuidDataHob (&gEdkiiFaultTolerantWriteGuid, (VOID *) &FtwLastWrite, sizeof (FAULT_TOLERANT_WRITE_LAST_WRITE_DATA));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
FtwWorkingBlockHeader = NULL;
|
FtwWorkingBlockHeader = NULL;
|
||||||
//
|
//
|
||||||
|
Reference in New Issue
Block a user