Lines Matching refs:msg

241 int cper_mem_err_location(struct cper_mem_err_compact *mem, char *msg)  in cper_mem_err_location()  argument
245 if (!msg) in cper_mem_err_location()
251 n += scnprintf(msg + n, len - n, "node:%d ", mem->node); in cper_mem_err_location()
253 n += scnprintf(msg + n, len - n, "card:%d ", mem->card); in cper_mem_err_location()
255 n += scnprintf(msg + n, len - n, "module:%d ", mem->module); in cper_mem_err_location()
257 n += scnprintf(msg + n, len - n, "rank:%d ", mem->rank); in cper_mem_err_location()
259 n += scnprintf(msg + n, len - n, "bank:%d ", mem->bank); in cper_mem_err_location()
261 n += scnprintf(msg + n, len - n, "bank_group:%d ", in cper_mem_err_location()
264 n += scnprintf(msg + n, len - n, "bank_address:%d ", in cper_mem_err_location()
267 n += scnprintf(msg + n, len - n, "device:%d ", mem->device); in cper_mem_err_location()
272 n += scnprintf(msg + n, len - n, "row:%d ", row); in cper_mem_err_location()
275 n += scnprintf(msg + n, len - n, "column:%d ", mem->column); in cper_mem_err_location()
277 n += scnprintf(msg + n, len - n, "bit_position:%d ", in cper_mem_err_location()
280 n += scnprintf(msg + n, len - n, "requestor_id:0x%016llx ", in cper_mem_err_location()
283 n += scnprintf(msg + n, len - n, "responder_id:0x%016llx ", in cper_mem_err_location()
286 n += scnprintf(msg + n, len - n, "target_id:0x%016llx ", in cper_mem_err_location()
289 n += scnprintf(msg + n, len - n, "chip_id:%d ", in cper_mem_err_location()
296 int cper_dimm_err_location(struct cper_mem_err_compact *mem, char *msg) in cper_dimm_err_location() argument
301 if (!msg || !(mem->validation_bits & CPER_MEM_VALID_MODULE_HANDLE)) in cper_dimm_err_location()
307 n = snprintf(msg, len, "DIMM location: %s %s ", bank, device); in cper_dimm_err_location()
309 n = snprintf(msg, len, in cper_dimm_err_location()