]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tracing: use proper export symbol for tracing api
authorSteven Rostedt <srostedt@redhat.com>
Tue, 5 May 2009 23:22:53 +0000 (19:22 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 5 May 2009 23:22:53 +0000 (19:22 -0400)
When adding the EXPORT_SYMBOL to some of the tracing API, I accidently
used EXPORT_SYMBOL instead of EXPORT_SYMBOL_GPL. This patch fixes
that mistake.

[ Impact: export the tracing code only for GPL modules ]

Reported-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/trace.c

index 74df029056b041ea1b5983f9c95a0cb5310b23e3..4164a344e72aabbdb5c9c26c8a63690622b85350 100644 (file)
@@ -887,21 +887,21 @@ trace_current_buffer_lock_reserve(int type, unsigned long len,
        return trace_buffer_lock_reserve(&global_trace,
                                         type, len, flags, pc);
 }
-EXPORT_SYMBOL(trace_current_buffer_lock_reserve);
+EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
 
 void trace_current_buffer_unlock_commit(struct ring_buffer_event *event,
                                        unsigned long flags, int pc)
 {
        __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 1);
 }
-EXPORT_SYMBOL(trace_current_buffer_unlock_commit);
+EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
 
 void trace_nowake_buffer_unlock_commit(struct ring_buffer_event *event,
                                        unsigned long flags, int pc)
 {
        __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 0);
 }
-EXPORT_SYMBOL(trace_nowake_buffer_unlock_commit);
+EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit);
 
 void trace_current_buffer_discard_commit(struct ring_buffer_event *event)
 {