Lines Matching refs:u

56 		mce->u.ue_error.ue_error_type = mce_err->u.ue_error_type;  in mce_set_error_info()
59 mce->u.slb_error.slb_error_type = mce_err->u.slb_error_type; in mce_set_error_info()
62 mce->u.erat_error.erat_error_type = mce_err->u.erat_error_type; in mce_set_error_info()
65 mce->u.tlb_error.tlb_error_type = mce_err->u.tlb_error_type; in mce_set_error_info()
68 mce->u.user_error.user_error_type = mce_err->u.user_error_type; in mce_set_error_info()
71 mce->u.ra_error.ra_error_type = mce_err->u.ra_error_type; in mce_set_error_info()
74 mce->u.link_error.link_error_type = mce_err->u.link_error_type; in mce_set_error_info()
129 mce->u.tlb_error.effective_address_provided = true; in save_mce_event()
130 mce->u.tlb_error.effective_address = addr; in save_mce_event()
132 mce->u.slb_error.effective_address_provided = true; in save_mce_event()
133 mce->u.slb_error.effective_address = addr; in save_mce_event()
135 mce->u.erat_error.effective_address_provided = true; in save_mce_event()
136 mce->u.erat_error.effective_address = addr; in save_mce_event()
138 mce->u.user_error.effective_address_provided = true; in save_mce_event()
139 mce->u.user_error.effective_address = addr; in save_mce_event()
141 mce->u.ra_error.effective_address_provided = true; in save_mce_event()
142 mce->u.ra_error.effective_address = addr; in save_mce_event()
144 mce->u.link_error.effective_address_provided = true; in save_mce_event()
145 mce->u.link_error.effective_address = addr; in save_mce_event()
147 mce->u.ue_error.effective_address_provided = true; in save_mce_event()
148 mce->u.ue_error.effective_address = addr; in save_mce_event()
150 mce->u.ue_error.physical_address_provided = true; in save_mce_event()
151 mce->u.ue_error.physical_address = phys_addr; in save_mce_event()
152 mce->u.ue_error.ignore_event = mce_err->ignore_event; in save_mce_event()
276 if (evt->u.ue_error.ignore_event) { in machine_process_ue_event()
281 if (evt->u.ue_error.physical_address_provided) { in machine_process_ue_event()
284 pfn = evt->u.ue_error.physical_address >> in machine_process_ue_event()
316 evt->u.ue_error.ignore_event) { in machine_check_process_queued_event()
438 subtype = evt->u.ue_error.ue_error_type < in machine_check_print_event_info()
440 mc_ue_types[evt->u.ue_error.ue_error_type] in machine_check_print_event_info()
442 if (evt->u.ue_error.effective_address_provided) in machine_check_print_event_info()
443 ea = evt->u.ue_error.effective_address; in machine_check_print_event_info()
444 if (evt->u.ue_error.physical_address_provided) in machine_check_print_event_info()
445 pa = evt->u.ue_error.physical_address; in machine_check_print_event_info()
449 subtype = evt->u.slb_error.slb_error_type < in machine_check_print_event_info()
451 mc_slb_types[evt->u.slb_error.slb_error_type] in machine_check_print_event_info()
453 if (evt->u.slb_error.effective_address_provided) in machine_check_print_event_info()
454 ea = evt->u.slb_error.effective_address; in machine_check_print_event_info()
458 subtype = evt->u.erat_error.erat_error_type < in machine_check_print_event_info()
460 mc_erat_types[evt->u.erat_error.erat_error_type] in machine_check_print_event_info()
462 if (evt->u.erat_error.effective_address_provided) in machine_check_print_event_info()
463 ea = evt->u.erat_error.effective_address; in machine_check_print_event_info()
467 subtype = evt->u.tlb_error.tlb_error_type < in machine_check_print_event_info()
469 mc_tlb_types[evt->u.tlb_error.tlb_error_type] in machine_check_print_event_info()
471 if (evt->u.tlb_error.effective_address_provided) in machine_check_print_event_info()
472 ea = evt->u.tlb_error.effective_address; in machine_check_print_event_info()
476 subtype = evt->u.user_error.user_error_type < in machine_check_print_event_info()
478 mc_user_types[evt->u.user_error.user_error_type] in machine_check_print_event_info()
480 if (evt->u.user_error.effective_address_provided) in machine_check_print_event_info()
481 ea = evt->u.user_error.effective_address; in machine_check_print_event_info()
485 subtype = evt->u.ra_error.ra_error_type < in machine_check_print_event_info()
487 mc_ra_types[evt->u.ra_error.ra_error_type] in machine_check_print_event_info()
489 if (evt->u.ra_error.effective_address_provided) in machine_check_print_event_info()
490 ea = evt->u.ra_error.effective_address; in machine_check_print_event_info()
494 subtype = evt->u.link_error.link_error_type < in machine_check_print_event_info()
496 mc_link_types[evt->u.link_error.link_error_type] in machine_check_print_event_info()
498 if (evt->u.link_error.effective_address_provided) in machine_check_print_event_info()
499 ea = evt->u.link_error.effective_address; in machine_check_print_event_info()