Message ID | 20190329174541.79972-1-ndesaulniers@google.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | gcov: include linux/module.h for within_module | expand |
On 3/29/19 10:45 AM, Nick Desaulniers wrote: > Fixes commit 8c3d220cb6b5 ("gcov: clang support") > > Cc: Greg Hackmann <ghackmann@android.com> > Cc: Tri Vo <trong@android.com> > Cc: Peter Oberparleiter <oberpar@linux.ibm.com> > Cc: linux-mm@kvack.org > Cc: kbuild-all@01.org > Reported-by: kbuild test robot <lkp@intel.com> > Link: https://marc.info/?l=linux-mm&m=155384681109231&w=2 > Signed-off-by: Nick Desaulniers <ndesaulniers@google.com> Reported-by: Randy Dunlap <rdunlap@infradead.org> see https://lore.kernel.org/linux-mm/20190328225107.ULwYw%25akpm@linux-foundation.org/T/#mee26c00158574326e807480fc39dfcbd7bebd5fd Did you test this? kernel/gcov/gcc_4_7.c includes local "gcov.h", which includes <linux/module.h>, so why didn't that work or why does this patch work? thanks. > --- > kernel/gcov/gcc_3_4.c | 1 + > kernel/gcov/gcc_4_7.c | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/kernel/gcov/gcc_3_4.c b/kernel/gcov/gcc_3_4.c > index 801ee4b0b969..0eda59ef57df 100644 > --- a/kernel/gcov/gcc_3_4.c > +++ b/kernel/gcov/gcc_3_4.c > @@ -16,6 +16,7 @@ > */ > > #include <linux/errno.h> > +#include <linux/module.h> > #include <linux/slab.h> > #include <linux/string.h> > #include <linux/seq_file.h> > diff --git a/kernel/gcov/gcc_4_7.c b/kernel/gcov/gcc_4_7.c > index ec37563674d6..677851284fe2 100644 > --- a/kernel/gcov/gcc_4_7.c > +++ b/kernel/gcov/gcc_4_7.c > @@ -13,6 +13,7 @@ > */ > > #include <linux/errno.h> > +#include <linux/module.h> > #include <linux/slab.h> > #include <linux/string.h> > #include <linux/seq_file.h> >
On 3/29/19 11:01 AM, Randy Dunlap wrote: > On 3/29/19 10:45 AM, Nick Desaulniers wrote: >> Fixes commit 8c3d220cb6b5 ("gcov: clang support") >> >> Cc: Greg Hackmann <ghackmann@android.com> >> Cc: Tri Vo <trong@android.com> >> Cc: Peter Oberparleiter <oberpar@linux.ibm.com> >> Cc: linux-mm@kvack.org >> Cc: kbuild-all@01.org >> Reported-by: kbuild test robot <lkp@intel.com> >> Link: https://marc.info/?l=linux-mm&m=155384681109231&w=2 >> Signed-off-by: Nick Desaulniers <ndesaulniers@google.com> > > Reported-by: Randy Dunlap <rdunlap@infradead.org> > see https://lore.kernel.org/linux-mm/20190328225107.ULwYw%25akpm@linux-foundation.org/T/#mee26c00158574326e807480fc39dfcbd7bebd5fd > > Did you test this? kernel/gcov/gcc_4_7.c includes local "gcov.h", > which includes <linux/module.h>, so why didn't that work or why > does this patch work? No, this patch does not fix the build error for me. > thanks. > >> --- >> kernel/gcov/gcc_3_4.c | 1 + >> kernel/gcov/gcc_4_7.c | 1 + >> 2 files changed, 2 insertions(+) >> >> diff --git a/kernel/gcov/gcc_3_4.c b/kernel/gcov/gcc_3_4.c >> index 801ee4b0b969..0eda59ef57df 100644 >> --- a/kernel/gcov/gcc_3_4.c >> +++ b/kernel/gcov/gcc_3_4.c >> @@ -16,6 +16,7 @@ >> */ >> >> #include <linux/errno.h> >> +#include <linux/module.h> >> #include <linux/slab.h> >> #include <linux/string.h> >> #include <linux/seq_file.h> >> diff --git a/kernel/gcov/gcc_4_7.c b/kernel/gcov/gcc_4_7.c >> index ec37563674d6..677851284fe2 100644 >> --- a/kernel/gcov/gcc_4_7.c >> +++ b/kernel/gcov/gcc_4_7.c >> @@ -13,6 +13,7 @@ >> */ >> >> #include <linux/errno.h> >> +#include <linux/module.h> >> #include <linux/slab.h> >> #include <linux/string.h> >> #include <linux/seq_file.h> >> > >
On Fri, Mar 29, 2019 at 11:01 AM Randy Dunlap <rdunlap@infradead.org> wrote: > > On 3/29/19 10:45 AM, Nick Desaulniers wrote: > > Fixes commit 8c3d220cb6b5 ("gcov: clang support") > > > > Cc: Greg Hackmann <ghackmann@android.com> > > Cc: Tri Vo <trong@android.com> > > Cc: Peter Oberparleiter <oberpar@linux.ibm.com> > > Cc: linux-mm@kvack.org > > Cc: kbuild-all@01.org > > Reported-by: kbuild test robot <lkp@intel.com> > > Link: https://marc.info/?l=linux-mm&m=155384681109231&w=2 > > Signed-off-by: Nick Desaulniers <ndesaulniers@google.com> > > Reported-by: Randy Dunlap <rdunlap@infradead.org> > see https://lore.kernel.org/linux-mm/20190328225107.ULwYw%25akpm@linux-foundation.org/T/#mee26c00158574326e807480fc39dfcbd7bebd5fd > > Did you test this? Yes, built with gcc 7.3 and defconfig + CONFIG_GCOV_KERNEL=y CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y CONFIG_GCOV_FORMAT_4_7=y > kernel/gcov/gcc_4_7.c includes local "gcov.h", > which includes <linux/module.h>, so why didn't that work or why > does this patch work? Good point. May be something in the configs from 0-day bot. Boarding a plane for Bangkok, but can dig further once landed. Maybe module support was disabled? -- Thanks, ~Nick Desaulniers
On 3/29/19 11:09 AM, Nick Desaulniers wrote: > On Fri, Mar 29, 2019 at 11:01 AM Randy Dunlap <rdunlap@infradead.org> wrote: >> >> On 3/29/19 10:45 AM, Nick Desaulniers wrote: >>> Fixes commit 8c3d220cb6b5 ("gcov: clang support") >>> >>> Cc: Greg Hackmann <ghackmann@android.com> >>> Cc: Tri Vo <trong@android.com> >>> Cc: Peter Oberparleiter <oberpar@linux.ibm.com> >>> Cc: linux-mm@kvack.org >>> Cc: kbuild-all@01.org >>> Reported-by: kbuild test robot <lkp@intel.com> >>> Link: https://marc.info/?l=linux-mm&m=155384681109231&w=2 >>> Signed-off-by: Nick Desaulniers <ndesaulniers@google.com> >> >> Reported-by: Randy Dunlap <rdunlap@infradead.org> >> see https://lore.kernel.org/linux-mm/20190328225107.ULwYw%25akpm@linux-foundation.org/T/#mee26c00158574326e807480fc39dfcbd7bebd5fd >> >> Did you test this? > > Yes, built with gcc 7.3 and > defconfig > + > CONFIG_GCOV_KERNEL=y > CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y > CONFIG_GCOV_FORMAT_4_7=y > >> kernel/gcov/gcc_4_7.c includes local "gcov.h", >> which includes <linux/module.h>, so why didn't that work or why >> does this patch work? > > Good point. May be something in the configs from 0-day bot. Boarding > a plane for Bangkok, but can dig further once landed. > > Maybe module support was disabled? Yes, I reported the problem with CONFIG_MODULES not enabled.
diff --git a/kernel/gcov/gcc_3_4.c b/kernel/gcov/gcc_3_4.c index 801ee4b0b969..0eda59ef57df 100644 --- a/kernel/gcov/gcc_3_4.c +++ b/kernel/gcov/gcc_3_4.c @@ -16,6 +16,7 @@ */ #include <linux/errno.h> +#include <linux/module.h> #include <linux/slab.h> #include <linux/string.h> #include <linux/seq_file.h> diff --git a/kernel/gcov/gcc_4_7.c b/kernel/gcov/gcc_4_7.c index ec37563674d6..677851284fe2 100644 --- a/kernel/gcov/gcc_4_7.c +++ b/kernel/gcov/gcc_4_7.c @@ -13,6 +13,7 @@ */ #include <linux/errno.h> +#include <linux/module.h> #include <linux/slab.h> #include <linux/string.h> #include <linux/seq_file.h>
Fixes commit 8c3d220cb6b5 ("gcov: clang support") Cc: Greg Hackmann <ghackmann@android.com> Cc: Tri Vo <trong@android.com> Cc: Peter Oberparleiter <oberpar@linux.ibm.com> Cc: linux-mm@kvack.org Cc: kbuild-all@01.org Reported-by: kbuild test robot <lkp@intel.com> Link: https://marc.info/?l=linux-mm&m=155384681109231&w=2 Signed-off-by: Nick Desaulniers <ndesaulniers@google.com> --- kernel/gcov/gcc_3_4.c | 1 + kernel/gcov/gcc_4_7.c | 1 + 2 files changed, 2 insertions(+)