linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: add OOM killer maintainer structure
@ 2025-06-17  8:58 Michal Hocko
  2025-06-17 14:39 ` Shakeel Butt
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Michal Hocko @ 2025-06-17  8:58 UTC (permalink / raw)
  To: Andrew Morton; +Cc: David Rientjes, Shakeel Butt, linux-mm, LKML, Michal Hocko

From: Michal Hocko <mhocko@suse.com>

Acked-by: David Rientjes <rientjes@google.com>
Signed-off-by: Michal Hocko <mhocko@suse.com>
---
 MAINTAINERS | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 0c1d245bf7b8..5e339c1457ff 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -15841,6 +15841,14 @@ F:	mm/numa.c
 F:	mm/numa_emulation.c
 F:	mm/numa_memblks.c
 
+MEMORY MANAGEMENT - OOM KILLER
+M:	Michal Hocko <mhocko@suse.com
+R:	David Rientjes <rientjes@google.com>
+R:	Shakeel Butt <shakeel.butt@linux.dev>
+L:	linux-mm@kvack.org
+S:	Maintained
+F:	mm/oom_kill.c
+
 MEMORY MANAGEMENT - PAGE ALLOCATOR
 M:	Andrew Morton <akpm@linux-foundation.org>
 M:	Vlastimil Babka <vbabka@suse.cz>
-- 
2.49.0



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

* Re: [PATCH] mm: add OOM killer maintainer structure
  2025-06-17  8:58 [PATCH] mm: add OOM killer maintainer structure Michal Hocko
@ 2025-06-17 14:39 ` Shakeel Butt
  2025-06-17 15:10 ` Lorenzo Stoakes
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Shakeel Butt @ 2025-06-17 14:39 UTC (permalink / raw)
  To: Michal Hocko; +Cc: Andrew Morton, David Rientjes, linux-mm, LKML, Michal Hocko

On Tue, Jun 17, 2025 at 1:58 AM Michal Hocko <mhocko@kernel.org> wrote:
>
> From: Michal Hocko <mhocko@suse.com>
>
> Acked-by: David Rientjes <rientjes@google.com>
> Signed-off-by: Michal Hocko <mhocko@suse.com>

Acked-by: Shakeel Butt <shakeel.butt@linux.dev>


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

* Re: [PATCH] mm: add OOM killer maintainer structure
  2025-06-17  8:58 [PATCH] mm: add OOM killer maintainer structure Michal Hocko
  2025-06-17 14:39 ` Shakeel Butt
@ 2025-06-17 15:10 ` Lorenzo Stoakes
  2025-06-17 20:00   ` Michal Hocko
  2025-06-17 17:03 ` SeongJae Park
  2025-06-17 18:48 ` Vlastimil Babka
  3 siblings, 1 reply; 8+ messages in thread
From: Lorenzo Stoakes @ 2025-06-17 15:10 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Andrew Morton, David Rientjes, Shakeel Butt, linux-mm, LKML,
	Michal Hocko

On Tue, Jun 17, 2025 at 10:58:19AM +0200, Michal Hocko wrote:
> From: Michal Hocko <mhocko@suse.com>
>

No commit msg? :P

> Acked-by: David Rientjes <rientjes@google.com>
> Signed-off-by: Michal Hocko <mhocko@suse.com>

Thanks for this, saves me the trouble of doing this one :>)

Acked-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>

But you need to add a few more files:

> ---
>  MAINTAINERS | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 0c1d245bf7b8..5e339c1457ff 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -15841,6 +15841,14 @@ F:	mm/numa.c
>  F:	mm/numa_emulation.c
>  F:	mm/numa_memblks.c
>
> +MEMORY MANAGEMENT - OOM KILLER
> +M:	Michal Hocko <mhocko@suse.com
> +R:	David Rientjes <rientjes@google.com>
> +R:	Shakeel Butt <shakeel.butt@linux.dev>
> +L:	linux-mm@kvack.org
> +S:	Maintained

Also need to add:

F:	include/linux/oom.h
F:	include/trace/events/oom.h
F:	include/uapi/linux/oom.h

> +F:	mm/oom_kill.c
> +
>  MEMORY MANAGEMENT - PAGE ALLOCATOR
>  M:	Andrew Morton <akpm@linux-foundation.org>
>  M:	Vlastimil Babka <vbabka@suse.cz>
> --
> 2.49.0
>
>
>

Cheers, Lorenzo


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

* Re: [PATCH] mm: add OOM killer maintainer structure
  2025-06-17  8:58 [PATCH] mm: add OOM killer maintainer structure Michal Hocko
  2025-06-17 14:39 ` Shakeel Butt
  2025-06-17 15:10 ` Lorenzo Stoakes
@ 2025-06-17 17:03 ` SeongJae Park
  2025-06-17 18:48 ` Vlastimil Babka
  3 siblings, 0 replies; 8+ messages in thread
