Skip to content
Snippets Groups Projects
Commit 946160f3 authored by Rob Clark's avatar Rob Clark Committed by Alexander Graf
Browse files

efi_loader: make pool allocations cacheline aligned


This avoids printf() spam about file reads (such as loading an image)
into unaligned buffers (and the associated memcpy()).  And generally
seems like a good idea.

Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
[agraf: use __aligned]
Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent 838ee4b4
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ void *efi_bounce_buffer;
*/
struct efi_pool_allocation {
u64 num_pages;
char data[];
char data[] __aligned(ARCH_DMA_MINALIGN);
};
/*
......@@ -356,7 +356,8 @@ efi_status_t efi_allocate_pool(int pool_type, unsigned long size,
{
efi_status_t r;
efi_physical_addr_t t;
u64 num_pages = (size + sizeof(u64) + EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
u64 num_pages = (size + sizeof(struct efi_pool_allocation) +
EFI_PAGE_MASK) >> EFI_PAGE_SHIFT;
if (size == 0) {
*buffer = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment