浏览代码

efi_memory: return MapKey

efi_get_memory_map should set a defined value for map_key.

We later can introduce the test against this value in
efi_exit_boot_services as required by the UEFI standard.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
xypron.glpk@gmx.de 7 年之前
父节点
当前提交
c6e3c3e68a
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      lib/efi_loader/efi_memory.c

+ 2 - 0
lib/efi_loader/efi_memory.c

@@ -431,6 +431,8 @@ efi_status_t efi_get_memory_map(unsigned long *memory_map_size,
 		}
 	}
 
+	*map_key = 0;
+
 	return EFI_SUCCESS;
 }