Lines Matching refs:pfx

152 static inline void print_bool(char *str, const char *pfx, u64 check, u64 bit)
154 printk("%s%s: %s\n", pfx, str, (check & bit) ? "true" : "false");
157 static void print_err_info_ms(const char *pfx, u16 validation_bits, u64 check)
162 printk("%sError Type: %u, %s\n", pfx, err_type,
168 print_bool("Processor Context Corrupt", pfx, check, CHECK_MS_PCC);
171 print_bool("Uncorrected", pfx, check, CHECK_MS_UNCORRECTED);
174 print_bool("Precise IP", pfx, check, CHECK_MS_PRECISE_IP);
177 print_bool("Restartable IP", pfx, check, CHECK_MS_RESTARTABLE_IP);
180 print_bool("Overflow", pfx, check, CHECK_MS_OVERFLOW);
183 static void print_err_info(const char *pfx, u8 err_type, u64 check)
192 return print_err_info_ms(pfx, validation_bits, check);
197 printk("%sTransaction Type: %u, %s\n", pfx, trans_type,
211 printk("%sOperation: %u, %s\n", pfx, op,
216 printk("%sLevel: %llu\n", pfx, CHECK_LEVEL(check));
219 print_bool("Processor Context Corrupt", pfx, check, CHECK_PCC);
222 print_bool("Uncorrected", pfx, check, CHECK_UNCORRECTED);
225 print_bool("Precise IP", pfx, check, CHECK_PRECISE_IP);
228 print_bool("Restartable IP", pfx, check, CHECK_RESTARTABLE_IP);
231 print_bool("Overflow", pfx, check, CHECK_OVERFLOW);
239 printk("%sParticipation Type: %u, %s\n", pfx, part_type,
245 print_bool("Time Out", pfx, check, CHECK_BUS_TIME_OUT);
250 printk("%sAddress Space: %u, %s\n", pfx, addr_space,
256 void cper_print_proc_ia(const char *pfx, const struct cper_sec_proc_ia *proc)
265 printk("%sLocal APIC_ID: 0x%llx\n", pfx, proc->lapic_id);
268 printk("%sCPUID Info:\n", pfx);
269 print_hex_dump(pfx, "", DUMP_PREFIX_OFFSET, 16, 4, proc->cpuid,
273 snprintf(newpfx, sizeof(newpfx), "%s ", pfx);
277 printk("%sError Information Structure %d:\n", pfx, i);
330 printk("%sContext Information Structure %d:\n", pfx, i);