* [PATCH net 01/10] net: fill in MODULE_DESCRIPTION()s for xfrm
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-05 10:13 ` [PATCH net 02/10] net: fill in MODULE_DESCRIPTION()s for mpoa Breno Leitao
` (8 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet, Steffen Klassert, Herbert Xu
Cc: netdev, linux-kernel, horms, andrew
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the XFRM interface drivers.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
net/xfrm/xfrm_algo.c | 1 +
net/xfrm/xfrm_user.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/net/xfrm/xfrm_algo.c b/net/xfrm/xfrm_algo.c
index 41533c631431..e6da7e8495c9 100644
--- a/net/xfrm/xfrm_algo.c
+++ b/net/xfrm/xfrm_algo.c
@@ -858,4 +858,5 @@ int xfrm_count_pfkey_enc_supported(void)
}
EXPORT_SYMBOL_GPL(xfrm_count_pfkey_enc_supported);
+MODULE_DESCRIPTION("XFRM Algorithm interface");
MODULE_LICENSE("GPL");
diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c
index ad01997c3aa9..f037be190bae 100644
--- a/net/xfrm/xfrm_user.c
+++ b/net/xfrm/xfrm_user.c
@@ -3888,5 +3888,6 @@ static void __exit xfrm_user_exit(void)
module_init(xfrm_user_init);
module_exit(xfrm_user_exit);
+MODULE_DESCRIPTION("XFRM User interface");
MODULE_LICENSE("GPL");
MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH net 02/10] net: fill in MODULE_DESCRIPTION()s for mpoa
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
2024-02-05 10:13 ` [PATCH net 01/10] net: fill in MODULE_DESCRIPTION()s for xfrm Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-05 10:13 ` [PATCH net 03/10] net: fill in MODULE_DESCRIPTION()s for af_key Breno Leitao
` (7 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet; +Cc: netdev, linux-kernel, horms, andrew
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the Multi-Protocol Over ATM (MPOA) driver.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
net/atm/mpc.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/atm/mpc.c b/net/atm/mpc.c
index 033871e718a3..324e3ab96bb3 100644
--- a/net/atm/mpc.c
+++ b/net/atm/mpc.c
@@ -1532,4 +1532,5 @@ static void __exit atm_mpoa_cleanup(void)
module_init(atm_mpoa_init);
module_exit(atm_mpoa_cleanup);
+MODULE_DESCRIPTION("Multi-Protocol Over ATM (MPOA) driver");
MODULE_LICENSE("GPL");
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH net 03/10] net: fill in MODULE_DESCRIPTION()s for af_key
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
2024-02-05 10:13 ` [PATCH net 01/10] net: fill in MODULE_DESCRIPTION()s for xfrm Breno Leitao
2024-02-05 10:13 ` [PATCH net 02/10] net: fill in MODULE_DESCRIPTION()s for mpoa Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-05 10:13 ` [PATCH net 04/10] net: fill in MODULE_DESCRIPTION()s for 6LoWPAN Breno Leitao
` (6 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet, Steffen Klassert, Herbert Xu
Cc: netdev, linux-kernel, horms, andrew
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the PF_KEY socket helpers.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
net/key/af_key.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/key/af_key.c b/net/key/af_key.c
index d68d01804dc7..f79fb99271ed 100644
--- a/net/key/af_key.c
+++ b/net/key/af_key.c
@@ -3924,5 +3924,6 @@ static int __init ipsec_pfkey_init(void)
module_init(ipsec_pfkey_init);
module_exit(ipsec_pfkey_exit);
+MODULE_DESCRIPTION("PF_KEY socket helpers");
MODULE_LICENSE("GPL");
MODULE_ALIAS_NETPROTO(PF_KEY);
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH net 04/10] net: fill in MODULE_DESCRIPTION()s for 6LoWPAN
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
` (2 preceding siblings ...)
2024-02-05 10:13 ` [PATCH net 03/10] net: fill in MODULE_DESCRIPTION()s for af_key Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-28 15:44 ` patchwork-bot+bluetooth
2024-02-05 10:13 ` [PATCH net 05/10] net: fill in MODULE_DESCRIPTION()s for ipv6 modules Breno Leitao
` (5 subsequent siblings)
9 siblings, 1 reply; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet, Alexander Aring
Cc: netdev, linux-kernel, horms, andrew,
open list:6LOWPAN GENERIC (BTLE/IEEE 802.15.4),
open list:6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to IPv6 over Low power Wireless Personal Area Network.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
net/6lowpan/core.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/6lowpan/core.c b/net/6lowpan/core.c
index 7b3341cef926..850d4a185f55 100644
--- a/net/6lowpan/core.c
+++ b/net/6lowpan/core.c
@@ -179,4 +179,5 @@ static void __exit lowpan_module_exit(void)
module_init(lowpan_module_init);
module_exit(lowpan_module_exit);
+MODULE_DESCRIPTION("IPv6 over Low-Power Wireless Personal Area Network core module");
MODULE_LICENSE("GPL");
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH net 04/10] net: fill in MODULE_DESCRIPTION()s for 6LoWPAN
2024-02-05 10:13 ` [PATCH net 04/10] net: fill in MODULE_DESCRIPTION()s for 6LoWPAN Breno Leitao
@ 2024-02-28 15:44 ` patchwork-bot+bluetooth
0 siblings, 0 replies; 14+ messages in thread
From: patchwork-bot+bluetooth @ 2024-02-28 15:44 UTC (permalink / raw)
To: Breno Leitao
Cc: kuba, davem, pabeni, edumazet, alex.aring, netdev, linux-kernel,
horms, andrew, linux-bluetooth, linux-wpan
Hello:
This patch was applied to bluetooth/bluetooth-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 5 Feb 2024 02:13:53 -0800 you wrote:
> W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> Add descriptions to IPv6 over Low power Wireless Personal Area Network.
>
> Signed-off-by: Breno Leitao <leitao@debian.org>
> ---
> net/6lowpan/core.c | 1 +
> 1 file changed, 1 insertion(+)
Here is the summary with links:
- [net,04/10] net: fill in MODULE_DESCRIPTION()s for 6LoWPAN
https://git.kernel.org/bluetooth/bluetooth-next/c/2898f3075e6a
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH net 05/10] net: fill in MODULE_DESCRIPTION()s for ipv6 modules
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
` (3 preceding siblings ...)
2024-02-05 10:13 ` [PATCH net 04/10] net: fill in MODULE_DESCRIPTION()s for 6LoWPAN Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-05 10:13 ` [PATCH net 06/10] net: fill in MODULE_DESCRIPTION()s for ipv4 modules Breno Leitao
` (4 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet, Steffen Klassert, Herbert Xu,
David Ahern
Cc: netdev, linux-kernel, horms, andrew
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the IPv6 modules.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
net/ipv6/ah6.c | 1 +
net/ipv6/esp6.c | 1 +
net/ipv6/ip6_udp_tunnel.c | 1 +
net/ipv6/mip6.c | 1 +
net/ipv6/sit.c | 1 +
net/ipv6/tunnel6.c | 1 +
net/ipv6/xfrm6_tunnel.c | 1 +
7 files changed, 7 insertions(+)
diff --git a/net/ipv6/ah6.c b/net/ipv6/ah6.c
index 2016e90e6e1d..eb474f0987ae 100644
--- a/net/ipv6/ah6.c
+++ b/net/ipv6/ah6.c
@@ -800,5 +800,6 @@ static void __exit ah6_fini(void)
module_init(ah6_init);
module_exit(ah6_fini);
+MODULE_DESCRIPTION("IPv6 AH transformation helpers");
MODULE_LICENSE("GPL");
MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_AH);
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c
index 2cc1a45742d8..6e6efe026cdc 100644
--- a/net/ipv6/esp6.c
+++ b/net/ipv6/esp6.c
@@ -1301,5 +1301,6 @@ static void __exit esp6_fini(void)
module_init(esp6_init);
module_exit(esp6_fini);
+MODULE_DESCRIPTION("IPv6 ESP transformation helpers");
MODULE_LICENSE("GPL");
MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_ESP);
diff --git a/net/ipv6/ip6_udp_tunnel.c b/net/ipv6/ip6_udp_tunnel.c
index a7bf0327b380..8820bf5b101a 100644
--- a/net/ipv6/ip6_udp_tunnel.c
+++ b/net/ipv6/ip6_udp_tunnel.c
@@ -182,4 +182,5 @@ struct dst_entry *udp_tunnel6_dst_lookup(struct sk_buff *skb,
}
EXPORT_SYMBOL_GPL(udp_tunnel6_dst_lookup);
+MODULE_DESCRIPTION("IPv6 UDP tunnel driver");
MODULE_LICENSE("GPL");
diff --git a/net/ipv6/mip6.c b/net/ipv6/mip6.c
index 83d2a8be263f..6a16a5bd0d91 100644
--- a/net/ipv6/mip6.c
+++ b/net/ipv6/mip6.c
@@ -405,6 +405,7 @@ static void __exit mip6_fini(void)
module_init(mip6_init);
module_exit(mip6_fini);
+MODULE_DESCRIPTION("IPv6 Mobility driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_DSTOPTS);
MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_ROUTING);
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
index cc24cefdb85c..5e9f625b76e3 100644
--- a/net/ipv6/sit.c
+++ b/net/ipv6/sit.c
@@ -1956,6 +1956,7 @@ static int __init sit_init(void)
module_init(sit_init);
module_exit(sit_cleanup);
+MODULE_DESCRIPTION("IPv6-in-IPv4 tunnel SIT driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS_RTNL_LINK("sit");
MODULE_ALIAS_NETDEV("sit0");
diff --git a/net/ipv6/tunnel6.c b/net/ipv6/tunnel6.c
index 00e8d8b1c9a7..dc4ea9b11794 100644
--- a/net/ipv6/tunnel6.c
+++ b/net/ipv6/tunnel6.c
@@ -302,4 +302,5 @@ static void __exit tunnel6_fini(void)
module_init(tunnel6_init);
module_exit(tunnel6_fini);
+MODULE_DESCRIPTION("IP-in-IPv6 tunnel driver");
MODULE_LICENSE("GPL");
diff --git a/net/ipv6/xfrm6_tunnel.c b/net/ipv6/xfrm6_tunnel.c
index 1323f2f6928e..f6cb94f82cc3 100644
--- a/net/ipv6/xfrm6_tunnel.c
+++ b/net/ipv6/xfrm6_tunnel.c
@@ -401,5 +401,6 @@ static void __exit xfrm6_tunnel_fini(void)
module_init(xfrm6_tunnel_init);
module_exit(xfrm6_tunnel_fini);
+MODULE_DESCRIPTION("IPv6 XFRM tunnel driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_IPV6);
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH net 06/10] net: fill in MODULE_DESCRIPTION()s for ipv4 modules
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
` (4 preceding siblings ...)
2024-02-05 10:13 ` [PATCH net 05/10] net: fill in MODULE_DESCRIPTION()s for ipv6 modules Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-05 10:13 ` [PATCH net 07/10] net: fill in MODULE_DESCRIPTION()s for net/sched Breno Leitao
` (3 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet, Steffen Klassert, Herbert Xu,
David Ahern
Cc: netdev, linux-kernel, horms, andrew
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the IPv4 modules.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
net/ipv4/ah4.c | 1 +
net/ipv4/esp4.c | 1 +
net/ipv4/ip_gre.c | 1 +
net/ipv4/ip_tunnel.c | 1 +
net/ipv4/ip_vti.c | 1 +
net/ipv4/ipip.c | 1 +
net/ipv4/tunnel4.c | 1 +
net/ipv4/udp_tunnel_core.c | 1 +
net/ipv4/xfrm4_tunnel.c | 1 +
9 files changed, 9 insertions(+)
diff --git a/net/ipv4/ah4.c b/net/ipv4/ah4.c
index a2e6e1fdf82b..64aec3dff8ec 100644
--- a/net/ipv4/ah4.c
+++ b/net/ipv4/ah4.c
@@ -597,5 +597,6 @@ static void __exit ah4_fini(void)
module_init(ah4_init);
module_exit(ah4_fini);
+MODULE_DESCRIPTION("IPv4 AH transformation library");
MODULE_LICENSE("GPL");
MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_AH);
diff --git a/net/ipv4/esp4.c b/net/ipv4/esp4.c
index 4ccfc104f13a..4dd9e5040672 100644
--- a/net/ipv4/esp4.c
+++ b/net/ipv4/esp4.c
@@ -1247,5 +1247,6 @@ static void __exit esp4_fini(void)
module_init(esp4_init);
module_exit(esp4_fini);
+MODULE_DESCRIPTION("IPv4 ESP transformation library");
MODULE_LICENSE("GPL");
MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_ESP);
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c
index 5169c3c72cff..6b9cf5a24c19 100644
--- a/net/ipv4/ip_gre.c
+++ b/net/ipv4/ip_gre.c
@@ -1793,6 +1793,7 @@ static void __exit ipgre_fini(void)
module_init(ipgre_init);
module_exit(ipgre_fini);
+MODULE_DESCRIPTION("IPv4 GRE tunnels over IP library");
MODULE_LICENSE("GPL");
MODULE_ALIAS_RTNL_LINK("gre");
MODULE_ALIAS_RTNL_LINK("gretap");
diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c
index beeae624c412..a4513ffb66cb 100644
--- a/net/ipv4/ip_tunnel.c
+++ b/net/ipv4/ip_tunnel.c
@@ -1298,4 +1298,5 @@ void ip_tunnel_setup(struct net_device *dev, unsigned int net_id)
}
EXPORT_SYMBOL_GPL(ip_tunnel_setup);
+MODULE_DESCRIPTION("IPv4 tunnel implementation library");
MODULE_LICENSE("GPL");
diff --git a/net/ipv4/ip_vti.c b/net/ipv4/ip_vti.c
index 9ab9b3ebe0cd..d1d6bb28ed6e 100644
--- a/net/ipv4/ip_vti.c
+++ b/net/ipv4/ip_vti.c
@@ -721,6 +721,7 @@ static void __exit vti_fini(void)
module_init(vti_init);
module_exit(vti_fini);
+MODULE_DESCRIPTION("Virtual (secure) IP tunneling library");
MODULE_LICENSE("GPL");
MODULE_ALIAS_RTNL_LINK("vti");
MODULE_ALIAS_NETDEV("ip_vti0");
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c
index 27b8f83c6ea2..03afa3871efc 100644
--- a/net/ipv4/ipip.c
+++ b/net/ipv4/ipip.c
@@ -658,6 +658,7 @@ static void __exit ipip_fini(void)
module_init(ipip_init);
module_exit(ipip_fini);
+MODULE_DESCRIPTION("IP/IP protocol decoder library");
MODULE_LICENSE("GPL");
MODULE_ALIAS_RTNL_LINK("ipip");
MODULE_ALIAS_NETDEV("tunl0");
diff --git a/net/ipv4/tunnel4.c b/net/ipv4/tunnel4.c
index 5048c47c79b2..4c1f836aae38 100644
--- a/net/ipv4/tunnel4.c
+++ b/net/ipv4/tunnel4.c
@@ -294,4 +294,5 @@ static void __exit tunnel4_fini(void)
module_init(tunnel4_init);
module_exit(tunnel4_fini);
+MODULE_DESCRIPTION("IPv4 XFRM tunnel library");
MODULE_LICENSE("GPL");
diff --git a/net/ipv4/udp_tunnel_core.c b/net/ipv4/udp_tunnel_core.c
index a87defb2b167..b0a073ed590a 100644
--- a/net/ipv4/udp_tunnel_core.c
+++ b/net/ipv4/udp_tunnel_core.c
@@ -253,4 +253,5 @@ struct rtable *udp_tunnel_dst_lookup(struct sk_buff *skb,
}
EXPORT_SYMBOL_GPL(udp_tunnel_dst_lookup);
+MODULE_DESCRIPTION("IPv4 UDP tunnel driver");
MODULE_LICENSE("GPL");
diff --git a/net/ipv4/xfrm4_tunnel.c b/net/ipv4/xfrm4_tunnel.c
index 8489fa106583..8cb266af1393 100644
--- a/net/ipv4/xfrm4_tunnel.c
+++ b/net/ipv4/xfrm4_tunnel.c
@@ -114,5 +114,6 @@ static void __exit ipip_fini(void)
module_init(ipip_init);
module_exit(ipip_fini);
+MODULE_DESCRIPTION("IPv4 XFRM tunnel driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_IPIP);
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH net 07/10] net: fill in MODULE_DESCRIPTION()s for net/sched
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
` (5 preceding siblings ...)
2024-02-05 10:13 ` [PATCH net 06/10] net: fill in MODULE_DESCRIPTION()s for ipv4 modules Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-05 10:13 ` [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for ieee802154 Breno Leitao
` (2 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet, Jamal Hadi Salim, Cong Wang,
Jiri Pirko
Cc: netdev, linux-kernel, horms, andrew
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the network schedulers.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
net/sched/em_canid.c | 1 +
net/sched/em_cmp.c | 1 +
net/sched/em_meta.c | 1 +
net/sched/em_nbyte.c | 1 +
net/sched/em_text.c | 1 +
net/sched/em_u32.c | 1 +
6 files changed, 6 insertions(+)
diff --git a/net/sched/em_canid.c b/net/sched/em_canid.c
index 5ea84decec19..c1852d79c00a 100644
--- a/net/sched/em_canid.c
+++ b/net/sched/em_canid.c
@@ -222,6 +222,7 @@ static void __exit exit_em_canid(void)
tcf_em_unregister(&em_canid_ops);
}
+MODULE_DESCRIPTION("CAN Identifier comparison network helpers");
MODULE_LICENSE("GPL");
module_init(init_em_canid);
diff --git a/net/sched/em_cmp.c b/net/sched/em_cmp.c
index f17b049ea530..285b36c32c16 100644
--- a/net/sched/em_cmp.c
+++ b/net/sched/em_cmp.c
@@ -87,6 +87,7 @@ static void __exit exit_em_cmp(void)
tcf_em_unregister(&em_cmp_ops);
}
+MODULE_DESCRIPTION("Simple packet data comparison network helpers");
MODULE_LICENSE("GPL");
module_init(init_em_cmp);
diff --git a/net/sched/em_meta.c b/net/sched/em_meta.c
index 09d8afd04a2a..cab43356824a 100644
--- a/net/sched/em_meta.c
+++ b/net/sched/em_meta.c
@@ -1006,6 +1006,7 @@ static void __exit exit_em_meta(void)
tcf_em_unregister(&em_meta_ops);
}
+MODULE_DESCRIPTION("Metadata comparison network helpers");
MODULE_LICENSE("GPL");
module_init(init_em_meta);
diff --git a/net/sched/em_nbyte.c b/net/sched/em_nbyte.c
index a83b237cbeb0..34c6e8c8b695 100644
--- a/net/sched/em_nbyte.c
+++ b/net/sched/em_nbyte.c
@@ -68,6 +68,7 @@ static void __exit exit_em_nbyte(void)
tcf_em_unregister(&em_nbyte_ops);
}
+MODULE_DESCRIPTION("Multi byte comparison network helpers");
MODULE_LICENSE("GPL");
module_init(init_em_nbyte);
diff --git a/net/sched/em_text.c b/net/sched/em_text.c
index f176afb70559..7a89db8e5409 100644
--- a/net/sched/em_text.c
+++ b/net/sched/em_text.c
@@ -147,6 +147,7 @@ static void __exit exit_em_text(void)
tcf_em_unregister(&em_text_ops);
}
+MODULE_DESCRIPTION("Textsearch comparison network helpers");
MODULE_LICENSE("GPL");
module_init(init_em_text);
diff --git a/net/sched/em_u32.c b/net/sched/em_u32.c
index 71b070da0437..ea32e4e12a99 100644
--- a/net/sched/em_u32.c
+++ b/net/sched/em_u32.c
@@ -52,6 +52,7 @@ static void __exit exit_em_u32(void)
tcf_em_unregister(&em_u32_ops);
}
+MODULE_DESCRIPTION("U32 Key comparison network helpers");
MODULE_LICENSE("GPL");
module_init(init_em_u32);
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for ieee802154
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
` (6 preceding siblings ...)
2024-02-05 10:13 ` [PATCH net 07/10] net: fill in MODULE_DESCRIPTION()s for net/sched Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-05 13:41 ` Miquel Raynal
2024-02-05 10:13 ` [PATCH net 09/10] net: fill in MODULE_DESCRIPTION()s for ipvtap Breno Leitao
2024-02-05 10:13 ` [PATCH net 10/10] net: fill in MODULE_DESCRIPTION()s for dsa_loop_bdinfo Breno Leitao
9 siblings, 1 reply; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet, Alexander Aring, Stefan Schmidt,
Miquel Raynal
Cc: netdev, linux-kernel, horms, andrew,
open list:IEEE 802.15.4 SUBSYSTEM
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the IEEE 802.15.4 socket and 6lowpan modules.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
net/ieee802154/6lowpan/core.c | 1 +
net/ieee802154/socket.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/net/ieee802154/6lowpan/core.c b/net/ieee802154/6lowpan/core.c
index 2c087b7f17c5..d19bc9314374 100644
--- a/net/ieee802154/6lowpan/core.c
+++ b/net/ieee802154/6lowpan/core.c
@@ -280,5 +280,6 @@ static void __exit lowpan_cleanup_module(void)
module_init(lowpan_init_module);
module_exit(lowpan_cleanup_module);
+MODULE_DESCRIPTION("IEEE 802.15.4 IPv6 over Low-Power Wireless Personal Area Network module");
MODULE_LICENSE("GPL");
MODULE_ALIAS_RTNL_LINK("lowpan");
diff --git a/net/ieee802154/socket.c b/net/ieee802154/socket.c
index 00302e8b9615..a93b592c2f83 100644
--- a/net/ieee802154/socket.c
+++ b/net/ieee802154/socket.c
@@ -1136,5 +1136,6 @@ static void __exit af_ieee802154_remove(void)
module_init(af_ieee802154_init);
module_exit(af_ieee802154_remove);
+MODULE_DESCRIPTION("IEEE 802.15.4 socket interface");
MODULE_LICENSE("GPL");
MODULE_ALIAS_NETPROTO(PF_IEEE802154);
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for ieee802154
2024-02-05 10:13 ` [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for ieee802154 Breno Leitao
@ 2024-02-05 13:41 ` Miquel Raynal
2024-02-05 14:13 ` Breno Leitao
0 siblings, 1 reply; 14+ messages in thread
From: Miquel Raynal @ 2024-02-05 13:41 UTC (permalink / raw)
To: Breno Leitao
Cc: kuba, davem, pabeni, edumazet, Alexander Aring, Stefan Schmidt,
netdev, linux-kernel, horms, andrew,
open list:IEEE 802.15.4 SUBSYSTEM
Hi Breno,
Please be more cautious with your titles. It's your second or third
e-mail with this content without version number. And you also forgot to
collect Stefan Ack.
leitao@debian.org wrote on Mon, 5 Feb 2024 02:13:57 -0800:
> W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
> Add descriptions to the IEEE 802.15.4 socket and 6lowpan modules.
>
> Signed-off-by: Breno Leitao <leitao@debian.org>
Acked-by: Miquel Raynal <miquel.raynal@bootlin.com>
Thanks,
Miquèl
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for ieee802154
2024-02-05 13:41 ` Miquel Raynal
@ 2024-02-05 14:13 ` Breno Leitao
0 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 14:13 UTC (permalink / raw)
To: Miquel Raynal
Cc: kuba, davem, pabeni, edumazet, Alexander Aring, Stefan Schmidt,
netdev, linux-kernel, horms, andrew,
open list:IEEE 802.15.4 SUBSYSTEM
Hello Miquel,
On Mon, Feb 05, 2024 at 02:41:18PM +0100, Miquel Raynal wrote:
> Hi Breno,
>
> Please be more cautious with your titles. It's your second or third
> e-mail with this content without version number. And you also forgot to
> collect Stefan Ack.
Sorry, in fact, the commit you are referring to is already in landed
net-next:
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=6aa89bf8ac9a
The problem here is that this commit shouldn't be against net, since it
is already net-next.
This workstream was applied part in net, and part in net-next. I am
trying to focus in fixing all the warning in "net" and not touch those in
net-next. This commit is already in net-next, but, and shouldn't be in
`net`. I will resend the patch without it.
Sorry if this caused any confusion.
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH net 09/10] net: fill in MODULE_DESCRIPTION()s for ipvtap
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
` (7 preceding siblings ...)
2024-02-05 10:13 ` [PATCH net 08/10] net: fill in MODULE_DESCRIPTION()s for ieee802154 Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
2024-02-05 10:13 ` [PATCH net 10/10] net: fill in MODULE_DESCRIPTION()s for dsa_loop_bdinfo Breno Leitao
9 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet
Cc: netdev, linux-kernel, horms, andrew, Greg Kroah-Hartman
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the IP-VLAN based tap driver.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
drivers/net/ipvlan/ipvtap.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/ipvlan/ipvtap.c b/drivers/net/ipvlan/ipvtap.c
index 60944a4beada..1afc4c47be73 100644
--- a/drivers/net/ipvlan/ipvtap.c
+++ b/drivers/net/ipvlan/ipvtap.c
@@ -237,4 +237,5 @@ static void __exit ipvtap_exit(void)
module_exit(ipvtap_exit);
MODULE_ALIAS_RTNL_LINK("ipvtap");
MODULE_AUTHOR("Sainath Grandhi <sainath.grandhi@intel.com>");
+MODULE_DESCRIPTION("IP-VLAN based tap driver");
MODULE_LICENSE("GPL");
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH net 10/10] net: fill in MODULE_DESCRIPTION()s for dsa_loop_bdinfo
2024-02-05 10:13 [PATCH net 00/10] net: Fix MODULE_DESCRIPTION() for net (p5) Breno Leitao
` (8 preceding siblings ...)
2024-02-05 10:13 ` [PATCH net 09/10] net: fill in MODULE_DESCRIPTION()s for ipvtap Breno Leitao
@ 2024-02-05 10:13 ` Breno Leitao
9 siblings, 0 replies; 14+ messages in thread
From: Breno Leitao @ 2024-02-05 10:13 UTC (permalink / raw)
To: kuba, davem, pabeni, edumazet, Andrew Lunn, Florian Fainelli,
Vladimir Oltean
Cc: netdev, linux-kernel, horms
W=1 builds now warn if module is built without a MODULE_DESCRIPTION().
Add descriptions to the DSA loopback fixed PHY module.
Signed-off-by: Breno Leitao <leitao@debian.org>
---
drivers/net/dsa/dsa_loop_bdinfo.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/dsa/dsa_loop_bdinfo.c b/drivers/net/dsa/dsa_loop_bdinfo.c
index 237066d30704..fd412ae4e84b 100644
--- a/drivers/net/dsa/dsa_loop_bdinfo.c
+++ b/drivers/net/dsa/dsa_loop_bdinfo.c
@@ -32,4 +32,5 @@ static int __init dsa_loop_bdinfo_init(void)
}
arch_initcall(dsa_loop_bdinfo_init)
+MODULE_DESCRIPTION("DSA loopback fixed PHY library");
MODULE_LICENSE("GPL");
--
2.39.3
^ permalink raw reply related [flat|nested] 14+ messages in thread