diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-04-14 18:49:38 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-04-14 22:04:26 -0400 |
commit | ecda8ae02a08ef065ff387f5cb2a2d4999da2408 (patch) | |
tree | d642186713a134e984455119665fb2ffb5f26b05 /include/trace | |
parent | 61f919a12fbdc3fd20f980a34a118d597198a392 (diff) | |
download | talos-op-linux-ecda8ae02a08ef065ff387f5cb2a2d4999da2408.tar.gz talos-op-linux-ecda8ae02a08ef065ff387f5cb2a2d4999da2408.zip |
tracing/events: fix lockdep system name
Impact: fix compile error of lockdep event tracer
Ingo Molnar pointed out that the system name for the lockdep tracer was "lock"
which is used to include the event trace file name. It should be "lockdep"
Reported-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/lockdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/lockdep.h b/include/trace/lockdep.h index 4d301e758de3..45e326b5c7f3 100644 --- a/include/trace/lockdep.h +++ b/include/trace/lockdep.h @@ -5,7 +5,7 @@ #include <linux/tracepoint.h> #undef TRACE_SYSTEM -#define TRACE_SYSTEM lock +#define TRACE_SYSTEM lockdep #ifdef CONFIG_LOCKDEP |