From: Alexander Graf Date: Wed, 8 Aug 2018 09:54:32 +0000 (-0600) Subject: efi_loader: Pass address to fs_read() X-Git-Tag: v2018.11-rc1~82^2~103 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5a5a5a7473359a86f925506213b832067995a48;p=platform%2Fkernel%2Fu-boot.git efi_loader: Pass address to fs_read() The fs_read() function wants to get an address rather than the pointer to a buffer. So let's convert the passed buffer from pointer back a the address to make efi_loader on sandbox happier. Signed-off-by: Alexander Graf Reviewed-by: Simon Glass Signed-off-by: Simon Glass Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c index e6a15bc..2107730 100644 --- a/lib/efi_loader/efi_file.c +++ b/lib/efi_loader/efi_file.c @@ -9,6 +9,7 @@ #include #include #include +#include #include /* GUID for file system information */ @@ -232,8 +233,10 @@ static efi_status_t file_read(struct file_handle *fh, u64 *buffer_size, void *buffer) { loff_t actread; + /* fs_read expects buffer address, not pointer */ + uintptr_t buffer_addr = (uintptr_t)map_to_sysmem(buffer); - if (fs_read(fh->path, (ulong)buffer, fh->offset, + if (fs_read(fh->path, buffer_addr, fh->offset, *buffer_size, &actread)) return EFI_DEVICE_ERROR;