summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/trace/hyperv.h
diff options
context:
space:
mode:
authorVitaly Kuznetsov <vkuznets@redhat.com>2018-06-22 19:06:25 +0200
committerThomas Gleixner <tglx@linutronix.de>2018-07-03 09:00:34 +0200
commit58ec5e9c9044bd7e1c0bcc6ad822b2e909f49732 (patch)
treeeb69a33e221a987a50f3484326b40d8319dd1db9 /arch/x86/include/asm/trace/hyperv.h
parent4bd06060762bc7e4834ecf9daeb78834f7a29582 (diff)
downloadlinux-0-day-58ec5e9c9044bd7e1c0bcc6ad822b2e909f49732.tar.gz
linux-0-day-58ec5e9c9044bd7e1c0bcc6ad822b2e909f49732.tar.xz
x86/hyper-v: Trace PV IPI send
Trace Hyper-V PV IPIs the same way we do PV TLB flush. Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: devel@linuxdriverproject.org Cc: "K. Y. Srinivasan" <kys@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Cc: Stephen Hemminger <sthemmin@microsoft.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Tianyu Lan <Tianyu.Lan@microsoft.com> Cc: "Michael Kelley (EOSG)" <Michael.H.Kelley@microsoft.com> Link: https://lkml.kernel.org/r/20180622170625.30688-5-vkuznets@redhat.com
Diffstat (limited to 'arch/x86/include/asm/trace/hyperv.h')
-rw-r--r--arch/x86/include/asm/trace/hyperv.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/x86/include/asm/trace/hyperv.h b/arch/x86/include/asm/trace/hyperv.h
index 4253bca999890..9c0d4b588e3fc 100644
--- a/arch/x86/include/asm/trace/hyperv.h
+++ b/arch/x86/include/asm/trace/hyperv.h
@@ -28,6 +28,21 @@ TRACE_EVENT(hyperv_mmu_flush_tlb_others,
__entry->addr, __entry->end)
);
+TRACE_EVENT(hyperv_send_ipi_mask,
+ TP_PROTO(const struct cpumask *cpus,
+ int vector),
+ TP_ARGS(cpus, vector),
+ TP_STRUCT__entry(
+ __field(unsigned int, ncpus)
+ __field(int, vector)
+ ),
+ TP_fast_assign(__entry->ncpus = cpumask_weight(cpus);
+ __entry->vector = vector;
+ ),
+ TP_printk("ncpus %d vector %x",
+ __entry->ncpus, __entry->vector)
+ );
+
#endif /* CONFIG_HYPERV */
#undef TRACE_INCLUDE_PATH