提交 bdab42df 编写于 作者: J James Morse 提交者: Linus Torvalds

kcov: don't trace the code coverage code

Kcov causes the compiler to add a call to __sanitizer_cov_trace_pc() in
every basic block.  Ftrace patches in a call to _mcount() to each
function it has annotated.

Letting these mechanisms annotate each other is a bad thing.  Break the
loop by adding 'notrace' to __sanitizer_cov_trace_pc() so that ftrace
won't try to patch this code.

This patch lets arm64 with KCOV and STACK_TRACER boot.
Signed-off-by: NJames Morse <james.morse@arm.com>
Acked-by: NDmitry Vyukov <dvyukov@google.com>
Cc: Alexander Potapenko <glider@google.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 fd901c95
...@@ -43,7 +43,7 @@ struct kcov { ...@@ -43,7 +43,7 @@ struct kcov {
* Entry point from instrumented code. * Entry point from instrumented code.
* This is called once per basic-block/edge. * This is called once per basic-block/edge.
*/ */
void __sanitizer_cov_trace_pc(void) void notrace __sanitizer_cov_trace_pc(void)
{ {
struct task_struct *t; struct task_struct *t;
enum kcov_mode mode; enum kcov_mode mode;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册