* [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING
@ 2025-04-11 17:33 Liam R. Howlett
2025-04-11 17:47 ` SeongJae Park
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Liam R. Howlett @ 2025-04-11 17:33 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-mm, linux-kernel, linux-trace-kernel, Steven Rostedt,
Masami Hiramatsu, Mathieu Desnoyers, Liam R. Howlett
MEMORY MAPPING does not list the mmap.h trace point file, but does list
the mmap.c file. Couple the trace points with the users and authors of
the trace points for notifications of updates.
Cc:Andrew Morton <akpm@linux-foundation.org>
Cc:Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Cc:Vlastimil Babka <vbabka@suse.cz>
Cc:Jann Horn <jannh@google.com>
Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
---
MAINTAINERS | 1 +
1 file changed, 1 insertion(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 4c7fdc41a6bfb..d8e9a10adc81d 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -15571,6 +15571,7 @@ L: linux-mm@kvack.org
S: Maintained
W: http://www.linux-mm.org
T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
+F: include/trace/events/mmap.h
F: mm/mlock.c
F: mm/mmap.c
F: mm/mprotect.c
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING
2025-04-11 17:33 [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING Liam R. Howlett
@ 2025-04-11 17:47 ` SeongJae Park
2025-04-12 13:17 ` Liam R. Howlett
2025-04-11 18:33 ` Steven Rostedt
2025-04-15 9:05 ` Vlastimil Babka
2 siblings, 1 reply; 6+ messages in thread
From: SeongJae Park @ 2025-04-11 17:47 UTC (permalink / raw)
To: Liam R. Howlett
Cc: SeongJae Park, Andrew Morton, linux-mm, linux-kernel,
linux-trace-kernel, Steven Rostedt, Masami Hiramatsu,
Mathieu Desnoyers
On Fri, 11 Apr 2025 13:33:28 -0400 "Liam R. Howlett" <Liam.Howlett@oracle.com> wrote:
> MEMORY MAPPING does not list the mmap.h trace point file, but does list
> the mmap.c file. Couple the trace points with the users and authors of
> the trace points for notifications of updates.
>
> Cc:Andrew Morton <akpm@linux-foundation.org>
> Cc:Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> Cc:Vlastimil Babka <vbabka@suse.cz>
> Cc:Jann Horn <jannh@google.com>
> Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Aced-by: SeongJae Park <sj@kernel.org>
> ---
> MAINTAINERS | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 4c7fdc41a6bfb..d8e9a10adc81d 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -15571,6 +15571,7 @@ L: linux-mm@kvack.org
> S: Maintained
> W: http://www.linux-mm.org
> T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
> +F: include/trace/events/mmap.h
Should mmap_lock.h also be added here?
> F: mm/mlock.c
> F: mm/mmap.c
> F: mm/mprotect.c
> --
> 2.43.0
Thanks,
SJ
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING
2025-04-11 17:33 [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING Liam R. Howlett
2025-04-11 17:47 ` SeongJae Park
@ 2025-04-11 18:33 ` Steven Rostedt
2025-04-15 9:05 ` Vlastimil Babka
2 siblings, 0 replies; 6+ messages in thread
From: Steven Rostedt @ 2025-04-11 18:33 UTC (permalink / raw)
To: Liam R. Howlett
Cc: Andrew Morton, linux-mm, linux-kernel, linux-trace-kernel,
Masami Hiramatsu, Mathieu Desnoyers
On Fri, 11 Apr 2025 13:33:28 -0400
"Liam R. Howlett" <Liam.Howlett@oracle.com> wrote:
> MEMORY MAPPING does not list the mmap.h trace point file, but does list
> the mmap.c file. Couple the trace points with the users and authors of
> the trace points for notifications of updates.
>
> Cc:Andrew Morton <akpm@linux-foundation.org>
> Cc:Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> Cc:Vlastimil Babka <vbabka@suse.cz>
> Cc:Jann Horn <jannh@google.com>
> Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
> ---
> MAINTAINERS | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 4c7fdc41a6bfb..d8e9a10adc81d 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -15571,6 +15571,7 @@ L: linux-mm@kvack.org
> S: Maintained
> W: http://www.linux-mm.org
> T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
> +F: include/trace/events/mmap.h
Acked-by: Steven Rostedt (Google) <rostedt@goodmis.org>
-- Steve
> F: mm/mlock.c
> F: mm/mmap.c
> F: mm/mprotect.c
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING
2025-04-11 17:47 ` SeongJae Park
@ 2025-04-12 13:17 ` Liam R. Howlett
2025-04-12 15:47 ` SeongJae Park
0 siblings, 1 reply; 6+ messages in thread
From: Liam R. Howlett @ 2025-04-12 13:17 UTC (permalink / raw)
To: SeongJae Park
Cc: Andrew Morton, linux-mm, linux-kernel, linux-trace-kernel,
Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers,
Lorenzo Stoakes, Vlastimil Babka, Jann Horn
* SeongJae Park <sj@kernel.org> [250411 13:47]:
> On Fri, 11 Apr 2025 13:33:28 -0400 "Liam R. Howlett" <Liam.Howlett@oracle.com> wrote:
>
> > MEMORY MAPPING does not list the mmap.h trace point file, but does list
> > the mmap.c file. Couple the trace points with the users and authors of
> > the trace points for notifications of updates.
> >
> > Cc:Andrew Morton <akpm@linux-foundation.org>
> > Cc:Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> > Cc:Vlastimil Babka <vbabka@suse.cz>
> > Cc:Jann Horn <jannh@google.com>
> > Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
>
> Aced-by: SeongJae Park <sj@kernel.org>
>
> > ---
> > MAINTAINERS | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index 4c7fdc41a6bfb..d8e9a10adc81d 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -15571,6 +15571,7 @@ L: linux-mm@kvack.org
> > S: Maintained
> > W: http://www.linux-mm.org
> > T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
> > +F: include/trace/events/mmap.h
>
> Should mmap_lock.h also be added here?
Oh, well..
mmap_lock.h (include/trace/events/mmap_lock.h) has to do with
mm/mmap_lock.c, which also isn't listed here. Both exist for tracing as
well.
There is also include/linux/mmap_lock.h, which is the locking itself.
The mmap lock is used more broadly than just these files: mm/pagewalk.c
and mm/ksm.c, for instance.
So I guess that's a more difficult decision.
Thanks for bringing this up,
Liam
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING
2025-04-12 13:17 ` Liam R. Howlett
@ 2025-04-12 15:47 ` SeongJae Park
0 siblings, 0 replies; 6+ messages in thread
From: SeongJae Park @ 2025-04-12 15:47 UTC (permalink / raw)
To: Liam R. Howlett
Cc: SeongJae Park, Andrew Morton, linux-mm, linux-kernel,
linux-trace-kernel, Steven Rostedt, Masami Hiramatsu,
Mathieu Desnoyers, Lorenzo Stoakes, Vlastimil Babka, Jann Horn
On Sat, 12 Apr 2025 09:17:21 -0400 "Liam R. Howlett" <Liam.Howlett@oracle.com> wrote:
> * SeongJae Park <sj@kernel.org> [250411 13:47]:
[...]
> > > @@ -15571,6 +15571,7 @@ L: linux-mm@kvack.org
> > > S: Maintained
> > > W: http://www.linux-mm.org
> > > T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
> > > +F: include/trace/events/mmap.h
> >
> > Should mmap_lock.h also be added here?
>
> Oh, well..
>
> mmap_lock.h (include/trace/events/mmap_lock.h) has to do with
> mm/mmap_lock.c, which also isn't listed here. Both exist for tracing as
> well.
>
> There is also include/linux/mmap_lock.h, which is the locking itself.
> The mmap lock is used more broadly than just these files: mm/pagewalk.c
> and mm/ksm.c, for instance.
>
> So I guess that's a more difficult decision.
Makes perfect sense. Thank you for kindly clarifying this.
Thanks,
SJ
[...]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING
2025-04-11 17:33 [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING Liam R. Howlett
2025-04-11 17:47 ` SeongJae Park
2025-04-11 18:33 ` Steven Rostedt
@ 2025-04-15 9:05 ` Vlastimil Babka
2 siblings, 0 replies; 6+ messages in thread
From: Vlastimil Babka @ 2025-04-15 9:05 UTC (permalink / raw)
To: Liam R. Howlett, Andrew Morton
Cc: linux-mm, linux-kernel, linux-trace-kernel, Steven Rostedt,
Masami Hiramatsu, Mathieu Desnoyers
On 4/11/25 19:33, Liam R. Howlett wrote:
> MEMORY MAPPING does not list the mmap.h trace point file, but does list
> the mmap.c file. Couple the trace points with the users and authors of
> the trace points for notifications of updates.
>
> Cc:Andrew Morton <akpm@linux-foundation.org>
> Cc:Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> Cc:Vlastimil Babka <vbabka@suse.cz>
> Cc:Jann Horn <jannh@google.com>
> Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
> ---
> MAINTAINERS | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 4c7fdc41a6bfb..d8e9a10adc81d 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -15571,6 +15571,7 @@ L: linux-mm@kvack.org
> S: Maintained
> W: http://www.linux-mm.org
> T: git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
> +F: include/trace/events/mmap.h
> F: mm/mlock.c
> F: mm/mmap.c
> F: mm/mprotect.c
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-04-15 9:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-11 17:33 [PATCH] MAINTAINERS: Add mmap trace events to MEMORY MAPPING Liam R. Howlett
2025-04-11 17:47 ` SeongJae Park
2025-04-12 13:17 ` Liam R. Howlett
2025-04-12 15:47 ` SeongJae Park
2025-04-11 18:33 ` Steven Rostedt
2025-04-15 9:05 ` 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).