netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer
@ 2025-02-02  1:47 Jakub Kicinski
  2025-02-02  1:47 ` [PATCH net 1/3] MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers Jakub Kicinski
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Jakub Kicinski @ 2025-02-02  1:47 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, pabeni, andrew+netdev, horms, kuniyu, willemb,
	Jakub Kicinski

Kuniyuki Iwashima has been a prolific contributor and trusted reviewer
for some core portions of the networking stack for a couple of years now.
Formalize some obvious areas of his expertise and list him as a maintainer.

Jakub Kicinski (3):
  MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers
  MAINTAINERS: add a general entry for BSD sockets
  MAINTAINERS: add entry for UNIX sockets

 MAINTAINERS | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

-- 
2.48.1


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

* [PATCH net 1/3] MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers
  2025-02-02  1:47 [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Jakub Kicinski
@ 2025-02-02  1:47 ` Jakub Kicinski
  2025-02-03  9:10   ` Eric Dumazet
  2025-02-02  1:47 ` [PATCH net 2/3] MAINTAINERS: add a general entry for BSD sockets Jakub Kicinski
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Jakub Kicinski @ 2025-02-02  1:47 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, pabeni, andrew+netdev, horms, kuniyu, willemb,
	Jakub Kicinski

List Kuniyuki as an official TCP reviewer.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index efefb04de7fa..dd5c59ec5126 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -16619,6 +16619,7 @@ F:	tools/testing/selftests/net/mptcp/
 NETWORKING [TCP]
 M:	Eric Dumazet <edumazet@google.com>
 M:	Neal Cardwell <ncardwell@google.com>
+R:	Kuniyuki Iwashima <kuniyu@amazon.com>
 L:	netdev@vger.kernel.org
 S:	Maintained
 F:	Documentation/networking/net_cachelines/tcp_sock.rst
-- 
2.48.1


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

