Home
last modified time | relevance | path

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

/linux-3.4.99/arch/x86/kvm/
Dtrace.h469 TP_PROTO(__u32 icr_low, __u32 dest_id),
470 TP_ARGS(icr_low, dest_id),
473 __field( __u32, icr_low )
478 __entry->icr_low = icr_low;
483 __entry->dest_id, (u8)__entry->icr_low,
484 __print_symbolic((__entry->icr_low >> 8 & 0x7),
486 (__entry->icr_low & (1<<11)) ? "logical" : "physical",
487 (__entry->icr_low & (1<<14)) ? "assert" : "de-assert",
488 (__entry->icr_low & (1<<15)) ? "level" : "edge",
489 __print_symbolic((__entry->icr_low >> 18 & 0x3),
Dlapic.c505 u32 icr_low = apic_get_reg(apic, APIC_ICR); in apic_send_ipi() local
509 irq.vector = icr_low & APIC_VECTOR_MASK; in apic_send_ipi()
510 irq.delivery_mode = icr_low & APIC_MODE_MASK; in apic_send_ipi()
511 irq.dest_mode = icr_low & APIC_DEST_MASK; in apic_send_ipi()
512 irq.level = icr_low & APIC_INT_ASSERT; in apic_send_ipi()
513 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG; in apic_send_ipi()
514 irq.shorthand = icr_low & APIC_SHORT_MASK; in apic_send_ipi()
520 trace_kvm_apic_ipi(icr_low, irq.dest_id); in apic_send_ipi()
525 icr_high, icr_low, irq.shorthand, irq.dest_id, in apic_send_ipi()