[Kernel] Added returning allocated size from MmAllocatePhysicalMemoryEx

This commit is contained in:
Gliniak 2024-08-10 16:29:46 +02:00
parent adce6c0919
commit 4c6e0ff685
1 changed files with 2 additions and 1 deletions

View File

@ -452,7 +452,8 @@ uint32_t xeMmAllocatePhysicalMemoryEx(uint32_t flags, uint32_t region_size,
// Failed - assume no memory available.
return 0;
}
XELOGD("MmAllocatePhysicalMemoryEx = {:08X}", base_address);
XELOGD("MmAllocatePhysicalMemoryEx = {:08X} Size: {:08X}", base_address,
adjusted_size);
return base_address;
}