* [PATCH net 2/3] MAINTAINERS: add a general entry for BSD sockets
  2025-02-02  1:47 [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Jakub Kicinski
  2025-02-02  1:47 ` [PATCH net 1/3] MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers Jakub Kicinski
@ 2025-02-02  1:47 ` Jakub Kicinski
  2025-02-03 10:54   ` Simon Horman
  2025-02-02  1:47 ` [PATCH net 3/3] MAINTAINERS: add entry for UNIX sockets Jakub Kicinski
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Jakub Kicinski @ 2025-02-02  1:47 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, pabeni, andrew+netdev, horms, kuniyu, willemb,
	Jakub Kicinski

Create a MAINTAINERS entry for BSD sockets. List the top 3
reviewers as maintainers. The entry is meant to cover core
socket code (of which there isn't much) but also reviews
of any new socket families.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
 MAINTAINERS | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index dd5c59ec5126..f61a8815fd28 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -16647,6 +16647,22 @@ F:	include/net/tls.h
 F:	include/uapi/linux/tls.h
 F:	net/tls/*
 
+NETWORKING [SOCKETS]
+M:	Eric Dumazet <edumazet@google.com>
+M:	Kuniyuki Iwashima <kuniyu@amazon.com>
+M:	Paolo Abeni <pabeni@redhat.com>
+M:	Willem de Bruijn <willemb@google.com>
+S:	Maintained
+F:	include/linux/sock_diag.h
+F:	include/linux/socket.h
+F:	include/linux/sockptr.h
+F:	include/net/sock.h
+F:	include/net/sock_reuseport.h
+F:	include/uapi/linux/socket.h
+F:	net/core/*sock*
+F:	net/core/scm.c
+F:	net/socket.c
+
 NETXEN (1/10) GbE SUPPORT
 M:	Manish Chopra <manishc@marvell.com>
 M:	Rahul Verma <rahulv@marvell.com>
-- 
2.48.1


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

* [PATCH net 3/3] MAINTAINERS: add entry for UNIX sockets
  2025-02-02  1:47 [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Jakub Kicinski
  2025-02-02  1:47 ` [PATCH net 1/3] MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers Jakub Kicinski
  2025-02-02  1:47 ` [PATCH net 2/3] MAINTAINERS: add a general entry for BSD sockets Jakub Kicinski
@ 2025-02-02  1:47 ` Jakub Kicinski
  2025-02-03 10:54   ` Simon Horman
  2025-02-03 20:00 ` [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Kuniyuki Iwashima
  2025-02-03 21:30 ` patchwork-bot+netdevbpf
  4 siblings, 1 reply; 10+ messages in thread
From: Jakub Kicinski @ 2025-02-02  1:47 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, pabeni, andrew+netdev, horms, kuniyu, willemb,
	Jakub Kicinski

Add a MAINTAINERS entry for UNIX socket, Kuniyuki has been
the de-facto maintainer of this code for a while.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
 MAINTAINERS | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index f61a8815fd28..ce92c8a3e3ce 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -16663,6 +16663,15 @@ F:	net/core/*sock*
 F:	net/core/scm.c
 F:	net/socket.c
 
+NETWORKING [UNIX SOCKETS]
+M:	Kuniyuki Iwashima <kuniyu@amazon.com>
+S:	Maintained
+F:	include/net/af_unix.h
+F:	include/net/netns/unix.h
+F:	include/uapi/linux/unix_diag.h
+F:	net/unix/
+F:	tools/testing/selftests/net/af_unix/
+
 NETXEN (1/10) GbE SUPPORT
 M:	Manish Chopra <manishc@marvell.com>
 M:	Rahul Verma <rahulv@marvell.com>
-- 
2.48.1


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

* Re: [PATCH net 1/3] MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers
  2025-02-02  1:47 ` [PATCH net 1/3] MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers Jakub Kicinski
@ 2025-02-03  9:10   ` Eric Dumazet
  0 siblings, 0 replies; 10+ messages in thread
From: Eric Dumazet @ 2025-02-03  9:10 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, pabeni, andrew+netdev, horms, kuniyu, willemb

On Sun, Feb 2, 2025 at 2:47 AM Jakub Kicinski <kuba@kernel.org> wrote:
>
> List Kuniyuki as an official TCP reviewer.
>
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>

Reviewed-by: Eric Dumazet <edumazet@google.com>

Thanks !

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

* Re: [PATCH net 2/3] MAINTAINERS: add a general entry for BSD sockets
  2025-02-02  1:47 ` [PATCH net 2/3] MAINTAINERS: add a general entry for BSD sockets Jakub Kicinski
@ 2025-02-03 10:54   ` Simon Horman
  2025-02-03 14:30     ` Willem de Bruijn
  0 siblings, 1 reply; 10+ messages in thread
From: Simon Horman @ 2025-02-03 10:54 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, andrew+netdev, kuniyu, willemb

On Sat, Feb 01, 2025 at 05:47:27PM -0800, Jakub Kicinski wrote:
> Create a MAINTAINERS entry for BSD sockets. List the top 3

4?

> reviewers as maintainers. The entry is meant to cover core
> socket code (of which there isn't much) but also reviews
> of any new socket families.
> 
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>

Reviewed-by: Simon Horman <horms@kernel.org>

> ---
>  MAINTAINERS | 16 ++++++++++++++++
>  1 file changed, 16 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index dd5c59ec5126..f61a8815fd28 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -16647,6 +16647,22 @@ F:	include/net/tls.h
>  F:	include/uapi/linux/tls.h
>  F:	net/tls/*
>  
> +NETWORKING [SOCKETS]
> +M:	Eric Dumazet <edumazet@google.com>
> +M:	Kuniyuki Iwashima <kuniyu@amazon.com>
> +M:	Paolo Abeni <pabeni@redhat.com>
> +M:	Willem de Bruijn <willemb@google.com>
> +S:	Maintained
> +F:	include/linux/sock_diag.h
> +F:	include/linux/socket.h
> +F:	include/linux/sockptr.h
> +F:	include/net/sock.h
> +F:	include/net/sock_reuseport.h
> +F:	include/uapi/linux/socket.h
> +F:	net/core/*sock*
> +F:	net/core/scm.c
> +F:	net/socket.c
> +
>  NETXEN (1/10) GbE SUPPORT
>  M:	Manish Chopra <manishc@marvell.com>
>  M:	Rahul Verma <rahulv@marvell.com>
> -- 
> 2.48.1
> 

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

* Re: [PATCH net 3/3] MAINTAINERS: add entry for UNIX sockets
  2025-02-02  1:47 ` [PATCH net 3/3] MAINTAINERS: add entry for UNIX sockets Jakub Kicinski
@ 2025-02-03 10:54   ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2025-02-03 10:54 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, andrew+netdev, kuniyu, willemb

On Sat, Feb 01, 2025 at 05:47:28PM -0800, Jakub Kicinski wrote:
> Add a MAINTAINERS entry for UNIX socket, Kuniyuki has been
> the de-facto maintainer of this code for a while.
> 
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>

Reviewed-by: Simon Horman <horms@kernel.org>


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

* Re: [PATCH net 2/3] MAINTAINERS: add a general entry for BSD sockets
  2025-02-03 10:54   ` Simon Horman
@ 2025-02-03 14:30     ` Willem de Bruijn
  0 siblings, 0 replies; 10+ messages in thread
From: Willem de Bruijn @ 2025-02-03 14:30 UTC (permalink / raw)
  To: Simon Horman, Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, andrew+netdev, kuniyu, willemb

Simon Horman wrote:
> On Sat, Feb 01, 2025 at 05:47:27PM -0800, Jakub Kicinski wrote:
> > Create a MAINTAINERS entry for BSD sockets. List the top 3
> 
> 4?
> 
> > reviewers as maintainers. The entry is meant to cover core
> > socket code (of which there isn't much) but also reviews
> > of any new socket families.
> > 
> > Signed-off-by: Jakub Kicinski <kuba@kernel.org>
> 
> Reviewed-by: Simon Horman <horms@kernel.org>

Acked-by: Willem de Bruijn <willemb@google.com>

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

* Re: [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer
  2025-02-02  1:47 [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Jakub Kicinski
                   ` (2 preceding siblings ...)
  2025-02-02  1:47 ` [PATCH net 3/3] MAINTAINERS: add entry for UNIX sockets Jakub Kicinski
@ 2025-02-03 20:00 ` Kuniyuki Iwashima
  2025-02-03 21:30 ` patchwork-bot+netdevbpf
  4 siblings, 0 replies; 10+ messages in thread
From: Kuniyuki Iwashima @ 2025-02-03 20:00 UTC (permalink / raw)
  To: kuba; +Cc: andrew+netdev, davem, edumazet, horms, kuniyu, netdev, pabeni,
	willemb

From: Jakub Kicinski <kuba@kernel.org>
Date: Sat,  1 Feb 2025 17:47:25 -0800
> Kuniyuki Iwashima has been a prolific contributor and trusted reviewer
> for some core portions of the networking stack for a couple of years now.
> Formalize some obvious areas of his expertise and list him as a maintainer.
> 
> Jakub Kicinski (3):
>   MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers
>   MAINTAINERS: add a general entry for BSD sockets
>   MAINTAINERS: add entry for UNIX sockets

Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>

Thank you so much !!!

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

* Re: [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer
  2025-02-02  1:47 [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Jakub Kicinski
                   ` (3 preceding siblings ...)
  2025-02-03 20:00 ` [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Kuniyuki Iwashima
@ 2025-02-03 21:30 ` patchwork-bot+netdevbpf
  4 siblings, 0 replies; 10+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-02-03 21:30 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, andrew+netdev, horms, kuniyu,
	willemb

Hello:

This series was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Sat,  1 Feb 2025 17:47:25 -0800 you wrote:
> Kuniyuki Iwashima has been a prolific contributor and trusted reviewer
> for some core portions of the networking stack for a couple of years now.
> Formalize some obvious areas of his expertise and list him as a maintainer.
> 
> Jakub Kicinski (3):
>   MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers
>   MAINTAINERS: add a general entry for BSD sockets
>   MAINTAINERS: add entry for UNIX sockets
> 
> [...]

Here is the summary with links:
  - [net,1/3] MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers
    https://git.kernel.org/netdev/net/c/4d896b353941
  - [net,2/3] MAINTAINERS: add a general entry for BSD sockets
    https://git.kernel.org/netdev/net/c/ae0585b04ab7
  - [net,3/3] MAINTAINERS: add entry for UNIX sockets
    https://git.kernel.org/netdev/net/c/8a2e22f665a0

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] 10+ messages in thread

end of thread, other threads:[~2025-02-03 21:30 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-02  1:47 [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Jakub Kicinski
2025-02-02  1:47 ` [PATCH net 1/3] MAINTAINERS: add Kuniyuki Iwashima to TCP reviewers Jakub Kicinski
2025-02-03  9:10   ` Eric Dumazet
2025-02-02  1:47 ` [PATCH net 2/3] MAINTAINERS: add a general entry for BSD sockets Jakub Kicinski
2025-02-03 10:54   ` Simon Horman
2025-02-03 14:30     ` Willem de Bruijn
2025-02-02  1:47 ` [PATCH net 3/3] MAINTAINERS: add entry for UNIX sockets Jakub Kicinski
2025-02-03 10:54   ` Simon Horman
2025-02-03 20:00 ` [PATCH net 0/3] MAINTAINERS: recognize Kuniyuki Iwashima as a maintainer Kuniyuki Iwashima
2025-02-03 21:30 ` 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;
as well as URLs for NNTP newsgroup(s).