Searched refs:prot_err (Results 1 – 3 of 3) sorted by relevance
/linux-6.6.21/drivers/firmware/efi/ |
D | cper_cxl.c | 58 void cper_print_prot_err(const char *pfx, const struct cper_sec_prot_err *prot_err) in cper_print_prot_err() argument 60 if (prot_err->valid_bits & PROT_ERR_VALID_AGENT_TYPE) in cper_print_prot_err() 61 pr_info("%s agent_type: %d, %s\n", pfx, prot_err->agent_type, in cper_print_prot_err() 62 prot_err->agent_type < ARRAY_SIZE(prot_err_agent_type_strs) in cper_print_prot_err() 63 ? prot_err_agent_type_strs[prot_err->agent_type] in cper_print_prot_err() 66 if (prot_err->valid_bits & PROT_ERR_VALID_AGENT_ADDRESS) { in cper_print_prot_err() 67 switch (prot_err->agent_type) { in cper_print_prot_err() 82 pfx, prot_err->agent_addr.segment, in cper_print_prot_err() 83 prot_err->agent_addr.bus, in cper_print_prot_err() 84 prot_err->agent_addr.device, in cper_print_prot_err() [all …]
|
D | cper_cxl.h | 64 void cper_print_prot_err(const char *pfx, const struct cper_sec_prot_err *prot_err);
|
D | cper.c | 603 struct cper_sec_prot_err *prot_err = acpi_hest_get_payload(gdata); in cper_estatus_print_section() local 606 if (gdata->error_data_length >= sizeof(*prot_err)) in cper_estatus_print_section() 607 cper_print_prot_err(newpfx, prot_err); in cper_estatus_print_section()
|