public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch] MdeModulePkg PiSmmCore: Update comments in InitializeMemoryServices
@ 2016-12-01  6:47 Liming Gao
  2016-12-01  7:41 ` Yao, Jiewen
  0 siblings, 1 reply; 3+ messages in thread
From: Liming Gao @ 2016-12-01  6:47 UTC (permalink / raw)
  To: edk2-devel; +Cc: Star Zeng, Jiewen Yao

Add the comments to describe Free and Allocated SMRAM are added separately.

Cc: Star Zeng <star.zeng@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
---
 MdeModulePkg/Core/PiSmmCore/Pool.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/MdeModulePkg/Core/PiSmmCore/Pool.c b/MdeModulePkg/Core/PiSmmCore/Pool.c
index dcfd13e..b638aad 100644
--- a/MdeModulePkg/Core/PiSmmCore/Pool.c
+++ b/MdeModulePkg/Core/PiSmmCore/Pool.c
@@ -85,8 +85,7 @@ SmmInitializeMemoryServices (
     SmramRanges[CurrentSmramRangesIndex].PhysicalSize = SmramRanges[CurrentSmramRangesIndex].PhysicalSize - SmmCodeSize;
   }
   //
-  // Initialize free SMRAM regions
-  // Need add Free memory at first, to let gSmmMemoryMap record data
+  // Add Free SMRAM regions
   //
   for (Index = 0; Index < SmramRangeCount; Index++) {
     if ((SmramRanges[Index].RegionState & (EFI_ALLOCATED | EFI_NEEDS_TESTING | EFI_NEEDS_ECC_INITIALIZATION)) != 0) {
@@ -100,6 +99,9 @@ SmmInitializeMemoryServices (
       );
   }
 
+  //
+  // Add the allocated SMRAM regions
+  //
   for (Index = 0; Index < SmramRangeCount; Index++) {
     if ((SmramRanges[Index].RegionState & (EFI_ALLOCATED | EFI_NEEDS_TESTING | EFI_NEEDS_ECC_INITIALIZATION)) == 0) {
       continue;
-- 
2.8.0.windows.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-12-01  8:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-01  6:47 [Patch] MdeModulePkg PiSmmCore: Update comments in InitializeMemoryServices Liming Gao
2016-12-01  7:41 ` Yao, Jiewen
2016-12-01  8:38   ` Gao, Liming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox