diff options
Diffstat (limited to 'arch/x86/include/asm/trace/hyperv.h')
| -rw-r--r-- | arch/x86/include/asm/trace/hyperv.h | 15 | 
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 4253bca99989..9c0d4b588e3f 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 |