mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/2] MAINTAINERS: ensure that mailing lists are L: not M:
@ 2024-09-20 11:03 Konstantin Ryabitsev
  2024-09-20 11:03 ` [PATCH 1/2] MAINTAINERS: fix PKTCDVD DRIVER to use L: for the list address Konstantin Ryabitsev
  2024-09-20 11:03 ` [PATCH 2/2] MAINTAINERS: use the canonical soc mailing list address and mark it as L: Konstantin Ryabitsev
  0 siblings, 2 replies; 4+ messages in thread
From: Konstantin Ryabitsev @ 2024-09-20 11:03 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, linux-block, soc, Konstantin Ryabitsev

Linus,

I noticed several subsystems where M: entries were pointing at mailing
lists instead of real people. These two small patches properly mark
mailing list destinations with L:, which avoids potential problems with
automation.

Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
---
Konstantin Ryabitsev (2):
      MAINTAINERS: fix PKTCDVD DRIVER to use L: for the list address
      MAINTAINERS: use the canonical soc mailing list address and mark it as L:

 MAINTAINERS | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
base-commit: de848da12f752170c2ebe114804a985314fd5a6a
change-id: 20240919-maintainers-m-to-l-tweak-a5295c5703c2

Best regards,
-- 
Konstantin Ryabitsev <konstantin@linuxfoundation.org>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] MAINTAINERS: fix PKTCDVD DRIVER to use L: for the list address
  2024-09-20 11:03 [PATCH 0/2] MAINTAINERS: ensure that mailing lists are L: not M: Konstantin Ryabitsev
@ 2024-09-20 11:03 ` Konstantin Ryabitsev
  2024-09-20 12:40   ` Jens Axboe
  2024-09-20 11:03 ` [PATCH 2/2] MAINTAINERS: use the canonical soc mailing list address and mark it as L: Konstantin Ryabitsev
  1 sibling, 1 reply; 4+ messages in thread
From: Konstantin Ryabitsev @ 2024-09-20 11:03 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, linux-block, soc, Konstantin Ryabitsev

The PKTCDVD DRIVER subsystem has an M: entry that points at the
linux-block mailing list. It is perfectly valid to have no M: entry for
an orphaned subsystem, so change M: to L: so it properly indicates that
the address is a mailing list, not a person.

Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index f5526da33d4cc67eca7dc0c36410e570ba492486..60f07c11353412891707311d6d21fed94156ea8c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -18263,7 +18263,7 @@ F:	Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
 F:	drivers/input/keyboard/pinephone-keyboard.c
 
 PKTCDVD DRIVER
-M:	linux-block@vger.kernel.org
+L:	linux-block@vger.kernel.org
 S:	Orphan
 F:	drivers/block/pktcdvd.c
 F:	include/linux/pktcdvd.h

-- 
2.46.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 2/2] MAINTAINERS: use the canonical soc mailing list address and mark it as L:
  2024-09-20 11:03 [PATCH 0/2] MAINTAINERS: ensure that mailing lists are L: not M: Konstantin Ryabitsev
  2024-09-20 11:03 ` [PATCH 1/2] MAINTAINERS: fix PKTCDVD DRIVER to use L: for the list address Konstantin Ryabitsev
@ 2024-09-20 11:03 ` Konstantin Ryabitsev
  1 sibling, 0 replies; 4+ messages in thread
From: Konstantin Ryabitsev @ 2024-09-20 11:03 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, linux-block, soc, Konstantin Ryabitsev

The soc@kernel.org address started out as a mail alias, but at some
point became a mailing list. Use the canonical name of the list and
properly mark it as L: instead of M:.

Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
---
 MAINTAINERS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 60f07c11353412891707311d6d21fed94156ea8c..5f9a0e2ca5c7470a89a20517087213e916ec9e09 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1717,8 +1717,8 @@ F:	include/uapi/linux/if_arcnet.h
 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
 M:	Arnd Bergmann <arnd@arndb.de>
 M:	Olof Johansson <olof@lixom.net>
-M:	soc@kernel.org
 L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
+L:	soc@lists.linux.dev
 S:	Maintained
 P:	Documentation/process/maintainer-soc.rst
 C:	irc://irc.libera.chat/armlinux
@@ -21650,8 +21650,8 @@ F:	drivers/accessibility/speakup/
 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
 M:	Viresh Kumar <vireshk@kernel.org>
 M:	Shiraz Hashim <shiraz.linux.kernel@gmail.com>
-M:	soc@kernel.org
 L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
+L:	soc@lists.linux.dev
 S:	Maintained
 W:	http://www.st.com/spear
 F:	arch/arm/boot/dts/st/spear*

-- 
2.46.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] MAINTAINERS: fix PKTCDVD DRIVER to use L: for the list address
  2024-09-20 11:03 ` [PATCH 1/2] MAINTAINERS: fix PKTCDVD DRIVER to use L: for the list address Konstantin Ryabitsev
@ 2024-09-20 12:40   ` Jens Axboe
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2024-09-20 12:40 UTC (permalink / raw)
  To: Konstantin Ryabitsev, torvalds; +Cc: linux-kernel, linux-block, soc

On 9/20/24 5:03 AM, Konstantin Ryabitsev wrote:
> The PKTCDVD DRIVER subsystem has an M: entry that points at the
> linux-block mailing list. It is perfectly valid to have no M: entry for
> an orphaned subsystem, so change M: to L: so it properly indicates that
> the address is a mailing list, not a person.

In lieu of finally being able to delete this ancient thing, this looks
fine :-)

Acked-by: Jens Axboe <axboe@kernel.dk>

-- 
Jens Axboe

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-09-20 12:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-20 11:03 [PATCH 0/2] MAINTAINERS: ensure that mailing lists are L: not M: Konstantin Ryabitsev
2024-09-20 11:03 ` [PATCH 1/2] MAINTAINERS: fix PKTCDVD DRIVER to use L: for the list address Konstantin Ryabitsev
2024-09-20 12:40   ` Jens Axboe
2024-09-20 11:03 ` [PATCH 2/2] MAINTAINERS: use the canonical soc mailing list address and mark it as L: Konstantin Ryabitsev

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®