mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg: Reset a parameter when BSP Exit in CPU relaxed mode.
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4083 In CPU relaxed mode, it doesn't reset the value of mSmmMpSyncData->AllApArrivedWithException when BSP exit smm mode. So this patch will reset this variable. Cc: Eric Dong <eric.dong@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Signed-off-by: Zhihao Li <zhihao.li@intel.com> Reviewed-by: Abner Chang <abner.chang@amd.com>
This commit is contained in:
parent
a670f12a74
commit
4364d66168
|
@ -696,8 +696,9 @@ BSPHandler (
|
|||
//
|
||||
// Allow APs to check in from this point on
|
||||
//
|
||||
*mSmmMpSyncData->Counter = 0;
|
||||
*mSmmMpSyncData->AllCpusInSync = FALSE;
|
||||
*mSmmMpSyncData->Counter = 0;
|
||||
*mSmmMpSyncData->AllCpusInSync = FALSE;
|
||||
mSmmMpSyncData->AllApArrivedWithException = FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue