Lines Matching refs:pfx
153 static inline void print_bool(char *str, const char *pfx, u64 check, u64 bit)
155 printk("%s%s: %s\n", pfx, str, (check & bit) ? "true" : "false");
158 static void print_err_info_ms(const char *pfx, u16 validation_bits, u64 check)
163 printk("%sError Type: %u, %s\n", pfx, err_type,
169 print_bool("Processor Context Corrupt", pfx, check, CHECK_MS_PCC);
172 print_bool("Uncorrected", pfx, check, CHECK_MS_UNCORRECTED);
175 print_bool("Precise IP", pfx, check, CHECK_MS_PRECISE_IP);
178 print_bool("Restartable IP", pfx, check, CHECK_MS_RESTARTABLE_IP);
181 print_bool("Overflow", pfx, check, CHECK_MS_OVERFLOW);
184 static void print_err_info(const char *pfx, u8 err_type, u64 check)
193 return print_err_info_ms(pfx, validation_bits, check);
198 printk("%sTransaction Type: %u, %s\n", pfx, trans_type,
212 printk("%sOperation: %u, %s\n", pfx, op,
217 printk("%sLevel: %llu\n", pfx, CHECK_LEVEL(check));
220 print_bool("Processor Context Corrupt", pfx, check, CHECK_PCC);
223 print_bool("Uncorrected", pfx, check, CHECK_UNCORRECTED);
226 print_bool("Precise IP", pfx, check, CHECK_PRECISE_IP);
229 print_bool("Restartable IP", pfx, check, CHECK_RESTARTABLE_IP);
232 print_bool("Overflow", pfx, check, CHECK_OVERFLOW);
240 printk("%sParticipation Type: %u, %s\n", pfx, part_type,
246 print_bool("Time Out", pfx, check, CHECK_BUS_TIME_OUT);
251 printk("%sAddress Space: %u, %s\n", pfx, addr_space,
257 void cper_print_proc_ia(const char *pfx, const struct cper_sec_proc_ia *proc)
266 printk("%sLocal APIC_ID: 0x%llx\n", pfx, proc->lapic_id);
269 printk("%sCPUID Info:\n", pfx);
270 print_hex_dump(pfx, "", DUMP_PREFIX_OFFSET, 16, 4, proc->cpuid,
274 snprintf(newpfx, sizeof(newpfx), "%s ", pfx);
278 printk("%sError Information Structure %d:\n", pfx, i);
331 printk("%sContext Information Structure %d:\n", pfx, i);