From: SeongJae Park @ 2025-06-17 17:03 UTC (permalink / raw)
  To: Michal Hocko
  Cc: SeongJae Park, Andrew Morton, David Rientjes, Shakeel Butt,
	linux-mm, LKML, Michal Hocko

Hi Michal,

On Tue, 17 Jun 2025 10:58:19 +0200 Michal Hocko <mhocko@kernel.org> wrote:

> From: Michal Hocko <mhocko@suse.com>
> 
> Acked-by: David Rientjes <rientjes@google.com>
> Signed-off-by: Michal Hocko <mhocko@suse.com>

Acked-by: SeongJae Park <sj@kernel.org>

> ---
>  MAINTAINERS | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 0c1d245bf7b8..5e339c1457ff 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -15841,6 +15841,14 @@ F:	mm/numa.c
>  F:	mm/numa_emulation.c
>  F:	mm/numa_memblks.c
>  
> +MEMORY MANAGEMENT - OOM KILLER
> +M:	Michal Hocko <mhocko@suse.com

Nit.  The closing '>' is missed.

> +R:	David Rientjes <rientjes@google.com>
> +R:	Shakeel Butt <shakeel.butt@linux.dev>
> +L:	linux-mm@kvack.org
> +S:	Maintained
> +F:	mm/oom_kill.c
> +
>  MEMORY MANAGEMENT - PAGE ALLOCATOR
>  M:	Andrew Morton <akpm@linux-foundation.org>
>  M:	Vlastimil Babka <vbabka@suse.cz>
> -- 
> 2.49.0


Thanks,
SJ


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

* Re: [PATCH] mm: add OOM killer maintainer structure
  2025-06-17  8:58 [PATCH] mm: add OOM killer maintainer structure Michal Hocko
                   ` (2 preceding siblings ...)
  2025-06-17 17:03 ` SeongJae Park
@ 2025-06-17 18:48 ` Vlastimil Babka
  3 siblings, 0 replies; 8+ messages in thread
From: Vlastimil Babka @ 2025-06-17 18:48 UTC (permalink / raw)
  To: Michal Hocko, Andrew Morton
  Cc: David Rientjes, Shakeel Butt, linux-mm, LKML, Michal Hocko

On 6/17/25 10:58, Michal Hocko wrote:
> From: Michal Hocko <mhocko@suse.com>
> 
> Acked-by: David Rientjes <rientjes@google.com>
> Signed-off-by: Michal Hocko <mhocko@suse.com>

With others' concerns addressed,

Acked-by: Vlastimil Babka <vbabka@suse.cz>

> ---
>  MAINTAINERS | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 0c1d245bf7b8..5e339c1457ff 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -15841,6 +15841,14 @@ F:	mm/numa.c
>  F:	mm/numa_emulation.c
>  F:	mm/numa_memblks.c
>  
> +MEMORY MANAGEMENT - OOM KILLER
> +M:	Michal Hocko <mhocko@suse.com
> +R:	David Rientjes <rientjes@google.com>
> +R:	Shakeel Butt <shakeel.butt@linux.dev>
> +L:	linux-mm@kvack.org
> +S:	Maintained
> +F:	mm/oom_kill.c
> +
>  MEMORY MANAGEMENT - PAGE ALLOCATOR
>  M:	Andrew Morton <akpm@linux-foundation.org>
>  M:	Vlastimil Babka <vbabka@suse.cz>



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

* Re: [PATCH] mm: add OOM killer maintainer structure
  2025-06-17 15:10 ` Lorenzo Stoakes
@ 2025-06-17 20:00   ` Michal Hocko
  2025-06-18  0:31     ` Andrew Morton
  0 siblings, 1 reply; 8+ messages in thread
From: Michal Hocko @ 2025-06-17 20:00 UTC (permalink / raw)
  To: Lorenzo Stoakes
  Cc: Andrew Morton, David Rientjes, Shakeel Butt, linux-mm, LKML

On Tue 17-06-25 16:10:07, Lorenzo Stoakes wrote:
> On Tue, Jun 17, 2025 at 10:58:19AM +0200, Michal Hocko wrote:
> > From: Michal Hocko <mhocko@suse.com>
> >
> 
> No commit msg? :P

Not much to say here I guess. I can give couple of words how much I love
this corner of the kernel but let's just give it a bit of silence
instead ;)

> > Acked-by: David Rientjes <rientjes@google.com>
> > Signed-off-by: Michal Hocko <mhocko@suse.com>
> 
> Thanks for this, saves me the trouble of doing this one :>)
> 
> Acked-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> 
> But you need to add a few more files:

Thanks!

Andrew, do you want me to respin with the sugested change or are you
going to pick those up?

> Also need to add:
> 
> F:	include/linux/oom.h
> F:	include/trace/events/oom.h
> F:	include/uapi/linux/oom.h

-- 
Michal Hocko
SUSE Labs


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

