From: Jeff Layton <jlayton@kernel.org>
To: Breno Leitao <leitao@debian.org>,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com,
Trond Myklebust <trond.myklebust@hammerspace.com>,
Anna Schumaker <anna@kernel.org>,
Chuck Lever <chuck.lever@oracle.com>, Neil Brown <neilb@suse.de>,
Olga Kornievskaia <kolga@netapp.com>,
Dai Ngo <Dai.Ngo@oracle.com>, Tom Talpey <tom@talpey.com>
Cc: netdev@vger.kernel.org, Simo Sorce <simo@redhat.com>,
"open list:KERNEL NFSD, SUNRPC,
AND LOCKD SERVERS" <linux-nfs@vger.kernel.org>,
open list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH net-next 05/10] net: fill in MODULE_DESCRIPTION()s for Sun RPC
Date: Mon, 08 Jan 2024 16:49:34 -0500 [thread overview]
Message-ID: <615642ef8e8fb8daf62e65aad51259ba3445fa77.camel@kernel.org> (raw)
In-Reply-To: <20240108181610.2697017-6-leitao@debian.org>
On Mon, 2024-01-08 at 10:16 -0800, Breno Leitao wrote:
> W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> Add descriptions to Sun RPC modules.
>
> Signed-off-by: Breno Leitao <leitao@debian.org>
> ---
> net/sunrpc/auth_gss/auth_gss.c | 1 +
> net/sunrpc/auth_gss/gss_krb5_mech.c | 1 +
> net/sunrpc/sunrpc_syms.c | 1 +
> 3 files changed, 3 insertions(+)
>
> diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c
> index 1af71fbb0d80..c7af0220f82f 100644
> --- a/net/sunrpc/auth_gss/auth_gss.c
> +++ b/net/sunrpc/auth_gss/auth_gss.c
> @@ -2280,6 +2280,7 @@ static void __exit exit_rpcsec_gss(void)
> }
>
> MODULE_ALIAS("rpc-auth-6");
> +MODULE_DESCRIPTION("Sun RPC Kerberos RPCSEC_GSS client authentication");
> MODULE_LICENSE("GPL");
> module_param_named(expired_cred_retry_delay,
> gss_expired_cred_retry_delay,
> diff --git a/net/sunrpc/auth_gss/gss_krb5_mech.c b/net/sunrpc/auth_gss/gss_krb5_mech.c
> index e31cfdf7eadc..64cff717c3d9 100644
> --- a/net/sunrpc/auth_gss/gss_krb5_mech.c
> +++ b/net/sunrpc/auth_gss/gss_krb5_mech.c
> @@ -650,6 +650,7 @@ static void __exit cleanup_kerberos_module(void)
> gss_mech_unregister(&gss_kerberos_mech);
> }
>
> +MODULE_DESCRIPTION("Sun RPC Kerberos 5 module");
> MODULE_LICENSE("GPL");
> module_init(init_kerberos_module);
> module_exit(cleanup_kerberos_module);
> diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c
> index 691c0000e9ea..bab6cab29405 100644
> --- a/net/sunrpc/sunrpc_syms.c
> +++ b/net/sunrpc/sunrpc_syms.c
> @@ -148,6 +148,7 @@ cleanup_sunrpc(void)
> #endif
> rcu_barrier(); /* Wait for completion of call_rcu()'s */
> }
> +MODULE_DESCRIPTION("Sun RPC core");
> MODULE_LICENSE("GPL");
> fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */
> module_exit(cleanup_sunrpc);
Looks reasonable to me.
Reviewed-by: Jeff Layton <jlayton@kernel.org>
next prev parent reply other threads:[~2024-01-08 21:49 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20240108181610.2697017-1-leitao@debian.org>
2024-01-08 18:16 ` [PATCH net-next 01/10] net: fill in MODULE_DESCRIPTION()s for 8390 Breno Leitao
2024-01-09 11:25 ` Geert Uytterhoeven
2024-01-09 14:29 ` Breno Leitao
2024-01-08 18:16 ` [PATCH net-next 02/10] net: fill in MODULE_DESCRIPTION()s for SLIP Breno Leitao
2024-01-08 18:16 ` [PATCH net-next 03/10] net: fill in MODULE_DESCRIPTION()s for HSR Breno Leitao
2024-01-08 18:16 ` [PATCH net-next 04/10] net: fill in MODULE_DESCRIPTION()s for NFC Breno Leitao
2024-01-08 18:57 ` Krzysztof Kozlowski
2024-01-08 18:16 ` [PATCH net-next 05/10] net: fill in MODULE_DESCRIPTION()s for Sun RPC Breno Leitao
2024-01-08 21:49 ` Jeff Layton [this message]
2024-01-08 18:16 ` [PATCH net-next 06/10] net: fill in MODULE_DESCRIPTION()s for ieee802154 Breno Leitao
2024-01-09 7:25 ` Stefan Schmidt
2024-01-09 14:29 ` Breno Leitao
2024-01-24 16:48 ` Miquel Raynal
2024-01-25 10:00 ` Breno Leitao
2024-01-08 18:16 ` [PATCH net-next 07/10] net: fill in MODULE_DESCRIPTION()s for 6LoWPAN Breno Leitao
2024-01-10 1:04 ` Alexander Aring
2024-01-10 1:05 ` Alexander Aring
2024-01-10 9:19 ` Breno Leitao
2024-01-08 18:16 ` [PATCH net-next 08/10] net: fill in MODULE_DESCRIPTION()s for ds26522 module Breno Leitao
2024-01-08 18:16 ` [PATCH net-next 09/10] net: fill in MODULE_DESCRIPTION()s for s2io Breno Leitao
2024-01-08 18:16 ` [PATCH net-next 10/10] net: fill in MODULE_DESCRIPTION()s for PCS Layer Breno Leitao
2024-01-08 19:21 ` Andrew Lunn
2024-01-10 11:48 ` Breno Leitao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=615642ef8e8fb8daf62e65aad51259ba3445fa77.camel@kernel.org \
--to=jlayton@kernel.org \
--cc=Dai.Ngo@oracle.com \
--cc=anna@kernel.org \
--cc=chuck.lever@oracle.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kolga@netapp.com \
--cc=kuba@kernel.org \
--cc=leitao@debian.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=neilb@suse.de \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=simo@redhat.com \
--cc=tom@talpey.com \
--cc=trond.myklebust@hammerspace.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox