From: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
To: Lorenzo Stoakes <lstoakes@gmail.com>, akpm@linux-foundation.org
Cc: a.ryabinin@samsung.com, coolypf@qq.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] gcov: add support for GCC 5.1
Date: Mon, 01 Jun 2015 13:11:29 +0200 [thread overview]
Message-ID: <556C3DE1.2010004@linux.vnet.ibm.com> (raw)
In-Reply-To: <1432940676-16074-1-git-send-email-lstoakes@gmail.com>
On 30.05.2015 01:04, Lorenzo Stoakes wrote:
> This patch fixes kernel gcov support for GCC 5.1. Similar to commit
> a992bf836f9c3039a16f4bd068d161c86c6c3e2c this patch takes into account
> the existence of a new gcov counter (see gcc's gcc/gcov-counter.def.)
>
> Firstly, it increments GCOV_COUNTERS (to 10), which makes the data
> structure struct gcov_info compatible with GCC 5.1.
>
> Secondly, a corresponding counter function __gcov_merge_icall_topn (Top
> N value tracking for indirect calls) is included in base.c with the
> other gcov counters unused for kernel profiling.
Looks sane and tests finished successfully on s390 with GCC 5.1.0 and
GCC 4.9.2.
Tested-by: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
Reviewed-by: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
> Signed-off-by: Lorenzo Stoakes <lstoakes@gmail.com>
> ---
> kernel/gcov/base.c | 6 ++++++
> kernel/gcov/gcc_4_7.c | 4 +++-
> 2 files changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/kernel/gcov/base.c b/kernel/gcov/base.c
> index a744098..7080ae1 100644
> --- a/kernel/gcov/base.c
> +++ b/kernel/gcov/base.c
> @@ -92,6 +92,12 @@ void __gcov_merge_time_profile(gcov_type *counters, unsigned int n_counters)
> }
> EXPORT_SYMBOL(__gcov_merge_time_profile);
>
> +void __gcov_merge_icall_topn(gcov_type *counters, unsigned int n_counters)
> +{
> + /* Unused. */
> +}
> +EXPORT_SYMBOL(__gcov_merge_icall_topn);
> +
> /**
> * gcov_enable_events - enable event reporting through gcov_event()
> *
> diff --git a/kernel/gcov/gcc_4_7.c b/kernel/gcov/gcc_4_7.c
> index 826ba9f..e25e92f 100644
> --- a/kernel/gcov/gcc_4_7.c
> +++ b/kernel/gcov/gcc_4_7.c
> @@ -18,7 +18,9 @@
> #include <linux/vmalloc.h>
> #include "gcov.h"
>
> -#if __GNUC__ == 4 && __GNUC_MINOR__ >= 9
> +#if __GNUC__ == 5 && __GNUC_MINOR__ >= 1
> +#define GCOV_COUNTERS 10
> +#elif __GNUC__ == 4 && __GNUC_MINOR__ >= 9
> #define GCOV_COUNTERS 9
> #else
> #define GCOV_COUNTERS 8
> --
> 2.4.2
>
--
Peter Oberparleiter
Linux on z Systems Development - IBM Germany
prev parent reply other threads:[~2015-06-01 11:11 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-29 23:04 [PATCH] gcov: add support for GCC 5.1 Lorenzo Stoakes
2015-06-01 11:11 ` Peter Oberparleiter [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=556C3DE1.2010004@linux.vnet.ibm.com \
--to=oberpar@linux.vnet.ibm.com \
--cc=a.ryabinin@samsung.com \
--cc=akpm@linux-foundation.org \
--cc=coolypf@qq.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lstoakes@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.