diff options
author | Steven Rostedt (VMware) <[email protected]> | 2018-09-10 21:46:38 -0400 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2018-09-11 08:12:00 +0200 |
commit | 84818af26350c245c8e1994493b7459c0822be5b (patch) | |
tree | bc0d979006c5ee52f6cba5be82949123c16355f7 /tools/perf/scripts/python/exported-sql-viewer.py | |
parent | 925b9cd1b89a94b7124d128c80dfc48f78a63098 (diff) |
locking/rtmutex: Fix the preprocessor logic with normal #ifdef #else #endif
Merging v4.14.68 into v4.14-rt I tripped over a conflict in the
rtmutex.c code. There I found that we had:
#ifdef CONFIG_DEBUG_LOCK_ALLOC
[..]
#endif
#ifndef CONFIG_DEBUG_LOCK_ALLOC
[..]
#endif
Really this should be:
#ifdef CONFIG_DEBUG_LOCK_ALLOC
[..]
#else
[..]
#endif
This cleans up that logic.
Signed-off-by: Steven Rostedt (VMware) <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Rosin <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/exported-sql-viewer.py')
0 files changed, 0 insertions, 0 deletions