aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/trace.h
diff options
context:
space:
mode:
authorDivya Indi <divya.indi@oracle.com>2019-08-14 10:55:23 -0700
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2019-11-13 09:37:29 -0500
commit2d6425af61166e026e7476db64f70f1266127b1d (patch)
tree97b979550838be0e002f76e4d475bc2f7891f060 /include/linux/trace.h
parenttracing: Make internal ftrace events static (diff)
downloadwireguard-linux-2d6425af61166e026e7476db64f70f1266127b1d.tar.xz
wireguard-linux-2d6425af61166e026e7476db64f70f1266127b1d.zip
tracing: Declare newly exported APIs in include/linux/trace.h
Declare the newly introduced and exported APIs in the header file - include/linux/trace.h. Moving previous declarations from kernel/trace/trace.h to include/linux/trace.h. Link: http://lkml.kernel.org/r/1565805327-579-2-git-send-email-divya.indi@oracle.com Signed-off-by: Divya Indi <divya.indi@oracle.com> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'include/linux/trace.h')
-rw-r--r--include/linux/trace.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/trace.h b/include/linux/trace.h
index b95ffb2188ab..24fcf07812ae 100644
--- a/include/linux/trace.h
+++ b/include/linux/trace.h
@@ -24,6 +24,13 @@ struct trace_export {
int register_ftrace_export(struct trace_export *export);
int unregister_ftrace_export(struct trace_export *export);
+struct trace_array;
+
+void trace_printk_init_buffers(void);
+int trace_array_printk(struct trace_array *tr, unsigned long ip,
+ const char *fmt, ...);
+struct trace_array *trace_array_create(const char *name);
+int trace_array_destroy(struct trace_array *tr);
#endif /* CONFIG_TRACING */
#endif /* _LINUX_TRACE_H */