diff options
author | Peter Zijlstra <peterz@infradead.org> | 2020-08-07 00:14:09 +0200 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2021-02-23 21:46:56 +0100 |
commit | 99d0021569c71c325f41a7dd0a08a380010ce95c (patch) | |
tree | 95d3a5bbeb4923e1aa67c06f30115882ecc8ed3b /tools/objtool/objtool.h | |
parent | kbuild: prevent CC_FLAGS_LTO self-bloating on recursive rebuilds (diff) | |
download | linux-99d0021569c71c325f41a7dd0a08a380010ce95c.tar.xz linux-99d0021569c71c325f41a7dd0a08a380010ce95c.zip |
objtool: Add a pass for generating __mcount_loc
Add the --mcount option for generating __mcount_loc sections
needed for dynamic ftrace. Using this pass requires the kernel to
be compiled with -mfentry and CC_USING_NOP_MCOUNT to be defined
in Makefile.
Link: https://lore.kernel.org/lkml/20200625200235.GQ4781@hirez.programming.kicks-ass.net/
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
[Sami: rebased, dropped config changes, fixed to actually use --mcount,
and wrote a commit message.]
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to '')
-rw-r--r-- | tools/objtool/objtool.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/objtool/objtool.h b/tools/objtool/objtool.h index 4125d4578b23..cf004dd60c2b 100644 --- a/tools/objtool/objtool.h +++ b/tools/objtool/objtool.h @@ -19,6 +19,7 @@ struct objtool_file { struct list_head insn_list; DECLARE_HASHTABLE(insn_hash, 20); struct list_head static_call_list; + struct list_head mcount_loc_list; bool ignore_unreachables, c_file, hints, rodata; }; |