* Re: [PATCH] UefiCpuPkg\PiSmmCpuDxeSmm: Save and restore CR2 only on-demand paging in SMM BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1593 For every SMI occurrence, save and restore CR2 register only when SMM on-demand paging support is enabl
@ 2019-03-05 17:25 Yao, Jiewen
0 siblings, 0 replies; only message in thread
From: Yao, Jiewen @ 2019-03-05 17:25 UTC (permalink / raw)
To: Vanguput, Narendra K, edk2-devel@lists.01.org
Hey
Thanks for the patch.
Would you please follow the EDKII patch format?
Please refer to https://github.com/tianocore/tianocore.github.io/wiki/EDK-II-Development-Process
And https://github.com/tianocore/tianocore.github.io/wiki/Commit-Message-Format
Thank you
Yao Jiewen
> -----Original Message-----
> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
> nkvangup
> Sent: Tuesday, March 5, 2019 9:17 AM
> To: edk2-devel@lists.01.org
> Subject: [edk2] [PATCH] UefiCpuPkg\PiSmmCpuDxeSmm: Save and restore
> CR2 only on-demand paging in SMM BZ:
> https://bugzilla.tianocore.org/show_bug.cgi?id=1593 For every SMI
> occurrence, save and restore CR2 register only when SMM on-demand
> paging support is enable...
>
> ---
> UefiCpuPkg/PiSmmCpuDxeSmm/MpService.c | 20 ++++++++++++--------
> 1 file changed, 12 insertions(+), 8 deletions(-)
>
> diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/MpService.c
> b/UefiCpuPkg/PiSmmCpuDxeSmm/MpService.c
> index 3b0b3b52ac..5be4a2b020 100644
> --- a/UefiCpuPkg/PiSmmCpuDxeSmm/MpService.c
> +++ b/UefiCpuPkg/PiSmmCpuDxeSmm/MpService.c
> @@ -1111,10 +1111,12 @@ SmiRendezvous (
>
> ASSERT(CpuIndex < mMaxNumberOfCpus);
>
> - //
> - // Save Cr2 because Page Fault exception in SMM may override its value
> - //
> - Cr2 = AsmReadCr2 ();
> + if ((sizeof (UINTN) == sizeof (UINT64)) && (!PcdGetBool
> (PcdCpuSmmStaticPageTable))) {
> + //
> + // Save Cr2 because Page Fault exception in SMM may override its
> value
> + //
> + Cr2 = AsmReadCr2 ();
> + }
>
> //
> // Perform CPU specific entry hooks
> @@ -1253,10 +1255,12 @@ SmiRendezvous (
>
> Exit:
> SmmCpuFeaturesRendezvousExit (CpuIndex);
> - //
> - // Restore Cr2
> - //
> - AsmWriteCr2 (Cr2);
> + if ((sizeof (UINTN) == sizeof (UINT64)) && (!PcdGetBool
> (PcdCpuSmmStaticPageTable))) {
> + //
> + // Restore Cr2
> + //
> + AsmWriteCr2 (Cr2);
> + }
> }
>
> /**
> --
> 2.16.2.windows.1
>
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-03-05 17:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-05 17:25 [PATCH] UefiCpuPkg\PiSmmCpuDxeSmm: Save and restore CR2 only on-demand paging in SMM BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1593 For every SMI occurrence, save and restore CR2 register only when SMM on-demand paging support is enabl Yao, Jiewen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox