Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1384045 > unrolled thread

Re: [PATCH] kcov: disable tracing and branch profiling in kcov

Started byDmitry Vyukov <dvyukov@google.com>
First post2016-04-21 12:40 +0200
Last post2016-04-21 14:20 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH] kcov: disable tracing and branch profiling in kcov Dmitry Vyukov <dvyukov@google.com> - 2016-04-21 12:40 +0200
    [PATCH v2] kcov: don't profile branches in kcov Andrey Ryabinin <aryabinin@virtuozzo.com> - 2016-04-21 14:20 +0200

#1384045 — Re: [PATCH] kcov: disable tracing and branch profiling in kcov

FromDmitry Vyukov <dvyukov@google.com>
Date2016-04-21 12:40 +0200
SubjectRe: [PATCH] kcov: disable tracing and branch profiling in kcov
Message-ID<rqkbE-7J8-1@gated-at.bofh.it>
On Thu, Apr 21, 2016 at 12:32 PM, Andrey Ryabinin
<aryabinin@virtuozzo.com> wrote:
> Tracing of __sanitizer_cov_trace_pc() causes unbound recursion and crash,
> because __sanitizer_cov_trace_pc() is also called from tracer code.
> For the same reason we need to disable profiling of 'if' branches.
>
> Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
> ---
>  kernel/kcov.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/kernel/kcov.c b/kernel/kcov.c
> index 3efbee0..7919253 100644
> --- a/kernel/kcov.c
> +++ b/kernel/kcov.c
> @@ -1,5 +1,6 @@
>  #define pr_fmt(fmt) "kcov: " fmt
>
> +#define DISABLE_BRANCH_PROFILING
>  #include <linux/compiler.h>
>  #include <linux/types.h>
>  #include <linux/file.h>
> @@ -43,7 +44,7 @@ struct kcov {
>   * Entry point from instrumented code.
>   * This is called once per basic-block/edge.
>   */
> -void __sanitizer_cov_trace_pc(void)
> +notrace void __sanitizer_cov_trace_pc(void)
>  {
>         struct task_struct *t;
>         enum kcov_mode mode;
> --
> 2.7.3


There was a similar patch "kcov: Don't trace the code coverage code"
recently. But it did not add DISABLE_BRANCH_PROFILING.

[toc] | [next] | [standalone]


#1384139 — [PATCH v2] kcov: don't profile branches in kcov

FromAndrey Ryabinin <aryabinin@virtuozzo.com>
Date2016-04-21 14:20 +0200
Subject[PATCH v2] kcov: don't profile branches in kcov
Message-ID<rqlKp-zM-5@gated-at.bofh.it>
In reply to#1384045
Profiling 'if' statements in __sanitizer_cov_trace_pc() leads to
unbound recursion and crash:
	__sanitizer_cov_trace_pc() ->
		ftrace_likely_update ->
			__sanitizer_cov_trace_pc() ...

Define DISABLE_BRANCH_PROFILING to disable this tracer.

Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com>
---
 kernel/kcov.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/kcov.c b/kernel/kcov.c
index 3efbee0..aee961f 100644
--- a/kernel/kcov.c
+++ b/kernel/kcov.c
@@ -1,5 +1,6 @@
 #define pr_fmt(fmt) "kcov: " fmt
 
+#define DISABLE_BRANCH_PROFILING
 #include <linux/compiler.h>
 #include <linux/types.h>
 #include <linux/file.h>
-- 
2.7.3

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web