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()
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()
303 if (evt->u.ue_error.ignore_event) { in machine_process_ue_event()
308 if (evt->u.ue_error.physical_address_provided) { in machine_process_ue_event()
311 pfn = evt->u.ue_error.physical_address >> in machine_process_ue_event()
343 evt->u.ue_error.ignore_event) { in machine_check_process_queued_event()
487 subtype = evt->u.ue_error.ue_error_type < in machine_check_print_event_info()
489 mc_ue_types[evt->u.ue_error.ue_error_type] in machine_check_print_event_info()
491 if (evt->u.ue_error.effective_address_provided) in machine_check_print_event_info()
492 ea = evt->u.ue_error.effective_address; in machine_check_print_event_info()
493 if (evt->u.ue_error.physical_address_provided) in machine_check_print_event_info()
494 pa = evt->u.ue_error.physical_address; in machine_check_print_event_info()
498 subtype = evt->u.slb_error.slb_error_type < in machine_check_print_event_info()
500 mc_slb_types[evt->u.slb_error.slb_error_type] in machine_check_print_event_info()
502 if (evt->u.slb_error.effective_address_provided) in machine_check_print_event_info()
503 ea = evt->u.slb_error.effective_address; in machine_check_print_event_info()
507 subtype = evt->u.erat_error.erat_error_type < in machine_check_print_event_info()
509 mc_erat_types[evt->u.erat_error.erat_error_type] in machine_check_print_event_info()
511 if (evt->u.erat_error.effective_address_provided) in machine_check_print_event_info()
512 ea = evt->u.erat_error.effective_address; in machine_check_print_event_info()
516 subtype = evt->u.tlb_error.tlb_error_type < in machine_check_print_event_info()
518 mc_tlb_types[evt->u.tlb_error.tlb_error_type] in machine_check_print_event_info()
520 if (evt->u.tlb_error.effective_address_provided) in machine_check_print_event_info()
521 ea = evt->u.tlb_error.effective_address; in machine_check_print_event_info()
525 subtype = evt->u.user_error.user_error_type < in machine_check_print_event_info()
527 mc_user_types[evt->u.user_error.user_error_type] in machine_check_print_event_info()
529 if (evt->u.user_error.effective_address_provided) in machine_check_print_event_info()
530 ea = evt->u.user_error.effective_address; in machine_check_print_event_info()
534 subtype = evt->u.ra_error.ra_error_type < in machine_check_print_event_info()
536 mc_ra_types[evt->u.ra_error.ra_error_type] in machine_check_print_event_info()
538 if (evt->u.ra_error.effective_address_provided) in machine_check_print_event_info()
539 ea = evt->u.ra_error.effective_address; in machine_check_print_event_info()
543 subtype = evt->u.link_error.link_error_type < in machine_check_print_event_info()
545 mc_link_types[evt->u.link_error.link_error_type] in machine_check_print_event_info()
547 if (evt->u.link_error.effective_address_provided) in machine_check_print_event_info()
548 ea = evt->u.link_error.effective_address; in machine_check_print_event_info()