tracing: Add TRACE_SYSTEM_VAR to kvm-s390
New code will require TRACE_SYSTEM to be a valid C variable name, but some tracepoints have TRACE_SYSTEM with '-' and not '_', so it can not be used. Instead, add a TRACE_SYSTEM_VAR that can give the tracing infrastructure a unique name for the trace system. Link: http://lkml.kernel.org/r/20150402111500.5e52c1ed.cornelia.huck@de.ibm.com Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: David Hildenbrand <dahi@linux.vnet.ibm.com> Cc: Christian Borntraeger <borntraeger@de.ibm.com> Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> Tested-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
parent
882156e040
commit
bd41202214
|
@ -9,6 +9,13 @@
|
||||||
#undef TRACE_INCLUDE_FILE
|
#undef TRACE_INCLUDE_FILE
|
||||||
#define TRACE_INCLUDE_FILE trace-s390
|
#define TRACE_INCLUDE_FILE trace-s390
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The TRACE_SYSTEM_VAR defaults to TRACE_SYSTEM, but must be a
|
||||||
|
* legitimate C variable. It is not exported to user space.
|
||||||
|
*/
|
||||||
|
#undef TRACE_SYSTEM_VAR
|
||||||
|
#define TRACE_SYSTEM_VAR kvm_s390
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Trace point for the creation of the kvm instance.
|
* Trace point for the creation of the kvm instance.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue