Re: [PATCH v2] gcov: fix when CONFIG_MODULES is not set

2019-04-03 Thread Matthew Wilcox
On Tue, Apr 02, 2019 at 09:54:50AM +0700, Nick Desaulniers wrote:
> Looks like the format is:
> Fixes:  ("")
> so:
> Fixes: 8c3d220cb6b5 ("gcov: clang support")
> 
> We should update:
> https://www.kernel.org/doc/html/v5.0/process/stable-kernel-rules.html
> to include this information.

It's in Documentation/process/submitting-patches.rst already.


Re: [PATCH v2] gcov: fix when CONFIG_MODULES is not set

2019-04-01 Thread Nick Desaulniers
On Sun, Mar 31, 2019 at 6:57 AM Tri Vo  wrote:
>
> On Fri, Mar 29, 2019 at 1:53 PM Randy Dunlap  wrote:
> >
> > On 3/29/19 11:18 AM, Nick Desaulniers wrote:
> > > Fixes commit 8c3d220cb6b5 ("gcov: clang support")
> >
> > There is a certain format for Fixes: and that's not quite it. :(

Looks like the format is:
Fixes:  ("")
so:
Fixes: 8c3d220cb6b5 ("gcov: clang support")

We should update:
https://www.kernel.org/doc/html/v5.0/process/stable-kernel-rules.html
to include this information.

> Thanks for taking a look at this Nick! I believe same fix should be
> applied to kernel/gcov/clang.c. I'll send out an updated version later
> today.

All yours, happy to review.

-- 
Thanks,
~Nick Desaulniers


Re: [PATCH v2] gcov: fix when CONFIG_MODULES is not set

2019-03-30 Thread Tri Vo
On Fri, Mar 29, 2019 at 1:53 PM Randy Dunlap  wrote:
>
> On 3/29/19 11:18 AM, Nick Desaulniers wrote:
> > Fixes commit 8c3d220cb6b5 ("gcov: clang support")
>
> There is a certain format for Fixes: and that's not quite it. :(
>
> > Cc: Greg Hackmann 
> > Cc: Tri Vo 
> > Cc: Peter Oberparleiter 
> > Cc: linux...@kvack.org
> > Cc: kbuild-...@01.org
> > Reported-by: Randy Dunlap 
> > Reported-by: kbuild test robot 
> > Link: https://marc.info/?l=linux-mm=155384681109231=2
> > Signed-off-by: Nick Desaulniers 
>
> Acked-by: Randy Dunlap  # build-tested
>
> Thanks.
>
> > ---
> >  kernel/gcov/gcc_3_4.c | 4 
> >  kernel/gcov/gcc_4_7.c | 4 
> >  2 files changed, 8 insertions(+)

Thanks for taking a look at this Nick! I believe same fix should be
applied to kernel/gcov/clang.c. I'll send out an updated version later
today.


Re: [PATCH v2] gcov: fix when CONFIG_MODULES is not set

2019-03-29 Thread Randy Dunlap
On 3/29/19 11:18 AM, Nick Desaulniers wrote:
> Fixes commit 8c3d220cb6b5 ("gcov: clang support")

There is a certain format for Fixes: and that's not quite it. :(

> Cc: Greg Hackmann 
> Cc: Tri Vo 
> Cc: Peter Oberparleiter 
> Cc: linux...@kvack.org
> Cc: kbuild-...@01.org
> Reported-by: Randy Dunlap 
> Reported-by: kbuild test robot 
> Link: https://marc.info/?l=linux-mm=155384681109231=2
> Signed-off-by: Nick Desaulniers 

Acked-by: Randy Dunlap  # build-tested

Thanks.

> ---
>  kernel/gcov/gcc_3_4.c | 4 
>  kernel/gcov/gcc_4_7.c | 4 
>  2 files changed, 8 insertions(+)
> 
> diff --git a/kernel/gcov/gcc_3_4.c b/kernel/gcov/gcc_3_4.c
> index 801ee4b0b969..8fc30f178351 100644
> --- a/kernel/gcov/gcc_3_4.c
> +++ b/kernel/gcov/gcc_3_4.c
> @@ -146,7 +146,11 @@ void gcov_info_unlink(struct gcov_info *prev, struct 
> gcov_info *info)
>   */
>  bool gcov_info_within_module(struct gcov_info *info, struct module *mod)
>  {
> +#ifdef CONFIG_MODULES
>   return within_module((unsigned long)info, mod);
> +#else
> + return false;
> +#endif
>  }
>  
>  /* Symbolic links to be created for each profiling data file. */
> diff --git a/kernel/gcov/gcc_4_7.c b/kernel/gcov/gcc_4_7.c
> index ec37563674d6..0b6886d4a4dd 100644
> --- a/kernel/gcov/gcc_4_7.c
> +++ b/kernel/gcov/gcc_4_7.c
> @@ -159,7 +159,11 @@ void gcov_info_unlink(struct gcov_info *prev, struct 
> gcov_info *info)
>   */
>  bool gcov_info_within_module(struct gcov_info *info, struct module *mod)
>  {
> +#ifdef CONFIG_MODULES
>   return within_module((unsigned long)info, mod);
> +#else
> + return false;
> +#endif
>  }
>  
>  /* Symbolic links to be created for each profiling data file. */
> 


-- 
~Randy