Changeset 108794 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/UefiCpuPkg/PiSmmCpuDxeSmm/CpuService.c
- Timestamp:
- Mar 31, 2025 11:31:09 AM (2 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168237
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-164365 /vendor/edk2/current 103735-103757,103769-103776,129194-168232
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/UefiCpuPkg/PiSmmCpuDxeSmm/CpuService.c
r105670 r108794 2 2 Implementation of SMM CPU Services Protocol. 3 3 4 Copyright (c) 2011 - 202 3, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2011 - 2024, Intel Corporation. All rights reserved.<BR> 5 5 SPDX-License-Identifier: BSD-2-Clause-Patent 6 6 7 7 **/ 8 8 9 #include "PiSmmCpu DxeSmm.h"9 #include "PiSmmCpuCommon.h" 10 10 11 11 // … … 99 99 100 100 if ((gSmmCpuPrivate->Operation[ProcessorNumber] != SmmCpuNone) || 101 (g Smst->CurrentlyExecutingCpu == ProcessorNumber))101 (gMmst->CurrentlyExecutingCpu == ProcessorNumber)) 102 102 { 103 103 return EFI_UNSUPPORTED; … … 377 377 EFI_STATUS Status; 378 378 379 Status = g Smst->SmmInstallProtocolInterface (379 Status = gMmst->MmInstallProtocolInterface ( 380 380 &Handle, 381 381 &gEfiSmmCpuServiceProtocolGuid, … … 388 388 } 389 389 390 Status = g Smst->SmmInstallProtocolInterface (390 Status = gMmst->MmInstallProtocolInterface ( 391 391 &Handle, 392 392 &gEdkiiSmmCpuRendezvousProtocolGuid, … … 432 432 } 433 433 434 if ((mSmmMpSyncData->EffectiveSyncMode != SmmCpuSyncModeTradition) && !SmmCpuFeaturesNeedConfigureMtrrs ()) {434 if ((mSmmMpSyncData->EffectiveSyncMode != MmCpuSyncModeTradition) && !SmmCpuFeaturesNeedConfigureMtrrs ()) { 435 435 // 436 436 // There are some APs outside SMM, Wait for all avaiable APs to arrive.
Note:
See TracChangeset
for help on using the changeset viewer.