]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
objtool: Don't print parentheses in function addresses
authorJosh Poimboeuf <jpoimboe@redhat.com>
Mon, 18 Apr 2022 16:50:28 +0000 (09:50 -0700)
committerPeter Zijlstra <peterz@infradead.org>
Fri, 22 Apr 2022 10:32:02 +0000 (12:32 +0200)
The parentheses in the "func()+off" address output are inconsistent with
how the kernel prints function addresses, breaking Peter's scripts.
Remove them.

Suggested-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Miroslav Benes <mbenes@suse.cz>
Link: https://lkml.kernel.org/r/f2bec70312f62ef4f1ea21c134d9def627182ad3.1650300597.git.jpoimboe@redhat.com
tools/objtool/include/objtool/warn.h

index 802cfda0a6f638a37749201424b465077f38af23..c4bde3e2a79c2e069d2fe8656e7595a90e55b30b 100644 (file)
@@ -33,11 +33,7 @@ static inline char *offstr(struct section *sec, unsigned long offset)
        }
 
        str = malloc(strlen(name) + 20);
-
-       if (func)
-               sprintf(str, "%s()+0x%lx", name, name_off);
-       else
-               sprintf(str, "%s+0x%lx", name, name_off);
+       sprintf(str, "%s+0x%lx", name, name_off);
 
        return str;
 }