* [PATCH v3] smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test
@ 2026-04-10 15:02 Venkat Rao Bagalkote
2026-04-10 15:53 ` ChenXiaoSong
0 siblings, 1 reply; 3+ messages in thread
From: Venkat Rao Bagalkote @ 2026-04-10 15:02 UTC (permalink / raw)
To: sfrench, pc
Cc: skb99, maddy, chenxiaosong, linux-cifs, linux-next, linux-kernel,
Venkat Rao Bagalkote
On the latest linux-next following modpost warning is reported:
WARNING: modpost: missing MODULE_DESCRIPTION() in
fs/smb/client/smb1maperror_test.o
Add MODULE_DESCRIPTION() to the test module to fix the warning.
Signed-off-by: Venkat Rao Bagalkote <venkat88@linux.ibm.com>
---
Changes in v3:
- Update MODULE_DESCRIPTION as suggested in review
fs/smb/client/smb1maperror_test.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/smb/client/smb1maperror_test.c b/fs/smb/client/smb1maperror_test.c
index 820c0dd3bcce..2caaf11228ef 100644
--- a/fs/smb/client/smb1maperror_test.c
+++ b/fs/smb/client/smb1maperror_test.c
@@ -74,3 +74,4 @@ static struct kunit_suite maperror_suite = {
kunit_test_suite(maperror_suite);
MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("KUnit tests of SMB1 maperror");
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3] smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test
2026-04-10 15:02 [PATCH v3] smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test Venkat Rao Bagalkote
@ 2026-04-10 15:53 ` ChenXiaoSong
2026-04-10 16:25 ` Steve French
0 siblings, 1 reply; 3+ messages in thread
From: ChenXiaoSong @ 2026-04-10 15:53 UTC (permalink / raw)
To: Venkat Rao Bagalkote, sfrench, pc
Cc: skb99, maddy, linux-cifs, linux-next, linux-kernel
Looks good to me. Feel free to add:
Reviewed-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
On 4/10/26 23:02, Venkat Rao Bagalkote wrote:
> On the latest linux-next following modpost warning is reported:
>
> WARNING: modpost: missing MODULE_DESCRIPTION() in
> fs/smb/client/smb1maperror_test.o
>
> Add MODULE_DESCRIPTION() to the test module to fix the warning.
>
> Signed-off-by: Venkat Rao Bagalkote <venkat88@linux.ibm.com>
> ---
> Changes in v3:
> - Update MODULE_DESCRIPTION as suggested in review
>
> fs/smb/client/smb1maperror_test.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/fs/smb/client/smb1maperror_test.c b/fs/smb/client/smb1maperror_test.c
> index 820c0dd3bcce..2caaf11228ef 100644
> --- a/fs/smb/client/smb1maperror_test.c
> +++ b/fs/smb/client/smb1maperror_test.c
> @@ -74,3 +74,4 @@ static struct kunit_suite maperror_suite = {
> kunit_test_suite(maperror_suite);
>
> MODULE_LICENSE("GPL");
> +MODULE_DESCRIPTION("KUnit tests of SMB1 maperror");
--
ChenXiaoSong <chenxiaosong@kylinos.cn>
Chinese Homepage: chenxiaosong.com
English Homepage: chenxiaosong.com/en
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test
2026-04-10 15:53 ` ChenXiaoSong
@ 2026-04-10 16:25 ` Steve French
0 siblings, 0 replies; 3+ messages in thread
From: Steve French @ 2026-04-10 16:25 UTC (permalink / raw)
To: ChenXiaoSong
Cc: Venkat Rao Bagalkote, sfrench, pc, skb99, maddy, linux-cifs,
linux-next, linux-kernel
added to cifs-2.6.git for-next
On Fri, Apr 10, 2026 at 10:59 AM ChenXiaoSong
<chenxiaosong@chenxiaosong.com> wrote:
>
> Looks good to me. Feel free to add:
> Reviewed-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
>
> On 4/10/26 23:02, Venkat Rao Bagalkote wrote:
> > On the latest linux-next following modpost warning is reported:
> >
> > WARNING: modpost: missing MODULE_DESCRIPTION() in
> > fs/smb/client/smb1maperror_test.o
> >
> > Add MODULE_DESCRIPTION() to the test module to fix the warning.
> >
> > Signed-off-by: Venkat Rao Bagalkote <venkat88@linux.ibm.com>
> > ---
> > Changes in v3:
> > - Update MODULE_DESCRIPTION as suggested in review
> >
> > fs/smb/client/smb1maperror_test.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/fs/smb/client/smb1maperror_test.c b/fs/smb/client/smb1maperror_test.c
> > index 820c0dd3bcce..2caaf11228ef 100644
> > --- a/fs/smb/client/smb1maperror_test.c
> > +++ b/fs/smb/client/smb1maperror_test.c
> > @@ -74,3 +74,4 @@ static struct kunit_suite maperror_suite = {
> > kunit_test_suite(maperror_suite);
> >
> > MODULE_LICENSE("GPL");
> > +MODULE_DESCRIPTION("KUnit tests of SMB1 maperror");
>
> --
> ChenXiaoSong <chenxiaosong@kylinos.cn>
> Chinese Homepage: chenxiaosong.com
> English Homepage: chenxiaosong.com/en
>
>
--
Thanks,
Steve
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-10 16:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-10 15:02 [PATCH v3] smb: client: add missing MODULE_DESCRIPTION() to smb1maperror_test Venkat Rao Bagalkote
2026-04-10 15:53 ` ChenXiaoSong
2026-04-10 16:25 ` Steve French
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox