* [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates
@ 2024-10-04 10:03 Simon Horman
2024-10-04 10:03 ` [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Simon Horman @ 2024-10-04 10:03 UTC (permalink / raw)
To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless,
netdev
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.
---
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: 096c0fa42afa92b6ffa4e441c4c72a2f805c5a88
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-04 10:03 [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates Simon Horman
@ 2024-10-04 10:03 ` Simon Horman
2024-10-04 14:32 ` Johannes Berg
2024-10-04 15:27 ` Kalle Valo
2024-10-04 10:03 ` [PATCH RFC net 2/2] MAINTAINERS: Add headers and mailing list to UDP section Simon Horman
2024-10-04 22:42 ` [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates Jakub Kicinski
2 siblings, 2 replies; 12+ messages in thread
From: Simon Horman @ 2024-10-04 10:03 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
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 related [flat|nested] 12+ messages in thread
* [PATCH RFC net 2/2] MAINTAINERS: Add headers and mailing list to UDP section
2024-10-04 10:03 [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates Simon Horman
2024-10-04 10:03 ` [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
@ 2024-10-04 10:03 ` Simon Horman
2024-10-04 15:25 ` Willem de Bruijn
2024-10-04 22:42 ` [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates Jakub Kicinski
2 siblings, 1 reply; 12+ messages in thread
From: Simon Horman @ 2024-10-04 10:03 UTC (permalink / raw)
To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless,
netdev
Add netdev mailing list and some more udp.h headers to the UDP section.
This is now more consistent with the TCP section.
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 related [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-04 10:03 ` [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
@ 2024-10-04 14:32 ` Johannes Berg
2024-10-04 15:27 ` Kalle Valo
1 sibling, 0 replies; 12+ messages in thread
From: Johannes Berg @ 2024-10-04 14:32 UTC (permalink / raw)
To: Simon Horman, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni
Cc: Willem de Bruijn, linux-kernel, linux-wireless, netdev
On Fri, 2024-10-04 at 11:03 +0100, Simon Horman wrote:
> 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
>
> Signed-off-by: Simon Horman <horms@kernel.org>
Makes sense to me!
Acked-by: Johannes Berg <johannes@sipsolutions.net>
johannes
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 2/2] MAINTAINERS: Add headers and mailing list to UDP section
2024-10-04 10:03 ` [PATCH RFC net 2/2] MAINTAINERS: Add headers and mailing list to UDP section Simon Horman
@ 2024-10-04 15:25 ` Willem de Bruijn
0 siblings, 0 replies; 12+ messages in thread
From: Willem de Bruijn @ 2024-10-04 15:25 UTC (permalink / raw)
To: Simon Horman, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni
Cc: Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless,
netdev
Simon Horman wrote:
> Add netdev mailing list and some more udp.h headers to the UDP section.
> This is now more consistent with the TCP section.
>
> Signed-off-by: Simon Horman <horms@kernel.org>
Acked-by: Willem de Bruijn <willemb@google.com>
Also a reminder that maintainer and reviewer roles are not fixed,
and open to regular contributors to this code.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-04 10:03 ` [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
2024-10-04 14:32 ` Johannes Berg
@ 2024-10-04 15:27 ` Kalle Valo
2024-10-07 14:13 ` Simon Horman
1 sibling, 1 reply; 12+ messages in thread
From: Kalle Valo @ 2024-10-04 15:27 UTC (permalink / raw)
To: Simon Horman
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless,
netdev
Simon Horman <horms@kernel.org> writes:
> 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
>
> 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
Should we add also lib80211.h?
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates
2024-10-04 10:03 [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates Simon Horman
2024-10-04 10:03 ` [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
2024-10-04 10:03 ` [PATCH RFC net 2/2] MAINTAINERS: Add headers and mailing list to UDP section Simon Horman
@ 2024-10-04 22:42 ` Jakub Kicinski
2 siblings, 0 replies; 12+ messages in thread
From: Jakub Kicinski @ 2024-10-04 22:42 UTC (permalink / raw)
To: Simon Horman
Cc: David S. Miller, Eric Dumazet, Paolo Abeni, Johannes Berg,
Willem de Bruijn, linux-kernel, linux-wireless, netdev
On Fri, 04 Oct 2024 11:03:20 +0100 Simon Horman wrote:
> 2. Excluding some files relating to Wireless from NETWORKING [GENERAL],
> making their handling consistent with other files related to
> Wireless.
LGTM, FWIW, on the wireless side I generally add stuff which seems like
it causing people to mis-post. But no objections to listing more files
either way.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-04 15:27 ` Kalle Valo
@ 2024-10-07 14:13 ` Simon Horman
2024-10-07 17:30 ` Johannes Berg
2024-10-07 17:41 ` Kalle Valo
0 siblings, 2 replies; 12+ messages in thread
From: Simon Horman @ 2024-10-07 14:13 UTC (permalink / raw)
To: Kalle Valo
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless,
netdev
On Fri, Oct 04, 2024 at 06:27:38PM +0300, Kalle Valo wrote:
> Simon Horman <horms@kernel.org> writes:
>
> > 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
> >
> > 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
>
> Should we add also lib80211.h?
Thanks, I missed that one. Perhaps it should have:
* An F: entry in the MAC80211
* An X: entry in the NETWORKING [GENERAL]
If so, perhaps I can just add that to a v2 of this patch.
Let me know what you think.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-07 14:13 ` Simon Horman
@ 2024-10-07 17:30 ` Johannes Berg
2024-10-07 17:41 ` Kalle Valo
1 sibling, 0 replies; 12+ messages in thread
From: Johannes Berg @ 2024-10-07 17:30 UTC (permalink / raw)
To: Simon Horman, Kalle Valo
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Willem de Bruijn, linux-kernel, linux-wireless, netdev
On Mon, 2024-10-07 at 15:13 +0100, Simon Horman wrote:
> On Fri, Oct 04, 2024 at 06:27:38PM +0300, Kalle Valo wrote:
> > Simon Horman <horms@kernel.org> writes:
> >
> > > 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
> > >
> > > 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
> >
> > Should we add also lib80211.h?
>
> Thanks, I missed that one. Perhaps it should have:
>
> * An F: entry in the MAC80211
I suppose it should rather be in the 802.11 entry rather than the
MAC80211 one. I don't like the code anyway, but it's there for now :)
johannes
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-07 14:13 ` Simon Horman
2024-10-07 17:30 ` Johannes Berg
@ 2024-10-07 17:41 ` Kalle Valo
2024-10-07 18:03 ` Johannes Berg
1 sibling, 1 reply; 12+ messages in thread
From: Kalle Valo @ 2024-10-07 17:41 UTC (permalink / raw)
To: Simon Horman
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Johannes Berg, Willem de Bruijn, linux-kernel, linux-wireless,
netdev
Simon Horman <horms@kernel.org> writes:
> On Fri, Oct 04, 2024 at 06:27:38PM +0300, Kalle Valo wrote:
>
>> Simon Horman <horms@kernel.org> writes:
>>
>> > 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
>> >
>> > 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
>>
>> Should we add also lib80211.h?
>
> Thanks, I missed that one. Perhaps it should have:
>
> * An F: entry in the MAC80211
> * An X: entry in the NETWORKING [GENERAL]
>
> If so, perhaps I can just add that to a v2 of this patch.
> Let me know what you think.
Like Johannes said, the cfg80211 entry is more approriate but otherwise
sounds like a good plan, thanks!
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-07 17:41 ` Kalle Valo
@ 2024-10-07 18:03 ` Johannes Berg
2024-10-09 8:43 ` Simon Horman
0 siblings, 1 reply; 12+ messages in thread
From: Johannes Berg @ 2024-10-07 18:03 UTC (permalink / raw)
To: Kalle Valo, Simon Horman
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Willem de Bruijn, linux-kernel, linux-wireless, netdev
On Mon, 2024-10-07 at 20:41 +0300, Kalle Valo wrote:
> Simon Horman <horms@kernel.org> writes:
>
> > On Fri, Oct 04, 2024 at 06:27:38PM +0300, Kalle Valo wrote:
> >
> > > Simon Horman <horms@kernel.org> writes:
> > >
> > > > 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
> > > >
> > > > 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
> > >
> > > Should we add also lib80211.h?
> >
> > Thanks, I missed that one. Perhaps it should have:
> >
> > * An F: entry in the MAC80211
> > * An X: entry in the NETWORKING [GENERAL]
> >
> > If so, perhaps I can just add that to a v2 of this patch.
> > Let me know what you think.
>
> Like Johannes said, the cfg80211 entry is more approriate but otherwise
> sounds like a good plan, thanks!
Actually scratch that, please just ignore it. I'm going to remove that
header file entirely and move the functionality into libipw in the
ipw2x00 drivers.
johannes
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL]
2024-10-07 18:03 ` Johannes Berg
@ 2024-10-09 8:43 ` Simon Horman
0 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2024-10-09 8:43 UTC (permalink / raw)
To: Johannes Berg
Cc: Kalle Valo, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Willem de Bruijn, linux-kernel, linux-wireless,
netdev
On Mon, Oct 07, 2024 at 08:03:22PM +0200, Johannes Berg wrote:
> On Mon, 2024-10-07 at 20:41 +0300, Kalle Valo wrote:
> > Simon Horman <horms@kernel.org> writes:
> >
> > > On Fri, Oct 04, 2024 at 06:27:38PM +0300, Kalle Valo wrote:
> > >
> > > > Simon Horman <horms@kernel.org> writes:
> > > >
> > > > > 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
> > > > >
> > > > > 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
> > > >
> > > > Should we add also lib80211.h?
> > >
> > > Thanks, I missed that one. Perhaps it should have:
> > >
> > > * An F: entry in the MAC80211
> > > * An X: entry in the NETWORKING [GENERAL]
> > >
> > > If so, perhaps I can just add that to a v2 of this patch.
> > > Let me know what you think.
> >
> > Like Johannes said, the cfg80211 entry is more approriate but otherwise
> > sounds like a good plan, thanks!
>
> Actually scratch that, please just ignore it. I'm going to remove that
> header file entirely and move the functionality into libipw in the
> ipw2x00 drivers.
Thanks,
In that case I'll post a v2 without any code changes.
Rather, bumping it to non-RFC and accumulating tags.
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-10-09 8:44 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-04 10:03 [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates Simon Horman
2024-10-04 10:03 ` [PATCH RFC net 1/2] MAINTAINERS: consistently exclude wireless files from NETWORKING [GENERAL] Simon Horman
2024-10-04 14:32 ` Johannes Berg
2024-10-04 15:27 ` Kalle Valo
2024-10-07 14:13 ` Simon Horman
2024-10-07 17:30 ` Johannes Berg
2024-10-07 17:41 ` Kalle Valo
2024-10-07 18:03 ` Johannes Berg
2024-10-09 8:43 ` Simon Horman
2024-10-04 10:03 ` [PATCH RFC net 2/2] MAINTAINERS: Add headers and mailing list to UDP section Simon Horman
2024-10-04 15:25 ` Willem de Bruijn
2024-10-04 22:42 ` [PATCH RFC net 0/2] MAINTAINERS: Networking file coverage updates Jakub Kicinski
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).