]> git.proxmox.com Git - mirror_edk2.git/commitdiff
UefiCpuPkg/MpInitLib: Fixed offset error on Cr3Location
authorJeff Fan <jeff.fan@intel.com>
Mon, 14 Nov 2016 02:13:41 +0000 (10:13 +0800)
committerJeff Fan <jeff.fan@intel.com>
Wed, 16 Nov 2016 08:09:04 +0000 (16:09 +0800)
Cr3Location offset value should be 0x34 not 0x3C.

Cc: Feng Tian <feng.tian@intel.com>
Cc: Hao Wu <hao.a.wu@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jeff Fan <jeff.fan@intel.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
UefiCpuPkg/Library/MpInitLib/Ia32/MpEqu.inc

index 60add860d18065941ab3ca3c7f47ab2c07994520..5c6d4ef477dea3791371463814aa86085c60a495 100644 (file)
@@ -37,5 +37,5 @@ NumApsExecutingLocation       equ        LockLocation + 24h
 CodeSegmentLocation           equ        LockLocation + 28h\r
 DataSegmentLocation           equ        LockLocation + 2Ch\r
 EnableExecuteDisableLocation  equ        LockLocation + 30h\r
-Cr3Location                   equ        LockLocation + 3Ch\r
+Cr3Location                   equ        LockLocation + 34h\r
 \r