Missed a fix in the Cpu Driver. Added some more debug for Execption handling and clean up some uncached stuff.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9789 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -207,7 +207,7 @@ UncachedInternalAllocateAlignedPages (
|
||||
}
|
||||
|
||||
if (AlignedMemory != 0) {
|
||||
FlushCache(AlignedMemory, EFI_PAGES_TO_SIZE(Pages));
|
||||
FlushCache (AlignedMemory, EFI_PAGES_TO_SIZE(Pages));
|
||||
AlignedMemory = (UINTN)ConvertToUncachedAddress((VOID *)AlignedMemory);
|
||||
}
|
||||
|
||||
@ -318,7 +318,7 @@ UncachedInternalAllocateAlignedPool (
|
||||
*FreePointer = RawAddress;
|
||||
|
||||
if (AlignedAddress != 0) {
|
||||
FlushCache(AlignedAddress, AllocationSize);
|
||||
FlushCache (AlignedAddress, AllocationSize);
|
||||
AlignedAddress = (UINTN)ConvertToUncachedAddress((VOID *)AlignedAddress);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user