* [PATCH v2] script: modpost: emit a warning when the description is missing
@ 2023-03-09 12:01 Vincenzo Palazzo
2023-06-06 10:58 ` Masahiro Yamada
0 siblings, 1 reply; 5+ messages in thread
From: Vincenzo Palazzo @ 2023-03-09 12:01 UTC (permalink / raw)
To: linux-kbuild; +Cc: masahiroy, Vincenzo Palazzo, Roland Kletzing
Emit a warning when the mod description is missed and only
when the W=1 is enabled.
Reported-by: Roland Kletzing <devzero@web.de>
Link: https://bugzilla.kernel.org/show_bug.cgi?id=10770
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
---
scripts/mod/modpost.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index efff8078e395..433518dfc472 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -1824,6 +1824,10 @@ static void read_symbols(const char *modname)
}
}
+#ifdef WARN
+ if (!get_modinfo(&info, "description"))
+ warn("missing MODULE_DESCRIPTION() in %s\n", modname);
+#endif
for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
symname = remove_dot(info.strtab + sym->st_name);
--
2.39.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] script: modpost: emit a warning when the description is missing
2023-03-09 12:01 [PATCH v2] script: modpost: emit a warning when the description is missing Vincenzo Palazzo
@ 2023-06-06 10:58 ` Masahiro Yamada
2023-06-07 20:06 ` Vincenzo Palazzo
2023-06-15 23:28 ` Vincenzo Palazzo
0 siblings, 2 replies; 5+ messages in thread
From: Masahiro Yamada @ 2023-06-06 10:58 UTC (permalink / raw)
To: Vincenzo Palazzo; +Cc: linux-kbuild, Roland Kletzing
On Thu, Mar 9, 2023 at 9:01 PM Vincenzo Palazzo
<vincenzopalazzodev@gmail.com> wrote:
>
> Emit a warning when the mod description is missed and only
> when the W=1 is enabled.
>
> Reported-by: Roland Kletzing <devzero@web.de>
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=10770
> Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
> ---
> scripts/mod/modpost.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
> index efff8078e395..433518dfc472 100644
> --- a/scripts/mod/modpost.c
> +++ b/scripts/mod/modpost.c
> @@ -1824,6 +1824,10 @@ static void read_symbols(const char *modname)
> }
> }
>
> +#ifdef WARN
> + if (!get_modinfo(&info, "description"))
> + warn("missing MODULE_DESCRIPTION() in %s\n", modname);
> +#endif
> for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
> symname = remove_dot(info.strtab + sym->st_name);
Sorry for the delay.
Users need to do "make HOSTCFLAGS=-DWARN" to make it work,
but nobody would do it.
I did a ground work:
https://patchwork.kernel.org/project/linux-kbuild/patch/20230606094159.1910369-1-masahiroy@kernel.org/
Then, you can do like this:
if (extra_warn && !get_modinfo(&info, "description"))
warn("missing MODULE_DESCRIPTION() in %s\n", modname);
> --
> 2.39.2
>
--
Best Regards
Masahiro Yamada
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] script: modpost: emit a warning when the description is missing
2023-06-06 10:58 ` Masahiro Yamada
@ 2023-06-07 20:06 ` Vincenzo Palazzo
2023-06-08 0:42 ` Masahiro Yamada
2023-06-15 23:28 ` Vincenzo Palazzo
1 sibling, 1 reply; 5+ messages in thread
From: Vincenzo Palazzo @ 2023-06-07 20:06 UTC (permalink / raw)
To: Masahiro Yamada; +Cc: linux-kbuild, Roland Kletzing
> On Thu, Mar 9, 2023 at 9:01 PM Vincenzo Palazzo
> <vincenzopalazzodev@gmail.com> wrote:
> >
> > Emit a warning when the mod description is missed and only
> > when the W=1 is enabled.
> >
> > Reported-by: Roland Kletzing <devzero@web.de>
> > Link: https://bugzilla.kernel.org/show_bug.cgi?id=10770
> > Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
> > ---
> > scripts/mod/modpost.c | 4 ++++
> > 1 file changed, 4 insertions(+)
> >
> > diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
> > index efff8078e395..433518dfc472 100644
> > --- a/scripts/mod/modpost.c
> > +++ b/scripts/mod/modpost.c
> > @@ -1824,6 +1824,10 @@ static void read_symbols(const char *modname)
> > }
> > }
> >
> > +#ifdef WARN
> > + if (!get_modinfo(&info, "description"))
> > + warn("missing MODULE_DESCRIPTION() in %s\n", modname);
> > +#endif
> > for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
> > symname = remove_dot(info.strtab + sym->st_name);
>
>
> Sorry for the delay.
>
> Users need to do "make HOSTCFLAGS=-DWARN" to make it work,
> but nobody would do it.
>
>
> I did a ground work:
> https://patchwork.kernel.org/project/linux-kbuild/patch/20230606094159.1910369-1-masahiroy@kernel.org/
>
Uh, thanks for doing this!
>
>
> Then, you can do like this:
>
> if (extra_warn && !get_modinfo(&info, "description"))
> warn("missing MODULE_DESCRIPTION() in %s\n", modname);
>
Do you preferer that I rebase on top of your patch? or just waiting that
your patch will be in next?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] script: modpost: emit a warning when the description is missing
2023-06-07 20:06 ` Vincenzo Palazzo
@ 2023-06-08 0:42 ` Masahiro Yamada
0 siblings, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2023-06-08 0:42 UTC (permalink / raw)
To: Vincenzo Palazzo; +Cc: linux-kbuild, Roland Kletzing
On Thu, Jun 8, 2023 at 5:06 AM Vincenzo Palazzo
<vincenzopalazzodev@gmail.com> wrote:
>
> > On Thu, Mar 9, 2023 at 9:01 PM Vincenzo Palazzo
> > <vincenzopalazzodev@gmail.com> wrote:
> > >
> > > Emit a warning when the mod description is missed and only
> > > when the W=1 is enabled.
> > >
> > > Reported-by: Roland Kletzing <devzero@web.de>
> > > Link: https://bugzilla.kernel.org/show_bug.cgi?id=10770
> > > Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
> > > ---
> > > scripts/mod/modpost.c | 4 ++++
> > > 1 file changed, 4 insertions(+)
> > >
> > > diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
> > > index efff8078e395..433518dfc472 100644
> > > --- a/scripts/mod/modpost.c
> > > +++ b/scripts/mod/modpost.c
> > > @@ -1824,6 +1824,10 @@ static void read_symbols(const char *modname)
> > > }
> > > }
> > >
> > > +#ifdef WARN
> > > + if (!get_modinfo(&info, "description"))
> > > + warn("missing MODULE_DESCRIPTION() in %s\n", modname);
> > > +#endif
> > > for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
> > > symname = remove_dot(info.strtab + sym->st_name);
> >
> >
> > Sorry for the delay.
> >
> > Users need to do "make HOSTCFLAGS=-DWARN" to make it work,
> > but nobody would do it.
> >
> >
> > I did a ground work:
> > https://patchwork.kernel.org/project/linux-kbuild/patch/20230606094159.1910369-1-masahiroy@kernel.org/
> >
>
> Uh, thanks for doing this!
>
> >
> >
> > Then, you can do like this:
> >
> > if (extra_warn && !get_modinfo(&info, "description"))
> > warn("missing MODULE_DESCRIPTION() in %s\n", modname);
> >
>
> Do you preferer that I rebase on top of your patch? or just waiting that
> your patch will be in next?
Whichever. Your patch changes a different hunk,
so no merge conflict would happen anyway.
--
Best Regards
Masahiro Yamada
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] script: modpost: emit a warning when the description is missing
2023-06-06 10:58 ` Masahiro Yamada
2023-06-07 20:06 ` Vincenzo Palazzo
@ 2023-06-15 23:28 ` Vincenzo Palazzo
1 sibling, 0 replies; 5+ messages in thread
From: Vincenzo Palazzo @ 2023-06-15 23:28 UTC (permalink / raw)
To: Masahiro Yamada; +Cc: linux-kbuild, Roland Kletzing
> On Thu, Mar 9, 2023 at 9:01 PM Vincenzo Palazzo
> <vincenzopalazzodev@gmail.com> wrote:
> >
> > Emit a warning when the mod description is missed and only
> > when the W=1 is enabled.
> >
> > Reported-by: Roland Kletzing <devzero@web.de>
> > Link: https://bugzilla.kernel.org/show_bug.cgi?id=10770
> > Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
> > ---
> > scripts/mod/modpost.c | 4 ++++
> > 1 file changed, 4 insertions(+)
> >
> > diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
> > index efff8078e395..433518dfc472 100644
> > --- a/scripts/mod/modpost.c
> > +++ b/scripts/mod/modpost.c
> > @@ -1824,6 +1824,10 @@ static void read_symbols(const char *modname)
> > }
> > }
> >
> > +#ifdef WARN
> > + if (!get_modinfo(&info, "description"))
> > + warn("missing MODULE_DESCRIPTION() in %s\n", modname);
> > +#endif
> > for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
> > symname = remove_dot(info.strtab + sym->st_name);
>
>
> Sorry for the delay.
>
> Users need to do "make HOSTCFLAGS=-DWARN" to make it work,
> but nobody would do it.
Ok coming on this with some more time while my machine is building,
my code should work with the `make W=1` (but the kernel do not work with
the warnings enables)
I do not know if you was meaning another thing.
> I did a ground work:
> https://patchwork.kernel.org/project/linux-kbuild/patch/20230606094159.1910369-1-masahiroy@kernel.org/
>
>
>
> Then, you can do like this:
>
> if (extra_warn && !get_modinfo(&info, "description"))
> warn("missing MODULE_DESCRIPTION() in %s\n", modname);
>
Preparing the version 3.
Vincent.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-06-15 23:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-09 12:01 [PATCH v2] script: modpost: emit a warning when the description is missing Vincenzo Palazzo
2023-06-06 10:58 ` Masahiro Yamada
2023-06-07 20:06 ` Vincenzo Palazzo
2023-06-08 0:42 ` Masahiro Yamada
2023-06-15 23:28 ` Vincenzo Palazzo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox