diff options
| author | Shuai Xue <[email protected]> | 2022-03-08 22:40:51 +0800 |
|---|---|---|
| committer | Borislav Petkov <[email protected]> | 2022-04-08 11:16:08 +0200 |
| commit | bdae79651453df0bca20963fc2ab970146ef2a37 (patch) | |
| tree | 2484d54c58f7766172df4cc8b08fd7865a9ce627 /include/linux | |
| parent | b2fa90ef62558ed65f09201b4c8b79ece4468275 (diff) | |
efi/cper: Add a cper_mem_err_status_str() to decode error description
Introduce a new helper function cper_mem_err_status_str() to decode the
error status value into a human readable string.
[ bp: Massage. ]
Signed-off-by: Shuai Xue <[email protected]>
Signed-off-by: Borislav Petkov <[email protected]>
Acked-by: Ard Biesheuvel <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/cper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/cper.h b/include/linux/cper.h index 6a511a1078ca..5b1dd27b317d 100644 --- a/include/linux/cper.h +++ b/include/linux/cper.h @@ -558,6 +558,7 @@ extern const char *const cper_proc_error_type_strs[4]; u64 cper_next_record_id(void); const char *cper_severity_str(unsigned int); const char *cper_mem_err_type_str(unsigned int); +const char *cper_mem_err_status_str(u64 status); void cper_print_bits(const char *prefix, unsigned int bits, const char * const strs[], unsigned int strs_size); void cper_mem_err_pack(const struct cper_sec_mem_err *, |