Lines Matching refs:unaccepted
54 .unaccepted = EFI_INVALID_TABLE_ADDR,
596 {LINUX_EFI_UNACCEPTED_MEM_TABLE_GUID, &efi.unaccepted, "Unaccepted" },
631 * reserve_unaccepted - Map and reserve unaccepted configuration table
632 * @unaccepted: Pointer to unaccepted memory table
647 static __init void reserve_unaccepted(struct efi_unaccepted_memory *unaccepted)
651 start = PAGE_ALIGN_DOWN(efi.unaccepted);
652 size = PAGE_ALIGN(sizeof(*unaccepted) + unaccepted->size);
781 efi.unaccepted != EFI_INVALID_TABLE_ADDR) {
782 struct efi_unaccepted_memory *unaccepted;
784 unaccepted = early_memremap(efi.unaccepted, sizeof(*unaccepted));
785 if (unaccepted) {
787 if (unaccepted->version == 1) {
788 reserve_unaccepted(unaccepted);
790 efi.unaccepted = EFI_INVALID_TABLE_ADDR;
793 early_memunmap(unaccepted, sizeof(*unaccepted));