MdeModulePkg/FaultTolerantWrite: Update to consume SpeculationBarrier

REF:https://bugzilla.tianocore.org/show_bug.cgi?id=1417

Since BaseLib API AsmLfence() is a x86 arch specific API and should be
avoided using in generic codes, this commit replaces the usage of
AsmLfence() with arch-generic API SpeculationBarrier().

Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
This commit is contained in:
Hao Wu 2018-12-21 10:22:10 +08:00
parent d9f1cac51b
commit 0e8c5d8b3b
1 changed files with 4 additions and 4 deletions

View File

@ -419,11 +419,11 @@ SmmFaultTolerantWriteHandler (
);
if (!EFI_ERROR (Status)) {
//
// The AsmLfence() call here is to ensure the previous range/content
// checks for the CommBuffer have been completed before calling into
// FtwWrite().
// The SpeculationBarrier() call here is to ensure the previous
// range/content checks for the CommBuffer have been completed before
// calling into FtwWrite().
//
AsmLfence ();
SpeculationBarrier ();
Status = FtwWrite(
&mFtwDevice->FtwInstance,
SmmFtwWriteHeader->Lba,