* [PATCH] vringh: add MODULE_DESCRIPTION()
@ 2024-05-17 1:57 Jeff Johnson
2024-06-15 21:50 ` Jeff Johnson
2024-06-17 1:52 ` Jason Wang
0 siblings, 2 replies; 4+ messages in thread
From: Jeff Johnson @ 2024-05-17 1:57 UTC (permalink / raw)
To: Michael S. Tsirkin, Jason Wang
Cc: kvm, virtualization, netdev, linux-kernel, kernel-janitors,
Jeff Johnson
Fix the allmodconfig 'make w=1' issue:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/vhost/vringh.o
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
drivers/vhost/vringh.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/vhost/vringh.c b/drivers/vhost/vringh.c
index 7b8fd977f71c..73e153f9b449 100644
--- a/drivers/vhost/vringh.c
+++ b/drivers/vhost/vringh.c
@@ -1614,4 +1614,5 @@ EXPORT_SYMBOL(vringh_need_notify_iotlb);
#endif
+MODULE_DESCRIPTION("host side of a virtio ring");
MODULE_LICENSE("GPL");
---
base-commit: 7f094f0e3866f83ca705519b1e8f5a7d6ecce232
change-id: 20240516-md-vringh-c43803ae0ba4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] vringh: add MODULE_DESCRIPTION()
2024-05-17 1:57 [PATCH] vringh: add MODULE_DESCRIPTION() Jeff Johnson
@ 2024-06-15 21:50 ` Jeff Johnson
2024-06-17 13:27 ` Michael S. Tsirkin
2024-06-17 1:52 ` Jason Wang
1 sibling, 1 reply; 4+ messages in thread
From: Jeff Johnson @ 2024-06-15 21:50 UTC (permalink / raw)
To: Michael S. Tsirkin, Jason Wang, Andrew Morton, Greg KH
Cc: kvm, virtualization, netdev, linux-kernel, kernel-janitors
On 5/16/2024 6:57 PM, Jeff Johnson wrote:
> Fix the allmodconfig 'make w=1' issue:
>
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/vhost/vringh.o
>
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> ---
> drivers/vhost/vringh.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/vhost/vringh.c b/drivers/vhost/vringh.c
> index 7b8fd977f71c..73e153f9b449 100644
> --- a/drivers/vhost/vringh.c
> +++ b/drivers/vhost/vringh.c
> @@ -1614,4 +1614,5 @@ EXPORT_SYMBOL(vringh_need_notify_iotlb);
>
> #endif
>
> +MODULE_DESCRIPTION("host side of a virtio ring");
> MODULE_LICENSE("GPL");
>
> ---
> base-commit: 7f094f0e3866f83ca705519b1e8f5a7d6ecce232
> change-id: 20240516-md-vringh-c43803ae0ba4
>
Just following up to see if anything else is needed to pick this up.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] vringh: add MODULE_DESCRIPTION()
2024-05-17 1:57 [PATCH] vringh: add MODULE_DESCRIPTION() Jeff Johnson
2024-06-15 21:50 ` Jeff Johnson
@ 2024-06-17 1:52 ` Jason Wang
1 sibling, 0 replies; 4+ messages in thread
From: Jason Wang @ 2024-06-17 1:52 UTC (permalink / raw)
To: Jeff Johnson
Cc: Michael S. Tsirkin, kvm, virtualization, netdev, linux-kernel,
kernel-janitors
On Fri, May 17, 2024 at 9:57 AM Jeff Johnson <quic_jjohnson@quicinc.com> wrote:
>
> Fix the allmodconfig 'make w=1' issue:
>
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/vhost/vringh.o
>
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Thanks
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] vringh: add MODULE_DESCRIPTION()
2024-06-15 21:50 ` Jeff Johnson
@ 2024-06-17 13:27 ` Michael S. Tsirkin
0 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2024-06-17 13:27 UTC (permalink / raw)
To: Jeff Johnson
Cc: Jason Wang, Andrew Morton, Greg KH, kvm, virtualization, netdev,
linux-kernel, kernel-janitors
On Sat, Jun 15, 2024 at 02:50:11PM -0700, Jeff Johnson wrote:
> On 5/16/2024 6:57 PM, Jeff Johnson wrote:
> > Fix the allmodconfig 'make w=1' issue:
> >
> > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/vhost/vringh.o
> >
> > Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> > ---
> > drivers/vhost/vringh.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/vhost/vringh.c b/drivers/vhost/vringh.c
> > index 7b8fd977f71c..73e153f9b449 100644
> > --- a/drivers/vhost/vringh.c
> > +++ b/drivers/vhost/vringh.c
> > @@ -1614,4 +1614,5 @@ EXPORT_SYMBOL(vringh_need_notify_iotlb);
> >
> > #endif
> >
> > +MODULE_DESCRIPTION("host side of a virtio ring");
> > MODULE_LICENSE("GPL");
> >
> > ---
> > base-commit: 7f094f0e3866f83ca705519b1e8f5a7d6ecce232
> > change-id: 20240516-md-vringh-c43803ae0ba4
> >
>
> Just following up to see if anything else is needed to pick this up.
I tagged this, will be in the next pull.
Thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-17 13:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-17 1:57 [PATCH] vringh: add MODULE_DESCRIPTION() Jeff Johnson
2024-06-15 21:50 ` Jeff Johnson
2024-06-17 13:27 ` Michael S. Tsirkin
2024-06-17 1:52 ` Jason Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).