* [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates
@ 2024-10-09 8:47 Simon Horman
2024-10-09 8:47 ` [PATCH net v2 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Simon Horman @ 2024-10-09 8:47 UTC (permalink / raw)
To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless,
netdev, Willem de Bruijn
Hi,
The aim of this proposal is to make the handling of some files,
related to Networking and Wireless, more consistently. It does so by:
1. Adding some more headers to the UDP section, making it consistent
with the TCP section.
2. Excluding some files relating to Wireless from NETWORKING [GENERAL],
making their handling consistent with other files related to
Wireless.
The aim of this is to make things more consistent. And for MAINTAINERS
to better reflect the situation on the ground. I am more than happy to
be told that the current state of affairs is fine. Or for other ideas to
be discussed.
---
Changes in v2:
- Dropped RFC designation
- Added tags: Thanks Willem and Johannes!
- Link to v1: https://lore.kernel.org/r/20241004-maint-net-hdrs-v1-0-41fd555aacc5@kernel.org
---
Simon Horman (2):
MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
MAINTAINERS: Add headers and mailing list to UDP section
MAINTAINERS | 15 +++++++++++++++
1 file changed, 15 insertions(+)
base-commit: 08c8acc9d8f3f70d62dd928571368d5018206490
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH net v2 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-09 8:47 [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates Simon Horman
@ 2024-10-09 8:47 ` Simon Horman
2024-10-09 8:47 ` [PATCH net v2 2/2] MAINTAINERS: Add headers and mailing list to UDP section Simon Horman
2024-10-10 16:40 ` [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2024-10-09 8:47 UTC (permalink / raw)
To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless, netdev
We already exclude wireless drivers from the netdev@ traffic, to
delegate it to linux-wireless@, and avoid overwhelming netdev@.
Many of the following wireless-related sections MAINTAINERS
are already not included in the NETWORKING [GENERAL] section.
For consistency, exclude those that are.
* 802.11 (including CFG80211/NL80211)
* MAC80211
* RFKILL
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Simon Horman <horms@kernel.org>
---
MAINTAINERS | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index c27f3190737f..ea3ea2c0d3fa 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -16197,8 +16197,19 @@ F: lib/random32.c
F: net/
F: tools/net/
F: tools/testing/selftests/net/
+X: Documentation/networking/mac80211-injection.rst
+X: Documentation/networking/mac80211_hwsim/
+X: Documentation/networking/regulatory.rst
+X: include/net/cfg80211.h
+X: include/net/ieee80211_radiotap.h
+X: include/net/iw_handler.h
+X: include/net/mac80211.h
+X: include/net/wext.h
X: net/9p/
X: net/bluetooth/
+X: net/mac80211/
+X: net/rfkill/
+X: net/wireless/
NETWORKING [IPSEC]
M: Steffen Klassert <steffen.klassert@secunet.com>
--
2.45.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH net v2 2/2] MAINTAINERS: Add headers and mailing list to UDP section
2024-10-09 8:47 [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates Simon Horman
2024-10-09 8:47 ` [PATCH net v2 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
@ 2024-10-09 8:47 ` Simon Horman
2024-10-10 16:40 ` [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2024-10-09 8:47 UTC (permalink / raw)
To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless,
netdev, Willem de Bruijn
Add netdev mailing list and some more udp.h headers to the UDP section.
This is now more consistent with the TCP section.
Acked-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: Simon Horman <horms@kernel.org>
---
MAINTAINERS | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index ea3ea2c0d3fa..1ce8c86cdbaa 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -24184,8 +24184,12 @@ F: drivers/usb/host/xhci*
USER DATAGRAM PROTOCOL (UDP)
M: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
+L: netdev@vger.kernel.org
S: Maintained
F: include/linux/udp.h
+F: include/net/udp.h
+F: include/trace/events/udp.h
+F: include/uapi/linux/udp.h
F: net/ipv4/udp.c
F: net/ipv6/udp.c
--
2.45.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates
2024-10-09 8:47 [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates Simon Horman
2024-10-09 8:47 ` [PATCH net v2 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
2024-10-09 8:47 ` [PATCH net v2 2/2] MAINTAINERS: Add headers and mailing list to UDP section Simon Horman
@ 2024-10-10 16:40 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-10-10 16:40 UTC (permalink / raw)
To: Simon Horman
Cc: davem, edumazet, kuba, pabeni, johannes, willemdebruijn.kernel,
linux-kernel, linux-wireless, netdev, willemb
Hello:
This series was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 09 Oct 2024 09:47:21 +0100 you wrote:
> Hi,
>
> The aim of this proposal is to make the handling of some files,
> related to Networking and Wireless, more consistently. It does so by:
>
> 1. Adding some more headers to the UDP section, making it consistent
> with the TCP section.
>
> [...]
Here is the summary with links:
- [net,v2,1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
https://git.kernel.org/netdev/net/c/9937aae39bc0
- [net,v2,2/2] MAINTAINERS: Add headers and mailing list to UDP section
https://git.kernel.org/netdev/net/c/5404b5a2fea9
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] 4+ messages in thread
end of thread, other threads:[~2024-10-10 16:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-09 8:47 [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates Simon Horman
2024-10-09 8:47 ` [PATCH net v2 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
2024-10-09 8:47 ` [PATCH net v2 2/2] MAINTAINERS: Add headers and mailing list to UDP section Simon Horman
2024-10-10 16:40 ` [PATCH net v2 0/2] MAINTAINERS: Networking file coverage updates patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®