Home
last modified time | relevance | path

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

/linux-2.6.39/arch/x86/kvm/
Dtrace.h377 TP_PROTO(__u32 icr_low, __u32 dest_id),
378 TP_ARGS(icr_low, dest_id),
381 __field( __u32, icr_low )
386 __entry->icr_low = icr_low;
391 __entry->dest_id, (u8)__entry->icr_low,
392 __print_symbolic((__entry->icr_low >> 8 & 0x7),
394 (__entry->icr_low & (1<<11)) ? "logical" : "physical",
395 (__entry->icr_low & (1<<14)) ? "assert" : "de-assert",
396 (__entry->icr_low & (1<<15)) ? "level" : "edge",
397 __print_symbolic((__entry->icr_low >> 18 & 0x3),
Dlapic.c487 u32 icr_low = apic_get_reg(apic, APIC_ICR); in apic_send_ipi() local
491 irq.vector = icr_low & APIC_VECTOR_MASK; in apic_send_ipi()
492 irq.delivery_mode = icr_low & APIC_MODE_MASK; in apic_send_ipi()
493 irq.dest_mode = icr_low & APIC_DEST_MASK; in apic_send_ipi()
494 irq.level = icr_low & APIC_INT_ASSERT; in apic_send_ipi()
495 irq.trig_mode = icr_low & APIC_INT_LEVELTRIG; in apic_send_ipi()
496 irq.shorthand = icr_low & APIC_SHORT_MASK; in apic_send_ipi()
502 trace_kvm_apic_ipi(icr_low, irq.dest_id); in apic_send_ipi()
507 icr_high, icr_low, irq.shorthand, irq.dest_id, in apic_send_ipi()