mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg/PiSmmCpuDxeSmm: Check BspIndex first before lock cmpxchg
This patch is to check BspIndex first before lock cmpxchg operation. If BspIndex has not been set, then do the lock cmpxchg, otherwise, the APs don't need to lock cmpxchg the BspIndex value since the BSP election has been done. It's the optimization to lower the resource contention caused by the atomic compare exchange operation, so as to improve the SMI performance for BSP election. Cc: Ray Ni <ray.ni@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Eric Dong <eric.dong@intel.com> Cc: Zeng Star <star.zeng@intel.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Cc: Rahul Kumar <rahul1.kumar@intel.com> Cc: Kinney Michael D <michael.d.kinney@intel.com> Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
This commit is contained in:
parent
d698bcfe4f
commit
2ca8d55974
|
@ -1654,11 +1654,13 @@ SmiRendezvous (
|
|||
//
|
||||
// Platform hook fails to determine, use default BSP election method
|
||||
//
|
||||
InterlockedCompareExchange32 (
|
||||
(UINT32 *)&mSmmMpSyncData->BspIndex,
|
||||
MAX_UINT32,
|
||||
(UINT32)CpuIndex
|
||||
);
|
||||
if (mSmmMpSyncData->BspIndex == MAX_UINT32) {
|
||||
InterlockedCompareExchange32 (
|
||||
(UINT32 *)&mSmmMpSyncData->BspIndex,
|
||||
MAX_UINT32,
|
||||
(UINT32)CpuIndex
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue