Lines Matching refs:u
55 mce->u.ue_error.ue_error_type = mce_err->u.ue_error_type; in mce_set_error_info()
58 mce->u.slb_error.slb_error_type = mce_err->u.slb_error_type; in mce_set_error_info()
61 mce->u.erat_error.erat_error_type = mce_err->u.erat_error_type; in mce_set_error_info()
64 mce->u.tlb_error.tlb_error_type = mce_err->u.tlb_error_type; in mce_set_error_info()
67 mce->u.user_error.user_error_type = mce_err->u.user_error_type; in mce_set_error_info()
70 mce->u.ra_error.ra_error_type = mce_err->u.ra_error_type; in mce_set_error_info()
73 mce->u.link_error.link_error_type = mce_err->u.link_error_type; in mce_set_error_info()
132 mce->u.ue_error.ignore_event = mce_err->ignore_event; in save_mce_event()
138 mce->u.tlb_error.effective_address_provided = true; in save_mce_event()
139 mce->u.tlb_error.effective_address = addr; in save_mce_event()
141 mce->u.slb_error.effective_address_provided = true; in save_mce_event()
142 mce->u.slb_error.effective_address = addr; in save_mce_event()
144 mce->u.erat_error.effective_address_provided = true; in save_mce_event()
145 mce->u.erat_error.effective_address = addr; in save_mce_event()
147 mce->u.user_error.effective_address_provided = true; in save_mce_event()
148 mce->u.user_error.effective_address = addr; in save_mce_event()
150 mce->u.ra_error.effective_address_provided = true; in save_mce_event()
151 mce->u.ra_error.effective_address = addr; in save_mce_event()
153 mce->u.link_error.effective_address_provided = true; in save_mce_event()
154 mce->u.link_error.effective_address = addr; in save_mce_event()
156 mce->u.ue_error.effective_address_provided = true; in save_mce_event()
157 mce->u.ue_error.effective_address = addr; in save_mce_event()
159 mce->u.ue_error.physical_address_provided = true; in save_mce_event()
160 mce->u.ue_error.physical_address = phys_addr; in save_mce_event()
299 if (evt->u.ue_error.ignore_event) { in machine_process_ue_event()
304 if (evt->u.ue_error.physical_address_provided) { in machine_process_ue_event()
307 pfn = evt->u.ue_error.physical_address >> in machine_process_ue_event()
339 evt->u.ue_error.ignore_event) { in machine_check_process_queued_event()
483 subtype = evt->u.ue_error.ue_error_type < in machine_check_print_event_info()
485 mc_ue_types[evt->u.ue_error.ue_error_type] in machine_check_print_event_info()
487 if (evt->u.ue_error.effective_address_provided) in machine_check_print_event_info()
488 ea = evt->u.ue_error.effective_address; in machine_check_print_event_info()
489 if (evt->u.ue_error.physical_address_provided) in machine_check_print_event_info()
490 pa = evt->u.ue_error.physical_address; in machine_check_print_event_info()
494 subtype = evt->u.slb_error.slb_error_type < in machine_check_print_event_info()
496 mc_slb_types[evt->u.slb_error.slb_error_type] in machine_check_print_event_info()
498 if (evt->u.slb_error.effective_address_provided) in machine_check_print_event_info()
499 ea = evt->u.slb_error.effective_address; in machine_check_print_event_info()
503 subtype = evt->u.erat_error.erat_error_type < in machine_check_print_event_info()
505 mc_erat_types[evt->u.erat_error.erat_error_type] in machine_check_print_event_info()
507 if (evt->u.erat_error.effective_address_provided) in machine_check_print_event_info()
508 ea = evt->u.erat_error.effective_address; in machine_check_print_event_info()
512 subtype = evt->u.tlb_error.tlb_error_type < in machine_check_print_event_info()
514 mc_tlb_types[evt->u.tlb_error.tlb_error_type] in machine_check_print_event_info()
516 if (evt->u.tlb_error.effective_address_provided) in machine_check_print_event_info()
517 ea = evt->u.tlb_error.effective_address; in machine_check_print_event_info()
521 subtype = evt->u.user_error.user_error_type < in machine_check_print_event_info()
523 mc_user_types[evt->u.user_error.user_error_type] in machine_check_print_event_info()
525 if (evt->u.user_error.effective_address_provided) in machine_check_print_event_info()
526 ea = evt->u.user_error.effective_address; in machine_check_print_event_info()
530 subtype = evt->u.ra_error.ra_error_type < in machine_check_print_event_info()
532 mc_ra_types[evt->u.ra_error.ra_error_type] in machine_check_print_event_info()
534 if (evt->u.ra_error.effective_address_provided) in machine_check_print_event_info()
535 ea = evt->u.ra_error.effective_address; in machine_check_print_event_info()
539 subtype = evt->u.link_error.link_error_type < in machine_check_print_event_info()
541 mc_link_types[evt->u.link_error.link_error_type] in machine_check_print_event_info()
543 if (evt->u.link_error.effective_address_provided) in machine_check_print_event_info()
544 ea = evt->u.link_error.effective_address; in machine_check_print_event_info()