mirror of
https://xff.cz/git/u-boot/
synced 2026-01-28 13:19:22 +01:00
efi_selftest: physical and virtual addresses must match
At boottime physical and virtual addresses must match. Add a corresponding check to the memory unit test. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
@@ -65,6 +65,11 @@ static int find_in_memory_map(efi_uintn_t map_size,
|
||||
for (i = 0; map_size; ++i, map_size -= desc_size) {
|
||||
struct efi_mem_desc *entry = &memory_map[i];
|
||||
|
||||
if (entry->physical_start != entry->virtual_start) {
|
||||
efi_st_error("Physical and virtual addresses do not match\n");
|
||||
return EFI_ST_FAILURE;
|
||||
}
|
||||
|
||||
if (addr >= entry->physical_start &&
|
||||
addr < entry->physical_start +
|
||||
(entry->num_pages << EFI_PAGE_SHIFT)) {
|
||||
|
||||
Reference in New Issue
Block a user