Lines Matching refs:u
72 mce->u.ue_error.ue_error_type = mce_err->u.ue_error_type; in mce_set_error_info()
75 mce->u.slb_error.slb_error_type = mce_err->u.slb_error_type; in mce_set_error_info()
78 mce->u.erat_error.erat_error_type = mce_err->u.erat_error_type; in mce_set_error_info()
81 mce->u.tlb_error.tlb_error_type = mce_err->u.tlb_error_type; in mce_set_error_info()
84 mce->u.user_error.user_error_type = mce_err->u.user_error_type; in mce_set_error_info()
87 mce->u.ra_error.ra_error_type = mce_err->u.ra_error_type; in mce_set_error_info()
90 mce->u.link_error.link_error_type = mce_err->u.link_error_type; in mce_set_error_info()
145 mce->u.tlb_error.effective_address_provided = true; in save_mce_event()
146 mce->u.tlb_error.effective_address = addr; in save_mce_event()
148 mce->u.slb_error.effective_address_provided = true; in save_mce_event()
149 mce->u.slb_error.effective_address = addr; in save_mce_event()
151 mce->u.erat_error.effective_address_provided = true; in save_mce_event()
152 mce->u.erat_error.effective_address = addr; in save_mce_event()
154 mce->u.user_error.effective_address_provided = true; in save_mce_event()
155 mce->u.user_error.effective_address = addr; in save_mce_event()
157 mce->u.ra_error.effective_address_provided = true; in save_mce_event()
158 mce->u.ra_error.effective_address = addr; in save_mce_event()
160 mce->u.link_error.effective_address_provided = true; in save_mce_event()
161 mce->u.link_error.effective_address = addr; in save_mce_event()
163 mce->u.ue_error.effective_address_provided = true; in save_mce_event()
164 mce->u.ue_error.effective_address = addr; in save_mce_event()
166 mce->u.ue_error.physical_address_provided = true; in save_mce_event()
167 mce->u.ue_error.physical_address = phys_addr; in save_mce_event()
168 mce->u.ue_error.ignore_event = mce_err->ignore_event; in save_mce_event()
306 if (evt->u.ue_error.ignore_event) { in machine_process_ue_event()
311 if (evt->u.ue_error.physical_address_provided) { in machine_process_ue_event()
314 pfn = evt->u.ue_error.physical_address >> in machine_process_ue_event()
346 evt->u.ue_error.ignore_event) { in machine_check_process_queued_event()
469 subtype = evt->u.ue_error.ue_error_type < in machine_check_print_event_info()
471 mc_ue_types[evt->u.ue_error.ue_error_type] in machine_check_print_event_info()
473 if (evt->u.ue_error.effective_address_provided) in machine_check_print_event_info()
474 ea = evt->u.ue_error.effective_address; in machine_check_print_event_info()
475 if (evt->u.ue_error.physical_address_provided) in machine_check_print_event_info()
476 pa = evt->u.ue_error.physical_address; in machine_check_print_event_info()
480 subtype = evt->u.slb_error.slb_error_type < in machine_check_print_event_info()
482 mc_slb_types[evt->u.slb_error.slb_error_type] in machine_check_print_event_info()
484 if (evt->u.slb_error.effective_address_provided) in machine_check_print_event_info()
485 ea = evt->u.slb_error.effective_address; in machine_check_print_event_info()
489 subtype = evt->u.erat_error.erat_error_type < in machine_check_print_event_info()
491 mc_erat_types[evt->u.erat_error.erat_error_type] in machine_check_print_event_info()
493 if (evt->u.erat_error.effective_address_provided) in machine_check_print_event_info()
494 ea = evt->u.erat_error.effective_address; in machine_check_print_event_info()
498 subtype = evt->u.tlb_error.tlb_error_type < in machine_check_print_event_info()
500 mc_tlb_types[evt->u.tlb_error.tlb_error_type] in machine_check_print_event_info()
502 if (evt->u.tlb_error.effective_address_provided) in machine_check_print_event_info()
503 ea = evt->u.tlb_error.effective_address; in machine_check_print_event_info()
507 subtype = evt->u.user_error.user_error_type < in machine_check_print_event_info()
509 mc_user_types[evt->u.user_error.user_error_type] in machine_check_print_event_info()
511 if (evt->u.user_error.effective_address_provided) in machine_check_print_event_info()
512 ea = evt->u.user_error.effective_address; in machine_check_print_event_info()
516 subtype = evt->u.ra_error.ra_error_type < in machine_check_print_event_info()
518 mc_ra_types[evt->u.ra_error.ra_error_type] in machine_check_print_event_info()
520 if (evt->u.ra_error.effective_address_provided) in machine_check_print_event_info()
521 ea = evt->u.ra_error.effective_address; in machine_check_print_event_info()
525 subtype = evt->u.link_error.link_error_type < in machine_check_print_event_info()
527 mc_link_types[evt->u.link_error.link_error_type] in machine_check_print_event_info()
529 if (evt->u.link_error.effective_address_provided) in machine_check_print_event_info()
530 ea = evt->u.link_error.effective_address; in machine_check_print_event_info()