* Re: [PATCH] mm: add OOM killer maintainer structure
  2025-06-17 20:00   ` Michal Hocko
@ 2025-06-18  0:31     ` Andrew Morton
  2025-06-18  7:06       ` Michal Hocko
  0 siblings, 1 reply; 8+ messages in thread
From: Andrew Morton @ 2025-06-18  0:31 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Lorenzo Stoakes, David Rientjes, Shakeel Butt, linux-mm, LKML

On Tue, 17 Jun 2025 22:00:35 +0200 Michal Hocko <mhocko@suse.com> wrote:

> Andrew, do you want me to respin with the sugested change or are you
> going to pick those up?


From: Andrew Morton <akpm@linux-foundation.org>
Subject: mm-add-oom-killer-maintainer-structure-fix
Date: Tue Jun 17 05:26:51 PM PDT 2025

fix mhocko email address (SeongJae), add files (Lorenzo)

Acked-by: Shakeel Butt <shakeel.butt@linux.dev>
Acked-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Acked-by: SeongJae Park <sj@kernel.org>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Cc: David Rientjes <rientjes@google.com>
Cc: Michal Hocko <mhocko@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 MAINTAINERS |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

--- a/MAINTAINERS~mm-add-oom-killer-maintainer-structure-fix
+++ a/MAINTAINERS
@@ -15851,12 +15851,15 @@ F:	mm/numa_emulation.c
 F:	mm/numa_memblks.c
 
 MEMORY MANAGEMENT - OOM KILLER
-M:	Michal Hocko <mhocko@suse.com
+M:	Michal Hocko <mhocko@suse.com>
 R:	David Rientjes <rientjes@google.com>
 R:	Shakeel Butt <shakeel.butt@linux.dev>
 L:	linux-mm@kvack.org
 S:	Maintained
 F:	mm/oom_kill.c
+F:	include/linux/oom.h
+F:	include/trace/events/oom.h
+F:	include/uapi/linux/oom.h
 
 MEMORY MANAGEMENT - PAGE ALLOCATOR
 M:	Andrew Morton <akpm@linux-foundation.org>
_



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

* Re: [PATCH] mm: add OOM killer maintainer structure
  2025-06-18  0:31     ` Andrew Morton
@ 2025-06-18  7:06       ` Michal Hocko
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Hocko @ 2025-06-18  7:06 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Lorenzo Stoakes, David Rientjes, Shakeel Butt, linux-mm, LKML

On Tue 17-06-25 17:31:41, Andrew Morton wrote:
> On Tue, 17 Jun 2025 22:00:35 +0200 Michal Hocko <mhocko@suse.com> wrote:
> 
> > Andrew, do you want me to respin with the sugested change or are you
> > going to pick those up?
> 
> 
> From: Andrew Morton <akpm@linux-foundation.org>
> Subject: mm-add-oom-killer-maintainer-structure-fix
> Date: Tue Jun 17 05:26:51 PM PDT 2025
> 
> fix mhocko email address (SeongJae), add files (Lorenzo)
> 
> Acked-by: Shakeel Butt <shakeel.butt@linux.dev>
> Acked-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> Acked-by: SeongJae Park <sj@kernel.org>
> Acked-by: Vlastimil Babka <vbabka@suse.cz>
> Cc: David Rientjes <rientjes@google.com>
> Cc: Michal Hocko <mhocko@kernel.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

Thank you Andrew. LGTM

> ---
> 
>  MAINTAINERS |    5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> --- a/MAINTAINERS~mm-add-oom-killer-maintainer-structure-fix
> +++ a/MAINTAINERS
> @@ -15851,12 +15851,15 @@ F:	mm/numa_emulation.c
>  F:	mm/numa_memblks.c
>  
>  MEMORY MANAGEMENT - OOM KILLER
> -M:	Michal Hocko <mhocko@suse.com
> +M:	Michal Hocko <mhocko@suse.com>
>  R:	David Rientjes <rientjes@google.com>
>  R:	Shakeel Butt <shakeel.butt@linux.dev>
>  L:	linux-mm@kvack.org
>  S:	Maintained
>  F:	mm/oom_kill.c
> +F:	include/linux/oom.h
> +F:	include/trace/events/oom.h
> +F:	include/uapi/linux/oom.h
>  
>  MEMORY MANAGEMENT - PAGE ALLOCATOR
>  M:	Andrew Morton <akpm@linux-foundation.org>
> _

-- 
Michal Hocko
SUSE Labs


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

end of thread, other threads:[~2025-06-18  7:06 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-17  8:58 [PATCH] mm: add OOM killer maintainer structure Michal Hocko
2025-06-17 14:39 ` Shakeel Butt
2025-06-17 15:10 ` Lorenzo Stoakes
2025-06-17 20:00   ` Michal Hocko
2025-06-18  0:31     ` Andrew Morton
2025-06-18  7:06       ` Michal Hocko
2025-06-17 17:03 ` SeongJae Park
2025-06-17 18:48 ` Vlastimil Babka

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).