OSDN Git Service

objtool: Have WARN_FUNC fall back to sym+off
authorPeter Zijlstra <peterz@infradead.org>
Tue, 8 Mar 2022 15:30:16 +0000 (16:30 +0100)
committerPeter Zijlstra <peterz@infradead.org>
Tue, 15 Mar 2022 09:32:32 +0000 (10:32 +0100)
Currently WARN_FUNC() either prints func+off and failing that prints
sec+off, add an intermediate sym+off. This is useful when playing
around with entry code.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
Link: https://lore.kernel.org/r/20220308154317.461283840@infradead.org
tools/objtool/include/objtool/warn.h

index d99c467..802cfda 100644 (file)
@@ -22,6 +22,8 @@ static inline char *offstr(struct section *sec, unsigned long offset)
        unsigned long name_off;
 
        func = find_func_containing(sec, offset);
+       if (!func)
+               func = find_symbol_containing(sec, offset);
        if (func) {
                name = func->name;
                name_off = offset - func->offset;