diff options
author | Olivier Martin <olivier.martin@arm.com> | 2013-07-26 17:12:12 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-07-26 17:12:12 +0000 |
commit | 5b53eaffe830678cbe651338632b9eee6a5a61c8 (patch) | |
tree | e14ef7ce628fbaa274d502d0eb3a5eb9b41d1a24 /ArmPkg | |
parent | 6ea162c214c5cc71027ff9e01b02113c449ee04d (diff) | |
download | edk2-5b53eaffe830678cbe651338632b9eee6a5a61c8.zip edk2-5b53eaffe830678cbe651338632b9eee6a5a61c8.tar.gz edk2-5b53eaffe830678cbe651338632b9eee6a5a61c8.tar.bz2 |
ArmPkg,ArmPlatformPkg: Free memory allocated by Get.*SpaceMap()
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14507 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPkg')
-rw-r--r-- | ArmPkg/Drivers/CpuDxe/AArch64/Mmu.c | 5 | ||||
-rw-r--r-- | ArmPkg/Drivers/CpuDxe/ArmV6/Mmu.c | 18 |
2 files changed, 16 insertions, 7 deletions
diff --git a/ArmPkg/Drivers/CpuDxe/AArch64/Mmu.c b/ArmPkg/Drivers/CpuDxe/AArch64/Mmu.c index 9043afa..da6e622 100644 --- a/ArmPkg/Drivers/CpuDxe/AArch64/Mmu.c +++ b/ArmPkg/Drivers/CpuDxe/AArch64/Mmu.c @@ -15,6 +15,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. --*/
+#include <Library/MemoryAllocationLib.h>
#include "CpuDxe.h"
#define TT_ATTR_INDX_INVALID ((UINT32)~0)
@@ -122,6 +123,8 @@ GetNextEntryAttribute ( }
}
+ FreePool (MemorySpaceMap);
+
return BaseAddress + (EntryCount * TT_ADDRESS_AT_LEVEL(TableLevel));
}
@@ -185,5 +188,7 @@ SyncCacheConfig ( EndAddressGcdRegion - BaseAddressGcdRegion,
PageAttributeToGcdAttribute (PageAttribute));
+ FreePool (MemorySpaceMap);
+
return EFI_SUCCESS;
}
diff --git a/ArmPkg/Drivers/CpuDxe/ArmV6/Mmu.c b/ArmPkg/Drivers/CpuDxe/ArmV6/Mmu.c index 2dbdb68..ce8bd65 100644 --- a/ArmPkg/Drivers/CpuDxe/ArmV6/Mmu.c +++ b/ArmPkg/Drivers/CpuDxe/ArmV6/Mmu.c @@ -2,18 +2,20 @@ Copyright (c) 2009, Hewlett-Packard Company. All rights reserved.<BR>
Portions copyright (c) 2010, Apple Inc. All rights reserved.<BR>
+Portions copyright (c) 2013, ARM Ltd. All rights reserved.<BR>
-This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+This program and the accompanying materials
+are licensed and made available under the terms and conditions of the BSD License
+which accompanies this distribution. The full text of the license may be found at
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
--*/
+#include <Library/MemoryAllocationLib.h>
#include "CpuDxe.h"
// First Level Descriptors
@@ -330,6 +332,8 @@ SyncCacheConfig ( SetGcdMemorySpaceAttributes (MemorySpaceMap, NumberOfDescriptors, NextRegionBase, NextRegionLength, GcdAttributes);
}
+ FreePool (MemorySpaceMap);
+
return EFI_SUCCESS;
}
|