Commit c569cac8b69397d8bc80f95bc6edf13ed902e28b
1 parent
29507663df
Exists in
master
and in
7 other branches
arch/tile: support new info op generated by compiler
This just syncs the backtracing support in the kernel to the upstream backtrace library. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Showing 2 changed files with 8 additions and 1 deletions Side-by-side Diff
arch/tile/include/asm/backtrace.h
arch/tile/kernel/backtrace.c
... | ... | @@ -369,6 +369,10 @@ |
369 | 369 | /* Weird; reserved value, ignore it. */ |
370 | 370 | continue; |
371 | 371 | } |
372 | + if (info_operand & ENTRY_POINT_INFO_OP) { | |
373 | + /* This info op is ignored by the backtracer. */ | |
374 | + continue; | |
375 | + } | |
372 | 376 | |
373 | 377 | /* Skip info ops which are not in the |
374 | 378 | * "one_ago" mode we want right now. |