Searched refs:icr_low (Results 1 – 2 of 2) sorted by relevance
/arch/x86/kvm/ |
D | trace.h | 412 TP_PROTO(__u32 icr_low, __u32 dest_id), 413 TP_ARGS(icr_low, dest_id), 416 __field( __u32, icr_low ) 421 __entry->icr_low = icr_low; 426 __entry->dest_id, (u8)__entry->icr_low, 427 __print_symbolic((__entry->icr_low >> 8 & 0x7), 429 (__entry->icr_low & (1<<11)) ? "logical" : "physical", 430 (__entry->icr_low & (1<<14)) ? "assert" : "de-assert", 431 (__entry->icr_low & (1<<15)) ? "level" : "edge", 432 __print_symbolic((__entry->icr_low >> 18 & 0x3),
|
D | lapic.c | 1010 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR); in apic_send_ipi() local 1014 irq.vector = icr_low & APIC_VECTOR_MASK; in apic_send_ipi() 1015 irq.delivery_mode = icr_low & APIC_MODE_MASK; in apic_send_ipi() 1016 irq.dest_mode = icr_low & APIC_DEST_MASK; in apic_send_ipi() 1017 irq.level = (icr_low & APIC_INT_ASSERT) != 0; in apic_send_ipi() 1018 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG; in apic_send_ipi() 1019 irq.shorthand = icr_low & APIC_SHORT_MASK; in apic_send_ipi() 1026 trace_kvm_apic_ipi(icr_low, irq.dest_id); in apic_send_ipi() 1032 icr_high, icr_low, irq.shorthand, irq.dest_id, in apic_send_ipi()
|