[PATCH v2] locking/ww_mutex/test: add MODULE_DESCRIPTION()

Jeff Johnson posted 1 patch 1 year, 6 months ago
kernel/locking/test-ww_mutex.c | 1 +
1 file changed, 1 insertion(+)
[PATCH v2] locking/ww_mutex/test: add MODULE_DESCRIPTION()
Posted by Jeff Johnson 1 year, 6 months ago
Fix the 'make W=1' warning:
WARNING: modpost: missing MODULE_DESCRIPTION() in kernel/locking/test-ww_mutex.o

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
Changes in v2:
- Moved the MODULE_DESCRIPTION() after MODULE_AUTHOR()
- Link to v1: https://lore.kernel.org/r/20240524-md-test-ww_mutex-v1-1-4fb8c106fe21@quicinc.com
---
 kernel/locking/test-ww_mutex.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/locking/test-ww_mutex.c b/kernel/locking/test-ww_mutex.c
index 78719e1ef1b1..10a5736a21c2 100644
--- a/kernel/locking/test-ww_mutex.c
+++ b/kernel/locking/test-ww_mutex.c
@@ -697,3 +697,4 @@ module_exit(test_ww_mutex_exit);
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Intel Corporation");
+MODULE_DESCRIPTION("API test facility for ww_mutexes");

---
base-commit: 07506d1011521a4a0deec1c69721c7405c40049b
change-id: 20240524-md-test-ww_mutex-c18c263bc483
Re: [PATCH v2] locking/ww_mutex/test: add MODULE_DESCRIPTION()
Posted by Boqun Feng 1 year, 6 months ago
On Tue, May 28, 2024 at 01:16:24PM -0700, Jeff Johnson wrote:
> Fix the 'make W=1' warning:
> WARNING: modpost: missing MODULE_DESCRIPTION() in kernel/locking/test-ww_mutex.o
> 
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> ---
> Changes in v2:
> - Moved the MODULE_DESCRIPTION() after MODULE_AUTHOR()

Thanks!

Reviewed-by: Boqun Feng <boqun.feng@gmail.com>

Regards,
Boqun


> - Link to v1: https://lore.kernel.org/r/20240524-md-test-ww_mutex-v1-1-4fb8c106fe21@quicinc.com
> ---
>  kernel/locking/test-ww_mutex.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/kernel/locking/test-ww_mutex.c b/kernel/locking/test-ww_mutex.c
> index 78719e1ef1b1..10a5736a21c2 100644
> --- a/kernel/locking/test-ww_mutex.c
> +++ b/kernel/locking/test-ww_mutex.c
> @@ -697,3 +697,4 @@ module_exit(test_ww_mutex_exit);
>  
>  MODULE_LICENSE("GPL");
>  MODULE_AUTHOR("Intel Corporation");
> +MODULE_DESCRIPTION("API test facility for ww_mutexes");
> 
> ---
> base-commit: 07506d1011521a4a0deec1c69721c7405c40049b
> change-id: 20240524-md-test-ww_mutex-c18c263bc483
>
Re: [PATCH v2] locking/ww_mutex/test: add MODULE_DESCRIPTION()
Posted by Jeff Johnson 1 year, 5 months ago
On 5/28/24 13:56, Boqun Feng wrote:
> On Tue, May 28, 2024 at 01:16:24PM -0700, Jeff Johnson wrote:
>> Fix the 'make W=1' warning:
>> WARNING: modpost: missing MODULE_DESCRIPTION() in kernel/locking/test-ww_mutex.o
>>
>> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
>> ---
>> Changes in v2:
>> - Moved the MODULE_DESCRIPTION() after MODULE_AUTHOR()
> 
> Thanks!
> 
> Reviewed-by: Boqun Feng <boqun.feng@gmail.com>
> 
> Regards,
> Boqun

I don't see this in linux-next yet so following up to see if anything 
else is needed to get this merged.

I'm hoping to have these warnings fixed tree-wide in 6.11.

/jeff