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 ace464f09681..4d705cb4d63b 100644 --- a/arch/x86/include/asm/trace/hyperv.h +++ b/arch/x86/include/asm/trace/hyperv.h @@ -71,6 +71,21 @@ TRACE_EVENT(hyperv_send_ipi_mask,  		      __entry->ncpus, __entry->vector)  	); +TRACE_EVENT(hyperv_send_ipi_one, +	    TP_PROTO(int cpu, +		     int vector), +	    TP_ARGS(cpu, vector), +	    TP_STRUCT__entry( +		    __field(int, cpu) +		    __field(int, vector) +		    ), +	    TP_fast_assign(__entry->cpu = cpu; +			   __entry->vector = vector; +		    ), +	    TP_printk("cpu %d vector %x", +		      __entry->cpu, __entry->vector) +	); +  #endif /* CONFIG_HYPERV */  #undef TRACE_INCLUDE_PATH  |