Lines Matching refs:u

66 		mce->u.ue_error.ue_error_type = mce_err->u.ue_error_type;  in mce_set_error_info()
69 mce->u.slb_error.slb_error_type = mce_err->u.slb_error_type; in mce_set_error_info()
72 mce->u.erat_error.erat_error_type = mce_err->u.erat_error_type; in mce_set_error_info()
75 mce->u.tlb_error.tlb_error_type = mce_err->u.tlb_error_type; in mce_set_error_info()
78 mce->u.user_error.user_error_type = mce_err->u.user_error_type; in mce_set_error_info()
81 mce->u.ra_error.ra_error_type = mce_err->u.ra_error_type; in mce_set_error_info()
84 mce->u.link_error.link_error_type = mce_err->u.link_error_type; in mce_set_error_info()
136 mce->u.ue_error.ignore_event = mce_err->ignore_event; in save_mce_event()
142 mce->u.tlb_error.effective_address_provided = true; in save_mce_event()
143 mce->u.tlb_error.effective_address = addr; in save_mce_event()
145 mce->u.slb_error.effective_address_provided = true; in save_mce_event()
146 mce->u.slb_error.effective_address = addr; in save_mce_event()
148 mce->u.erat_error.effective_address_provided = true; in save_mce_event()
149 mce->u.erat_error.effective_address = addr; in save_mce_event()
151 mce->u.user_error.effective_address_provided = true; in save_mce_event()
152 mce->u.user_error.effective_address = addr; in save_mce_event()
154 mce->u.ra_error.effective_address_provided = true; in save_mce_event()
155 mce->u.ra_error.effective_address = addr; in save_mce_event()
157 mce->u.link_error.effective_address_provided = true; in save_mce_event()
158 mce->u.link_error.effective_address = addr; in save_mce_event()
160 mce->u.ue_error.effective_address_provided = true; in save_mce_event()
161 mce->u.ue_error.effective_address = addr; in save_mce_event()
163 mce->u.ue_error.physical_address_provided = true; in save_mce_event()
164 mce->u.ue_error.physical_address = phys_addr; in save_mce_event()
317 if (evt->u.ue_error.ignore_event) { in machine_process_ue_event()
322 if (evt->u.ue_error.physical_address_provided) { in machine_process_ue_event()
325 pfn = evt->u.ue_error.physical_address >> in machine_process_ue_event()
357 evt->u.ue_error.ignore_event) { in machine_check_process_queued_event()
480 subtype = evt->u.ue_error.ue_error_type < in machine_check_print_event_info()
482 mc_ue_types[evt->u.ue_error.ue_error_type] in machine_check_print_event_info()
484 if (evt->u.ue_error.effective_address_provided) in machine_check_print_event_info()
485 ea = evt->u.ue_error.effective_address; in machine_check_print_event_info()
486 if (evt->u.ue_error.physical_address_provided) in machine_check_print_event_info()
487 pa = evt->u.ue_error.physical_address; in machine_check_print_event_info()
491 subtype = evt->u.slb_error.slb_error_type < in machine_check_print_event_info()
493 mc_slb_types[evt->u.slb_error.slb_error_type] in machine_check_print_event_info()
495 if (evt->u.slb_error.effective_address_provided) in machine_check_print_event_info()
496 ea = evt->u.slb_error.effective_address; in machine_check_print_event_info()
500 subtype = evt->u.erat_error.erat_error_type < in machine_check_print_event_info()
502 mc_erat_types[evt->u.erat_error.erat_error_type] in machine_check_print_event_info()
504 if (evt->u.erat_error.effective_address_provided) in machine_check_print_event_info()
505 ea = evt->u.erat_error.effective_address; in machine_check_print_event_info()
509 subtype = evt->u.tlb_error.tlb_error_type < in machine_check_print_event_info()
511 mc_tlb_types[evt->u.tlb_error.tlb_error_type] in machine_check_print_event_info()
513 if (evt->u.tlb_error.effective_address_provided) in machine_check_print_event_info()
514 ea = evt->u.tlb_error.effective_address; in machine_check_print_event_info()
518 subtype = evt->u.user_error.user_error_type < in machine_check_print_event_info()
520 mc_user_types[evt->u.user_error.user_error_type] in machine_check_print_event_info()
522 if (evt->u.user_error.effective_address_provided) in machine_check_print_event_info()
523 ea = evt->u.user_error.effective_address; in machine_check_print_event_info()
527 subtype = evt->u.ra_error.ra_error_type < in machine_check_print_event_info()
529 mc_ra_types[evt->u.ra_error.ra_error_type] in machine_check_print_event_info()
531 if (evt->u.ra_error.effective_address_provided) in machine_check_print_event_info()
532 ea = evt->u.ra_error.effective_address; in machine_check_print_event_info()
536 subtype = evt->u.link_error.link_error_type < in machine_check_print_event_info()
538 mc_link_types[evt->u.link_error.link_error_type] in machine_check_print_event_info()
540 if (evt->u.link_error.effective_address_provided) in machine_check_print_event_info()
541 ea = evt->u.link_error.effective_address; in machine_check_print_event_info()