/kernel/linux/linux-5.10/drivers/firmware/efi/ |
H A D | cper-x86.c | 86 static enum err_types cper_get_err_type(const guid_t *err_type) in cper_get_err_type() argument 88 if (guid_equal(err_type, &INFO_ERR_STRUCT_TYPE_CACHE)) in cper_get_err_type() 90 else if (guid_equal(err_type, &INFO_ERR_STRUCT_TYPE_TLB)) in cper_get_err_type() 92 else if (guid_equal(err_type, &INFO_ERR_STRUCT_TYPE_BUS)) in cper_get_err_type() 94 else if (guid_equal(err_type, &INFO_ERR_STRUCT_TYPE_MS)) in cper_get_err_type() 160 u8 err_type = CHECK_MS_ERR_TYPE(check); in print_err_info_ms() local 162 printk("%sError Type: %u, %s\n", pfx, err_type, in print_err_info_ms() 163 err_type < ARRAY_SIZE(ia_check_ms_error_type_strs) ? in print_err_info_ms() 164 ia_check_ms_error_type_strs[err_type] : "unknown"); in print_err_info_ms() 183 static void print_err_info(const char *pfx, u8 err_type, u6 argument 262 u8 err_type; cper_print_proc_ia() local [all...] |
/kernel/linux/linux-6.6/drivers/firmware/efi/ |
H A D | cper-x86.c | 87 static enum err_types cper_get_err_type(const guid_t *err_type) in cper_get_err_type() argument 89 if (guid_equal(err_type, &INFO_ERR_STRUCT_TYPE_CACHE)) in cper_get_err_type() 91 else if (guid_equal(err_type, &INFO_ERR_STRUCT_TYPE_TLB)) in cper_get_err_type() 93 else if (guid_equal(err_type, &INFO_ERR_STRUCT_TYPE_BUS)) in cper_get_err_type() 95 else if (guid_equal(err_type, &INFO_ERR_STRUCT_TYPE_MS)) in cper_get_err_type() 161 u8 err_type = CHECK_MS_ERR_TYPE(check); in print_err_info_ms() local 163 printk("%sError Type: %u, %s\n", pfx, err_type, in print_err_info_ms() 164 err_type < ARRAY_SIZE(ia_check_ms_error_type_strs) ? in print_err_info_ms() 165 ia_check_ms_error_type_strs[err_type] : "unknown"); in print_err_info_ms() 184 static void print_err_info(const char *pfx, u8 err_type, u6 argument 263 u8 err_type; cper_print_proc_ia() local [all...] |
/kernel/linux/linux-6.6/drivers/edac/ |
H A D | qcom_edac.c | 129 qcom_llcc_clear_error_status(int err_type, struct llcc_drv_data *drv) in qcom_llcc_clear_error_status() argument 133 switch (err_type) { in qcom_llcc_clear_error_status() 165 err_type); in qcom_llcc_clear_error_status() 176 static void get_reg_offsets(struct llcc_drv_data *drv, int err_type, in get_reg_offsets() argument 181 switch (err_type) { in get_reg_offsets() 207 dump_syn_reg_values(struct llcc_drv_data *drv, u32 bank, int err_type) in dump_syn_reg_values() argument 209 struct llcc_edac_reg_data reg_data = edac_reg_data[err_type]; in dump_syn_reg_values() 214 get_reg_offsets(drv, err_type, ®s); in dump_syn_reg_values() 249 return qcom_llcc_clear_error_status(err_type, drv); in dump_syn_reg_values() 253 dump_syn_reg(struct edac_device_ctl_info *edev_ctl, int err_type, u3 argument [all...] |
/kernel/linux/linux-5.10/arch/powerpc/kernel/ |
H A D | rtasd.c | 198 void pSeries_log_error(char *buf, unsigned int err_type, int fatal) in pSeries_log_error() argument 211 switch (err_type & ERR_TYPE_MASK) { in pSeries_log_error() 214 if (!(err_type & ERR_FLAG_BOOT)) in pSeries_log_error() 226 if (logging_enabled && !(err_type & ERR_FLAG_BOOT)) in pSeries_log_error() 227 nvram_write_error_log(buf, len, err_type, error_log_cnt); in pSeries_log_error() 235 if ((err_type & ERR_TYPE_MASK) == ERR_TYPE_RTAS_LOG) in pSeries_log_error() 247 switch (err_type & ERR_TYPE_MASK) { in pSeries_log_error() 460 unsigned int err_type ; in retrieve_nvram_error_log() local 466 &err_type, &error_log_cnt); in retrieve_nvram_error_log() 470 if (err_type ! in retrieve_nvram_error_log() [all...] |
H A D | mce.c | 358 const char *level, *sevstr, *subtype, *err_type, *initiator; in machine_check_print_event_info() local 468 err_type = "UE"; in machine_check_print_event_info() 479 err_type = "SLB"; in machine_check_print_event_info() 488 err_type = "ERAT"; in machine_check_print_event_info() 497 err_type = "TLB"; in machine_check_print_event_info() 506 err_type = "User"; in machine_check_print_event_info() 515 err_type = "Real address"; in machine_check_print_event_info() 524 err_type = "Link"; in machine_check_print_event_info() 533 err_type = "D-Cache"; in machine_check_print_event_info() 537 err_type in machine_check_print_event_info() [all...] |
H A D | nvram_64.c | 182 unsigned int err_type, in nvram_write_os_partition() 195 info.error_type = cpu_to_be32(err_type); in nvram_write_os_partition() 220 int length, unsigned int *err_type, in nvram_read_partition() 251 *err_type = be32_to_cpu(info.error_type); in nvram_read_partition() 388 unsigned int err_type = ERR_TYPE_KERNEL_PANIC; in nvram_pstore_write() local 403 err_type = ERR_TYPE_KERNEL_PANIC_GZ; in nvram_pstore_write() 406 (int) (sizeof(*oops_hdr) + record->size), err_type, in nvram_pstore_write() 424 unsigned int err_type, id_no, size = 0; in nvram_pstore_read() local 491 if (nvram_read_partition(part, buff, part->size, &err_type, &id_no)) { in nvram_pstore_read() 523 if (err_type in nvram_pstore_read() 180 nvram_write_os_partition(struct nvram_os_partition *part, char *buff, int length, unsigned int err_type, unsigned int error_log_cnt) nvram_write_os_partition() argument 219 nvram_read_partition(struct nvram_os_partition *part, char *buff, int length, unsigned int *err_type, unsigned int *error_log_cnt) nvram_read_partition() argument 654 unsigned int err_type = ERR_TYPE_KERNEL_PANIC_GZ; oops_to_nvram() local [all...] |
/kernel/linux/linux-6.6/arch/powerpc/kernel/ |
H A D | rtasd.c | 198 void pSeries_log_error(char *buf, unsigned int err_type, int fatal) in pSeries_log_error() argument 211 switch (err_type & ERR_TYPE_MASK) { in pSeries_log_error() 214 if (!(err_type & ERR_FLAG_BOOT)) in pSeries_log_error() 226 if (logging_enabled && !(err_type & ERR_FLAG_BOOT)) in pSeries_log_error() 227 nvram_write_error_log(buf, len, err_type, error_log_cnt); in pSeries_log_error() 235 if ((err_type & ERR_TYPE_MASK) == ERR_TYPE_RTAS_LOG) in pSeries_log_error() 247 switch (err_type & ERR_TYPE_MASK) { in pSeries_log_error() 460 unsigned int err_type ; in retrieve_nvram_error_log() local 466 &err_type, &error_log_cnt); in retrieve_nvram_error_log() 470 if (err_type ! in retrieve_nvram_error_log() [all...] |
H A D | mce.c | 376 const char *level, *sevstr, *subtype, *err_type, *initiator; in machine_check_print_event_info() local 486 err_type = "UE"; in machine_check_print_event_info() 497 err_type = "SLB"; in machine_check_print_event_info() 506 err_type = "ERAT"; in machine_check_print_event_info() 515 err_type = "TLB"; in machine_check_print_event_info() 524 err_type = "User"; in machine_check_print_event_info() 533 err_type = "Real address"; in machine_check_print_event_info() 542 err_type = "Link"; in machine_check_print_event_info() 551 err_type = "D-Cache"; in machine_check_print_event_info() 555 err_type in machine_check_print_event_info() [all...] |
H A D | nvram_64.c | 182 unsigned int err_type, in nvram_write_os_partition() 195 info.error_type = cpu_to_be32(err_type); in nvram_write_os_partition() 220 int length, unsigned int *err_type, in nvram_read_partition() 251 *err_type = be32_to_cpu(info.error_type); in nvram_read_partition() 388 unsigned int err_type = ERR_TYPE_KERNEL_PANIC; in nvram_pstore_write() local 403 err_type = ERR_TYPE_KERNEL_PANIC_GZ; in nvram_pstore_write() 406 (int) (sizeof(*oops_hdr) + record->size), err_type, in nvram_pstore_write() 424 unsigned int err_type, id_no, size = 0; in nvram_pstore_read() local 491 if (nvram_read_partition(part, buff, part->size, &err_type, &id_no)) { in nvram_pstore_read() 523 if (err_type in nvram_pstore_read() 180 nvram_write_os_partition(struct nvram_os_partition *part, char *buff, int length, unsigned int err_type, unsigned int error_log_cnt) nvram_write_os_partition() argument 219 nvram_read_partition(struct nvram_os_partition *part, char *buff, int length, unsigned int *err_type, unsigned int *error_log_cnt) nvram_read_partition() argument 655 unsigned int err_type = ERR_TYPE_KERNEL_PANIC_GZ; oops_to_nvram() local [all...] |
/kernel/linux/linux-5.10/drivers/edac/ |
H A D | qcom_edac.c | 169 qcom_llcc_clear_error_status(int err_type, struct llcc_drv_data *drv) in qcom_llcc_clear_error_status() argument 173 switch (err_type) { in qcom_llcc_clear_error_status() 201 err_type); in qcom_llcc_clear_error_status() 208 dump_syn_reg_values(struct llcc_drv_data *drv, u32 bank, int err_type) in dump_syn_reg_values() argument 210 struct llcc_edac_reg_data reg_data = edac_reg_data[err_type]; in dump_syn_reg_values() 249 return qcom_llcc_clear_error_status(err_type, drv); in dump_syn_reg_values() 253 dump_syn_reg(struct edac_device_ctl_info *edev_ctl, int err_type, u32 bank) in dump_syn_reg() argument 258 ret = dump_syn_reg_values(drv, bank, err_type); in dump_syn_reg() 262 switch (err_type) { in dump_syn_reg() 282 err_type); in dump_syn_reg() [all...] |
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | nvram.h | 46 unsigned int err_type, unsigned int err_seq); 48 unsigned int * err_type, unsigned int *err_seq); 85 int length, unsigned int *err_type, 91 unsigned int err_type,
|
H A D | machdep.h | 85 void (*log_error)(char *buf, unsigned int err_type, int fatal); 269 static inline void log_error(char *buf, unsigned int err_type, int fatal) in log_error() argument 272 ppc_md.log_error(buf, err_type, fatal); in log_error()
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | nvram.h | 46 unsigned int err_type, unsigned int err_seq); 48 unsigned int * err_type, unsigned int *err_seq); 85 int length, unsigned int *err_type, 91 unsigned int err_type,
|
H A D | machdep.h | 76 void (*log_error)(char *buf, unsigned int err_type, int fatal); 237 static inline void log_error(char *buf, unsigned int err_type, int fatal) in log_error() argument 240 ppc_md.log_error(buf, err_type, fatal); in log_error()
|
/kernel/linux/linux-5.10/arch/powerpc/platforms/pseries/ |
H A D | nvram.c | 134 unsigned int err_type, unsigned int error_log_cnt) in nvram_write_error_log() 137 err_type, error_log_cnt); in nvram_write_error_log() 153 unsigned int *err_type, unsigned int *error_log_cnt) in nvram_read_error_log() 156 err_type, error_log_cnt); in nvram_read_error_log() 133 nvram_write_error_log(char * buff, int length, unsigned int err_type, unsigned int error_log_cnt) nvram_write_error_log() argument 152 nvram_read_error_log(char *buff, int length, unsigned int *err_type, unsigned int *error_log_cnt) nvram_read_error_log() argument
|
/kernel/linux/linux-6.6/arch/powerpc/platforms/pseries/ |
H A D | nvram.c | 134 unsigned int err_type, unsigned int error_log_cnt) in nvram_write_error_log() 137 err_type, error_log_cnt); in nvram_write_error_log() 153 unsigned int *err_type, unsigned int *error_log_cnt) in nvram_read_error_log() 156 err_type, error_log_cnt); in nvram_read_error_log() 133 nvram_write_error_log(char * buff, int length, unsigned int err_type, unsigned int error_log_cnt) nvram_write_error_log() argument 152 nvram_read_error_log(char *buff, int length, unsigned int *err_type, unsigned int *error_log_cnt) nvram_read_error_log() argument
|
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_devlink.c | 19 enum qed_hw_err_type err_type; member 22 int qed_report_fatal_error(struct devlink *devlink, enum qed_hw_err_type err_type) in qed_report_fatal_error() argument 26 .err_type = err_type, in qed_report_fatal_error()
|
H A D | qed_devlink.h | 18 int qed_report_fatal_error(struct devlink *dl, enum qed_hw_err_type err_type);
|
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_devlink.c | 19 enum qed_hw_err_type err_type; member 22 int qed_report_fatal_error(struct devlink *devlink, enum qed_hw_err_type err_type) in qed_report_fatal_error() argument 26 .err_type = err_type, in qed_report_fatal_error()
|
H A D | qed_devlink.h | 18 int qed_report_fatal_error(struct devlink *dl, enum qed_hw_err_type err_type);
|
/kernel/linux/linux-5.10/arch/mips/sgi-ip27/ |
H A D | ip27-berr.c | 27 static char *err_type[2][8] = { in dump_hub_information() local 56 pr_info("Error type is %s\n", err_type[st1.pi_stat1_fmt.s1_rw_rb] in dump_hub_information()
|
/kernel/linux/linux-6.6/arch/mips/sgi-ip27/ |
H A D | ip27-berr.c | 27 static char *err_type[2][8] = { in dump_hub_information() local 56 pr_info("Error type is %s\n", err_type[st1.pi_stat1_fmt.s1_rw_rb] in dump_hub_information()
|
/kernel/linux/linux-6.6/drivers/misc/ |
H A D | smpro-errmon.c | 303 unsigned int err_type; in smpro_internal_err_read() local 321 err_type = (val & BIT(1)) ? BIT(1) : in smpro_internal_err_read() 324 if (!err_type) in smpro_internal_err_read() 335 if (err_type & BIT(2)) { in smpro_internal_err_read() 347 ret = regmap_write(errmon->regmap, err_info->type, err_type); in smpro_internal_err_read()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_ras_eeprom.h | 68 enum amdgpu_ras_eeprom_err_type err_type; member
|
/kernel/linux/linux-5.10/include/rdma/ |
H A D | signature.h | 117 enum ib_sig_err_type err_type; member
|