aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/trace/trace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 74df029056b0..4164a344e72a 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -887,21 +887,21 @@ trace_current_buffer_lock_reserve(int type, unsigned long len,
887 return trace_buffer_lock_reserve(&global_trace, 887 return trace_buffer_lock_reserve(&global_trace,
888 type, len, flags, pc); 888 type, len, flags, pc);
889} 889}
890EXPORT_SYMBOL(trace_current_buffer_lock_reserve); 890EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
891 891
892void trace_current_buffer_unlock_commit(struct ring_buffer_event *event, 892void trace_current_buffer_unlock_commit(struct ring_buffer_event *event,
893 unsigned long flags, int pc) 893 unsigned long flags, int pc)
894{ 894{
895 __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 1); 895 __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 1);
896} 896}
897EXPORT_SYMBOL(trace_current_buffer_unlock_commit); 897EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
898 898
899void trace_nowake_buffer_unlock_commit(struct ring_buffer_event *event, 899void trace_nowake_buffer_unlock_commit(struct ring_buffer_event *event,
900 unsigned long flags, int pc) 900 unsigned long flags, int pc)
901{ 901{
902 __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 0); 902 __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 0);
903} 903}
904EXPORT_SYMBOL(trace_nowake_buffer_unlock_commit); 904EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit);
905 905
906void trace_current_buffer_discard_commit(struct ring_buffer_event *event) 906void trace_current_buffer_discard_commit(struct ring_buffer_event *event)
907{ 907{