diff options
| author | Bart Van Assche <[email protected]> | 2018-12-06 17:11:30 -0800 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2018-12-11 14:54:50 +0100 |
| commit | ac862d9b2fd084b50ee7a332a35d8d8d3228ce09 (patch) | |
| tree | a85cc7d12967995da95779fd1c0ff80af0723582 | |
| parent | 7f3c7952d111ac93573fb86f4d5aeff527a07fcc (diff) | |
tools/lib/lockdep: Add dummy print_irqtrace_events() implementation
This patch avoids that linking against liblockdep fails due to no
print_irqtrace_events() definition being available.
Signed-off-by: Bart Van Assche <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Cc: Johannes Berg <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Sasha Levin <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: Waiman Long <[email protected]>
Cc: [email protected]
Cc: [email protected]
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | tools/lib/lockdep/lockdep.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/lib/lockdep/lockdep.c b/tools/lib/lockdep/lockdep.c index 6002fcf2f9bc..348a9d0fb766 100644 --- a/tools/lib/lockdep/lockdep.c +++ b/tools/lib/lockdep/lockdep.c @@ -15,6 +15,11 @@ u32 prandom_u32(void) abort(); } +void print_irqtrace_events(struct task_struct *curr) +{ + abort(); +} + static struct new_utsname *init_utsname(void) { static struct new_utsname n = (struct new_utsname) { |