Home
last modified time | relevance | path

Searched refs:icr_low (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/arch/x86/kvm/
Dtrace.h416 TP_PROTO(__u32 icr_low, __u32 dest_id),
417 TP_ARGS(icr_low, dest_id),
420 __field( __u32, icr_low )
425 __entry->icr_low = icr_low;
430 __entry->dest_id, (u8)__entry->icr_low,
431 __print_symbolic((__entry->icr_low >> 8 & 0x7),
433 (__entry->icr_low & (1<<11)) ? "logical" : "physical",
434 (__entry->icr_low & (1<<14)) ? "assert" : "de-assert",
435 (__entry->icr_low & (1<<15)) ? "level" : "edge",
436 __print_symbolic((__entry->icr_low >> 18 & 0x3),
Dlapic.c1198 u32 icr_low = kvm_lapic_get_reg(apic, APIC_ICR); in apic_send_ipi() local
1202 irq.vector = icr_low & APIC_VECTOR_MASK; in apic_send_ipi()
1203 irq.delivery_mode = icr_low & APIC_MODE_MASK; in apic_send_ipi()
1204 irq.dest_mode = icr_low & APIC_DEST_MASK; in apic_send_ipi()
1205 irq.level = (icr_low & APIC_INT_ASSERT) != 0; in apic_send_ipi()
1206 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG; in apic_send_ipi()
1207 irq.shorthand = icr_low & APIC_SHORT_MASK; in apic_send_ipi()
1214 trace_kvm_apic_ipi(icr_low, irq.dest_id); in apic_send_ipi()
1220 icr_high, icr_low, irq.shorthand, irq.dest_id, in apic_send_ipi()