提交 12acd473 编写于 作者: S Steven Rostedt 提交者: Steven Rostedt

tracing: add EXPORT_SYMBOL_GPL for trace commits

Not all the necessary symbols were exported to allow for tracing
by modules. This patch adds them in.

[ Impact: allow modules to commit data to the ring buffer ]
Signed-off-by: NSteven Rostedt <rostedt@goodmis.org>
上级 b0afdc12
...@@ -894,18 +894,20 @@ void trace_current_buffer_unlock_commit(struct ring_buffer_event *event, ...@@ -894,18 +894,20 @@ void trace_current_buffer_unlock_commit(struct ring_buffer_event *event,
{ {
__trace_buffer_unlock_commit(&global_trace, event, flags, pc, 1); __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 1);
} }
EXPORT_SYMBOL(trace_current_buffer_unlock_commit);
void trace_nowake_buffer_unlock_commit(struct ring_buffer_event *event, void trace_nowake_buffer_unlock_commit(struct ring_buffer_event *event,
unsigned long flags, int pc) unsigned long flags, int pc)
{ {
__trace_buffer_unlock_commit(&global_trace, event, flags, pc, 0); __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 0);
} }
EXPORT_SYMBOL(trace_nowake_buffer_unlock_commit);
void trace_current_buffer_discard_commit(struct ring_buffer_event *event) void trace_current_buffer_discard_commit(struct ring_buffer_event *event)
{ {
ring_buffer_discard_commit(global_trace.buffer, event); ring_buffer_discard_commit(global_trace.buffer, event);
} }
EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit); EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
void void
trace_function(struct trace_array *tr, trace_function(struct trace_array *tr,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册