aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/efi.h
diff options
context:
space:
mode:
authorLaszlo Ersek <lersek@redhat.com>2014-09-03 07:32:20 -0400
committerMatt Fleming <matt.fleming@intel.com>2014-10-03 13:41:00 -0400
commit98d2a6ca14520904a47c46258d3bad02ffcd3f96 (patch)
tree2e99450987824c4e55c3e8c52365ccf28f722aae /include/linux/efi.h
parent9c97e0bdd4b4ae44577a1b1ec949e782084e9a78 (diff)
efi: Introduce efi_md_typeattr_format()
At the moment, there are three architectures debug-printing the EFI memory map at initialization: x86, ia64, and arm64. They all use different format strings, plus the EFI memory type and the EFI memory attributes are similarly hard to decode for a human reader. Introduce a helper __init function that formats the memory type and the memory attributes in a unified way, to a user-provided character buffer. The array "memory_type_name" is copied from the arm64 code, temporarily duplicating it. The (otherwise optional) braces around each string literal in the initializer list are dropped in order to match the kernel coding style more closely. The element size is tightened from 32 to 20 bytes (maximum actual string length + 1) so that we can derive the field width from the element size. Signed-off-by: Laszlo Ersek <lersek@redhat.com> Tested-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> [ Dropped useless 'register' keyword, which compiler will ignore ] Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'include/linux/efi.h')
-rw-r--r--include/linux/efi.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/efi.h b/include/linux/efi.h
index 7464032ae00a..78b29b133e14 100644
--- a/include/linux/efi.h
+++ b/include/linux/efi.h
@@ -887,6 +887,13 @@ extern bool efi_poweroff_required(void);
887 (md) <= (efi_memory_desc_t *)((m)->map_end - (m)->desc_size); \ 887 (md) <= (efi_memory_desc_t *)((m)->map_end - (m)->desc_size); \
888 (md) = (void *)(md) + (m)->desc_size) 888 (md) = (void *)(md) + (m)->desc_size)
889 889
890/*
891 * Format an EFI memory descriptor's type and attributes to a user-provided
892 * character buffer, as per snprintf(), and return the buffer.
893 */
894char * __init efi_md_typeattr_format(char *buf, size_t size,
895 const efi_memory_desc_t *md);
896
890/** 897/**
891 * efi_range_is_wc - check the WC bit on an address range 898 * efi_range_is_wc - check the WC bit on an address range
892 * @start: starting kvirt address 899 * @start: starting kvirt address