2008-12-24 05:24:12 +01:00
|
|
|
#ifndef __TRACE_EVENTS_H
|
|
|
|
#define __TRACE_EVENTS_H
|
|
|
|
|
tracing: make trace_seq operations available for core kernel
In the process to make TRACE_EVENT macro work for modules, the trace_seq
operations must be available for core kernel code.
These operations are quite useful and can be used for other implementations.
The main idea is that we create a trace_seq handle that acts very much
like the seq_file handle.
struct trace_seq *s = kmalloc(sizeof(*s, GFP_KERNEL);
trace_seq_init(s);
trace_seq_printf(s, "some data %d\n", variable);
printk("%s", s->buffer);
The main use is to allow a top level function call several other functions
that may store printf like data into the buffer. Then at the end, the top
level function can process all the data with any method it would like to.
It could be passed to userspace, output via printk or even use seq_file:
trace_seq_to_user(s, ubuf, cnt);
seq_puts(m, s->buffer);
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
2009-04-11 18:59:57 +02:00
|
|
|
#include <linux/trace_seq.h>
|
2008-12-24 05:24:12 +01:00
|
|
|
#include "trace.h"
|
|
|
|
|
2013-03-09 03:02:34 +01:00
|
|
|
extern enum print_line_t
|
|
|
|
trace_print_bputs_msg_only(struct trace_iterator *iter);
|
2009-03-19 17:20:38 +01:00
|
|
|
extern enum print_line_t
|
|
|
|
trace_print_bprintk_msg_only(struct trace_iterator *iter);
|
|
|
|
extern enum print_line_t
|
|
|
|
trace_print_printk_msg_only(struct trace_iterator *iter);
|
|
|
|
|
2009-03-06 17:21:49 +01:00
|
|
|
extern int
|
2008-12-24 05:24:12 +01:00
|
|
|
seq_print_ip_sym(struct trace_seq *s, unsigned long ip,
|
|
|
|
unsigned long sym_flags);
|
|
|
|
|
2009-03-23 14:12:23 +01:00
|
|
|
extern int trace_print_context(struct trace_iterator *iter);
|
|
|
|
extern int trace_print_lat_context(struct trace_iterator *iter);
|
2009-02-02 23:29:21 +01:00
|
|
|
|
2009-05-18 13:35:34 +02:00
|
|
|
extern void trace_event_read_lock(void);
|
|
|
|
extern void trace_event_read_unlock(void);
|
2009-03-23 14:12:23 +01:00
|
|
|
extern struct trace_event *ftrace_find_event(int type);
|
2008-12-24 05:24:12 +01:00
|
|
|
|
2009-03-23 14:12:23 +01:00
|
|
|
extern enum print_line_t trace_nop_print(struct trace_iterator *iter,
|
2010-04-23 00:46:14 +02:00
|
|
|
int flags, struct trace_event *event);
|
2009-09-11 20:24:13 +02:00
|
|
|
extern int
|
|
|
|
trace_print_lat_fmt(struct trace_seq *s, struct trace_entry *entry);
|
2008-12-24 05:24:13 +01:00
|
|
|
|
2009-06-09 23:29:07 +02:00
|
|
|
/* used by module unregistering */
|
2015-05-05 15:39:12 +02:00
|
|
|
extern int __unregister_trace_event(struct trace_event *event);
|
2013-03-11 08:14:03 +01:00
|
|
|
extern struct rw_semaphore trace_event_sem;
|
2009-06-09 23:29:07 +02:00
|
|
|
|
2014-11-12 16:29:54 +01:00
|
|
|
#define SEQ_PUT_FIELD(s, x) \
|
|
|
|
trace_seq_putmem(s, &(x), sizeof(x))
|
|
|
|
|
|
|
|
#define SEQ_PUT_HEX_FIELD(s, x) \
|
|
|
|
trace_seq_putmem_hex(s, &(x), sizeof(x))
|
2008-12-24 05:24:13 +01:00
|
|
|
|
2008-12-24 05:24:12 +01:00
|
|
|
#endif
|
|
|
|
|