Searched refs:icr_low (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/arch/x86/kvm/ |
D | trace.h | 394 TP_PROTO(__u32 icr_low, __u32 dest_id), 395 TP_ARGS(icr_low, dest_id), 398 __field( __u32, icr_low ) 403 __entry->icr_low = icr_low; 408 __entry->dest_id, (u8)__entry->icr_low, 409 __print_symbolic((__entry->icr_low >> 8 & 0x7), 411 (__entry->icr_low & (1<<11)) ? "logical" : "physical", 412 (__entry->icr_low & (1<<14)) ? "assert" : "de-assert", 413 (__entry->icr_low & (1<<15)) ? "level" : "edge", 414 __print_symbolic((__entry->icr_low >> 18 & 0x3),
|
D | lapic.c | 912 u32 icr_low = kvm_apic_get_reg(apic, APIC_ICR); in apic_send_ipi() local 916 irq.vector = icr_low & APIC_VECTOR_MASK; in apic_send_ipi() 917 irq.delivery_mode = icr_low & APIC_MODE_MASK; in apic_send_ipi() 918 irq.dest_mode = icr_low & APIC_DEST_MASK; in apic_send_ipi() 919 irq.level = icr_low & APIC_INT_ASSERT; in apic_send_ipi() 920 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG; in apic_send_ipi() 921 irq.shorthand = icr_low & APIC_SHORT_MASK; in apic_send_ipi() 927 trace_kvm_apic_ipi(icr_low, irq.dest_id); in apic_send_ipi() 932 icr_high, icr_low, irq.shorthand, irq.dest_id, in apic_send_ipi()
|