Skip to content

Commit

Permalink
perf_events: Fix modular build
Browse files Browse the repository at this point in the history
Fix:

  ERROR: "perf_swevent_put_recursion_context" [fs/ext4/ext4.ko] undefined!
  ERROR: "perf_swevent_get_recursion_context" [fs/ext4/ext4.ko] undefined!

Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Jason Baron <jbaron@redhat.com>
LKML-Reference: <1258864015-10579-1-git-send-email-fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Nov 22, 2009
1 parent e57cfcd commit 645e8cc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kernel/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -3903,11 +3903,13 @@ int perf_swevent_get_recursion_context(int **recursion)

return 0;
}
EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);

void perf_swevent_put_recursion_context(int *recursion)
{
(*recursion)--;
}
EXPORT_SYMBOL_GPL(perf_swevent_put_recursion_context);

static void __do_perf_sw_event(enum perf_type_id type, u32 event_id,
u64 nr, int nmi,
Expand Down

0 comments on commit 645e8cc

Please sign in to comment.