diff options
| author | Alexandre Chartre <alexandre.chartre@oracle.com> | 2025-11-21 12:53:11 +0300 |
|---|---|---|
| committer | Peter Zijlstra <peterz@infradead.org> | 2025-11-21 17:30:06 +0300 |
| commit | 55d2a473f317ab028d78a5c5ca69473643657c3d (patch) | |
| tree | 53b844ae73bc12bc3dcf6886367d9cb22574277e /tools/objtool/include | |
| parent | 11991999a20145b7f8af21202d0cac6b1f90a6e4 (diff) | |
| download | linux-55d2a473f317ab028d78a5c5ca69473643657c3d.tar.xz | |
objtool: Move disassembly functions to a separated file
objtool disassembles functions which have warnings. Move the code
to do that to a dedicated file. The code is just moved, it is not
changed.
Signed-off-by: Alexandre Chartre <alexandre.chartre@oracle.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Josh Poimboeuf <jpoimboe@kernel.org>
Link: https://patch.msgid.link/20251121095340.464045-2-alexandre.chartre@oracle.com
Diffstat (limited to 'tools/objtool/include')
| -rw-r--r-- | tools/objtool/include/objtool/objtool.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/objtool/include/objtool/objtool.h b/tools/objtool/include/objtool/objtool.h index f7051bbe0bcb..35f926cf9c25 100644 --- a/tools/objtool/include/objtool/objtool.h +++ b/tools/objtool/include/objtool/objtool.h @@ -49,4 +49,6 @@ int check(struct objtool_file *file); int orc_dump(const char *objname); int orc_create(struct objtool_file *file); +void disas_warned_funcs(struct objtool_file *file); + #endif /* _OBJTOOL_H */ |
