* [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments
@ 2025-05-28 5:35 Tal Zussman
2025-05-28 5:35 ` [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum Tal Zussman
` (3 more replies)
0 siblings, 4 replies; 12+ messages in thread
From: Tal Zussman @ 2025-05-28 5:35 UTC (permalink / raw)
To: Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers, Ingo Molnar,
Rik van Riel, Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86
Cc: linux-kernel, linux-trace-kernel, linux-mm, Tal Zussman
One minor fix and one minor cleanup related to the tlb_flush tracepoint.
As an aside, include/trace/events/tlb.h isn't covered by MAINTAINERS,
along with other mm related files under include/trace/events/. Flagging
this since I see there's a recent effort to overhaul the mm MAINTAINERS
entries.
It's been a while since I've submitted patches to the mailing list --
please let me know if anything looks off. Thanks!
Signed-off-by: Tal Zussman <tz2294@columbia.edu>
---
Tal Zussman (2):
x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum
mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS
include/linux/mm_types.h | 1 -
include/trace/events/tlb.h | 3 ++-
2 files changed, 2 insertions(+), 2 deletions(-)
---
base-commit: 200577f69f29a58c90c67c83a0df6d12850e1d09
change-id: 20250528-tlb-trace-fix-eb9b6fc7bb26
Best regards,
--
Tal Zussman <tz2294@columbia.edu>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum
2025-05-28 5:35 [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments Tal Zussman
@ 2025-05-28 5:35 ` Tal Zussman
2025-05-28 9:06 ` David Hildenbrand
2025-05-28 14:25 ` Rik van Riel
2025-05-28 5:35 ` [PATCH 2/2] mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS Tal Zussman
` (2 subsequent siblings)
3 siblings, 2 replies; 12+ messages in thread
From: Tal Zussman @ 2025-05-28 5:35 UTC (permalink / raw)
To: Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers, Ingo Molnar,
Rik van Riel, Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86
Cc: linux-kernel, linux-trace-kernel, linux-mm, Tal Zussman
When the TLB_REMOTE_WRONG_CPU enum was introduced for the tlb_flush
tracepoint, the enum was not exported to userspace. Add it to the
appropriate macro definition to enable parsing by userspace tools, as
per [0].
[0] Link: https://lore.kernel.org/all/20150403013802.220157513@goodmis.org
Fixes: 2815a56e4b72 ("x86/mm/tlb: Add tracepoint for TLB flush IPI to stale CPU")
Signed-off-by: Tal Zussman <tz2294@columbia.edu>
---
include/trace/events/tlb.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/trace/events/tlb.h b/include/trace/events/tlb.h
index b4d8e7dc38f8..725a75720a23 100644
--- a/include/trace/events/tlb.h
+++ b/include/trace/events/tlb.h
@@ -13,7 +13,8 @@
EM( TLB_REMOTE_SHOOTDOWN, "remote shootdown" ) \
EM( TLB_LOCAL_SHOOTDOWN, "local shootdown" ) \
EM( TLB_LOCAL_MM_SHOOTDOWN, "local mm shootdown" ) \
- EMe( TLB_REMOTE_SEND_IPI, "remote ipi send" )
+ EM( TLB_REMOTE_SEND_IPI, "remote ipi send" ) \
+ EMe( TLB_REMOTE_WRONG_CPU, "remote wrong CPU" )
/*
* First define the enums in TLB_FLUSH_REASON to be exported to userspace
--
2.39.5
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 2/2] mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS
2025-05-28 5:35 [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments Tal Zussman
2025-05-28 5:35 ` [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum Tal Zussman
@ 2025-05-28 5:35 ` Tal Zussman
2025-05-28 9:06 ` David Hildenbrand
2025-05-28 14:26 ` Rik van Riel
2025-05-28 9:09 ` [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments David Hildenbrand
2025-06-17 20:43 ` Tal Zussman
3 siblings, 2 replies; 12+ messages in thread
From: Tal Zussman @ 2025-05-28 5:35 UTC (permalink / raw)
To: Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers, Ingo Molnar,
Rik van Riel, Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86
Cc: linux-kernel, linux-trace-kernel, linux-mm, Tal Zussman
This has been unused since it was added 11 years ago in commit
d17d8f9dedb9 ("x86/mm: Add tracepoints for TLB flushes").
Signed-off-by: Tal Zussman <tz2294@columbia.edu>
---
include/linux/mm_types.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 3e934dc6057c..8b91362fcf8e 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -1539,7 +1539,6 @@ enum tlb_flush_reason {
TLB_LOCAL_MM_SHOOTDOWN,
TLB_REMOTE_SEND_IPI,
TLB_REMOTE_WRONG_CPU,
- NR_TLB_FLUSH_REASONS,
};
/**
--
2.39.5
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum
2025-05-28 5:35 ` [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum Tal Zussman
@ 2025-05-28 9:06 ` David Hildenbrand
2025-06-02 16:52 ` Steven Rostedt
2025-05-28 14:25 ` Rik van Riel
1 sibling, 1 reply; 12+ messages in thread
From: David Hildenbrand @ 2025-05-28 9:06 UTC (permalink / raw)
To: Tal Zussman, Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers,
Ingo Molnar, Rik van Riel, Andrew Morton, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86
Cc: linux-kernel, linux-trace-kernel, linux-mm
On 28.05.25 07:35, Tal Zussman wrote:
> When the TLB_REMOTE_WRONG_CPU enum was introduced for the tlb_flush
> tracepoint, the enum was not exported to userspace. Add it to the
> appropriate macro definition to enable parsing by userspace tools, as
> per [0].
>
> [0] Link: https://lore.kernel.org/all/20150403013802.220157513@goodmis.org
>
> Fixes: 2815a56e4b72 ("x86/mm/tlb: Add tracepoint for TLB flush IPI to stale CPU")
> Signed-off-by: Tal Zussman <tz2294@columbia.edu>
> ---
> include/trace/events/tlb.h | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/include/trace/events/tlb.h b/include/trace/events/tlb.h
> index b4d8e7dc38f8..725a75720a23 100644
> --- a/include/trace/events/tlb.h
> +++ b/include/trace/events/tlb.h
> @@ -13,7 +13,8 @@
> EM( TLB_REMOTE_SHOOTDOWN, "remote shootdown" ) \
> EM( TLB_LOCAL_SHOOTDOWN, "local shootdown" ) \
> EM( TLB_LOCAL_MM_SHOOTDOWN, "local mm shootdown" ) \
> - EMe( TLB_REMOTE_SEND_IPI, "remote ipi send" )
> + EM( TLB_REMOTE_SEND_IPI, "remote ipi send" ) \
> + EMe( TLB_REMOTE_WRONG_CPU, "remote wrong CPU" )
Reviewed-by: David Hildenbrand <david@redhat.com>
--
Cheers,
David / dhildenb
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS
2025-05-28 5:35 ` [PATCH 2/2] mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS Tal Zussman
@ 2025-05-28 9:06 ` David Hildenbrand
2025-05-28 14:26 ` Rik van Riel
1 sibling, 0 replies; 12+ messages in thread
From: David Hildenbrand @ 2025-05-28 9:06 UTC (permalink / raw)
To: Tal Zussman, Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers,
Ingo Molnar, Rik van Riel, Andrew Morton, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86
Cc: linux-kernel, linux-trace-kernel, linux-mm
On 28.05.25 07:35, Tal Zussman wrote:
> This has been unused since it was added 11 years ago in commit
> d17d8f9dedb9 ("x86/mm: Add tracepoints for TLB flushes").
>
> Signed-off-by: Tal Zussman <tz2294@columbia.edu>
> ---
> include/linux/mm_types.h | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
> index 3e934dc6057c..8b91362fcf8e 100644
> --- a/include/linux/mm_types.h
> +++ b/include/linux/mm_types.h
> @@ -1539,7 +1539,6 @@ enum tlb_flush_reason {
> TLB_LOCAL_MM_SHOOTDOWN,
> TLB_REMOTE_SEND_IPI,
> TLB_REMOTE_WRONG_CPU,
> - NR_TLB_FLUSH_REASONS,
> };
>
> /**
>
Acked-by: David Hildenbrand <david@redhat.com>
--
Cheers,
David / dhildenb
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments
2025-05-28 5:35 [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments Tal Zussman
2025-05-28 5:35 ` [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum Tal Zussman
2025-05-28 5:35 ` [PATCH 2/2] mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS Tal Zussman
@ 2025-05-28 9:09 ` David Hildenbrand
2025-06-03 22:52 ` Tal Zussman
2025-06-17 20:43 ` Tal Zussman
3 siblings, 1 reply; 12+ messages in thread
From: David Hildenbrand @ 2025-05-28 9:09 UTC (permalink / raw)
To: Tal Zussman, Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers,
Ingo Molnar, Rik van Riel, Andrew Morton, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86, Will Deacon,
Aneesh Kumar K.V, Nick Piggin, Peter Zijlstra
Cc: linux-kernel, linux-trace-kernel, linux-mm
On 28.05.25 07:35, Tal Zussman wrote:
> One minor fix and one minor cleanup related to the tlb_flush tracepoint.
>
> As an aside, include/trace/events/tlb.h isn't covered by MAINTAINERS,
> along with other mm related files under include/trace/events/. Flagging
> this since I see there's a recent effort to overhaul the mm MAINTAINERS
> entries.
Thanks for pointing that out.
It should likely go under "MMU GATHER AND TLB INVALIDATION"
diff --git a/MAINTAINERS b/MAINTAINERS
index 0ecc6063b2b5e..0e88ea5de5b73 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -16509,6 +16509,7 @@ L: linux-mm@kvack.org
S: Maintained
F: arch/*/include/asm/tlb.h
F: include/asm-generic/tlb.h
+F: include/trace/events/tlb.h
F: mm/mmu_gather.c
MN88472 MEDIA DRIVER
--
Cheers,
David / dhildenb
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum
2025-05-28 5:35 ` [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum Tal Zussman
2025-05-28 9:06 ` David Hildenbrand
@ 2025-05-28 14:25 ` Rik van Riel
1 sibling, 0 replies; 12+ messages in thread
From: Rik van Riel @ 2025-05-28 14:25 UTC (permalink / raw)
To: Tal Zussman, Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers,
Ingo Molnar, Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86
Cc: linux-kernel, linux-trace-kernel, linux-mm
On Wed, 2025-05-28 at 01:35 -0400, Tal Zussman wrote:
> When the TLB_REMOTE_WRONG_CPU enum was introduced for the tlb_flush
> tracepoint, the enum was not exported to userspace. Add it to the
> appropriate macro definition to enable parsing by userspace tools, as
> per [0].
>
> [0] Link:
> https://lore.kernel.org/all/20150403013802.220157513@goodmis.org
>
> Fixes: 2815a56e4b72 ("x86/mm/tlb: Add tracepoint for TLB flush IPI to
> stale CPU")
> Signed-off-by: Tal Zussman <tz2294@columbia.edu>
Good catch. Thank you!
Reviewed-by: Rik van Riel <riel@surriel.com>
--
All Rights Reversed.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS
2025-05-28 5:35 ` [PATCH 2/2] mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS Tal Zussman
2025-05-28 9:06 ` David Hildenbrand
@ 2025-05-28 14:26 ` Rik van Riel
1 sibling, 0 replies; 12+ messages in thread
From: Rik van Riel @ 2025-05-28 14:26 UTC (permalink / raw)
To: Tal Zussman, Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers,
Ingo Molnar, Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86
Cc: linux-kernel, linux-trace-kernel, linux-mm
On Wed, 2025-05-28 at 01:35 -0400, Tal Zussman wrote:
> This has been unused since it was added 11 years ago in commit
> d17d8f9dedb9 ("x86/mm: Add tracepoints for TLB flushes").
>
> Signed-off-by: Tal Zussman <tz2294@columbia.edu>
>
Reviewed-by: Rik van Riel <riel@surriel.com>
--
All Rights Reversed.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum
2025-05-28 9:06 ` David Hildenbrand
@ 2025-06-02 16:52 ` Steven Rostedt
0 siblings, 0 replies; 12+ messages in thread
From: Steven Rostedt @ 2025-06-02 16:52 UTC (permalink / raw)
To: David Hildenbrand
Cc: Tal Zussman, Masami Hiramatsu, Mathieu Desnoyers, Ingo Molnar,
Rik van Riel, Andrew Morton, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
x86, linux-kernel, linux-trace-kernel, linux-mm
On Wed, 28 May 2025 11:06:10 +0200
David Hildenbrand <david@redhat.com> wrote:
> > diff --git a/include/trace/events/tlb.h b/include/trace/events/tlb.h
> > index b4d8e7dc38f8..725a75720a23 100644
> > --- a/include/trace/events/tlb.h
> > +++ b/include/trace/events/tlb.h
> > @@ -13,7 +13,8 @@
> > EM( TLB_REMOTE_SHOOTDOWN, "remote shootdown" ) \
> > EM( TLB_LOCAL_SHOOTDOWN, "local shootdown" ) \
> > EM( TLB_LOCAL_MM_SHOOTDOWN, "local mm shootdown" ) \
> > - EMe( TLB_REMOTE_SEND_IPI, "remote ipi send" )
> > + EM( TLB_REMOTE_SEND_IPI, "remote ipi send" ) \
> > + EMe( TLB_REMOTE_WRONG_CPU, "remote wrong CPU" )
>
> Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Steven Rostedt (Google) <rostedt@goodmis.org>
I'm guessing this will go through the mm tree?
-- Steve
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments
2025-05-28 9:09 ` [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments David Hildenbrand
@ 2025-06-03 22:52 ` Tal Zussman
0 siblings, 0 replies; 12+ messages in thread
From: Tal Zussman @ 2025-06-03 22:52 UTC (permalink / raw)
To: David Hildenbrand
Cc: Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers, Ingo Molnar,
Rik van Riel, Andrew Morton, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
x86, Will Deacon, Aneesh Kumar K.V, Nick Piggin, Peter Zijlstra,
linux-kernel, linux-trace-kernel, linux-mm
Sent a patch here:
https://lore.kernel.org/linux-mm/20250603-tlb-maintainers-v1-1-726d193c6693@columbia.edu/
Thanks!
On Wed, May 28, 2025 at 5:09 AM David Hildenbrand <david@redhat.com> wrote:
>
> On 28. 05. 25 07: 35, Tal Zussman wrote: > One minor fix and one minor cleanup related to the tlb_flush tracepoint. > > As an aside, include/trace/events/tlb. h isn't covered by MAINTAINERS, > along with other mm related files under
> ZjQcmQRYFpfptBannerStart
> This Message Is From an External Sender
> This message came from outside your organization.
>
> ZjQcmQRYFpfptBannerEnd
>
> On 28.05.25 07:35, Tal Zussman wrote:
> > One minor fix and one minor cleanup related to the tlb_flush tracepoint.
> >
> > As an aside, include/trace/events/tlb.h isn't covered by MAINTAINERS,
> > along with other mm related files under include/trace/events/. Flagging
> > this since I see there's a recent effort to overhaul the mm MAINTAINERS
> > entries.
>
> Thanks for pointing that out.
>
> It should likely go under "MMU GATHER AND TLB INVALIDATION"
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 0ecc6063b2b5e..0e88ea5de5b73 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -16509,6 +16509,7 @@ L: linux-mm@kvack.org
> S: Maintained
> F: arch/*/include/asm/tlb.h
> F: include/asm-generic/tlb.h
> +F: include/trace/events/tlb.h
> F: mm/mmu_gather.c
>
> MN88472 MEDIA DRIVER
>
>
> --
> Cheers,
>
> David / dhildenb
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments
2025-05-28 5:35 [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments Tal Zussman
` (2 preceding siblings ...)
2025-05-28 9:09 ` [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments David Hildenbrand
@ 2025-06-17 20:43 ` Tal Zussman
2025-08-04 9:15 ` Tal Zussman
3 siblings, 1 reply; 12+ messages in thread
From: Tal Zussman @ 2025-06-17 20:43 UTC (permalink / raw)
To: Steven Rostedt, Masami Hiramatsu, Mathieu Desnoyers, Ingo Molnar,
Rik van Riel, Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, x86
Cc: linux-kernel, linux-trace-kernel, linux-mm
On Wed, May 28, 2025 at 1:35 AM Tal Zussman <tz2294@columbia.edu> wrote:
>
> One minor fix and one minor cleanup related to the tlb_flush tracepoint.
>
> As an aside, include/trace/events/tlb.h isn't covered by MAINTAINERS,
> along with other mm related files under include/trace/events/. Flagging
> this since I see there's a recent effort to overhaul the mm MAINTAINERS
> entries.
>
> It's been a while since I've submitted patches to the mailing list --
> please let me know if anything looks off. Thanks!
I don't see this series in any of the mm trees -- anything else that needs to be
done to get this in?
Thanks,
Tal
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments
2025-06-17 20:43 ` Tal Zussman
@ 2025-08-04 9:15 ` Tal Zussman
0 siblings, 0 replies; 12+ messages in thread
From: Tal Zussman @ 2025-08-04 9:15 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-kernel, linux-trace-kernel, linux-mm, Steven Rostedt,
Masami Hiramatsu, Mathieu Desnoyers, Ingo Molnar, Rik van Riel,
David Hildenbrand, x86, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko
Hi Andrew,
On Tue, Jun 17, 2025 at 11:43 PM Tal Zussman <tz2294@columbia.edu> wrote:
>
> On Wed, May 28, 2025 at 1:35 AM Tal Zussman <tz2294@columbia.edu> wrote:
> >
> > One minor fix and one minor cleanup related to the tlb_flush tracepoint.
> >
> > As an aside, include/trace/events/tlb.h isn't covered by MAINTAINERS,
> > along with other mm related files under include/trace/events/. Flagging
> > this since I see there's a recent effort to overhaul the mm MAINTAINERS
> > entries.
> >
> > It's been a while since I've submitted patches to the mailing list --
> > please let me know if anything looks off. Thanks!
>
> I don't see this series in any of the mm trees -- anything else that needs to be
> done to get this in?
Just wanted to follow up on this, as it seems like this series missed the
-mm branches for 6.17.
Thanks,
Tal
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-08-04 9:15 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-28 5:35 [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments Tal Zussman
2025-05-28 5:35 ` [PATCH 1/2] x86/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum Tal Zussman
2025-05-28 9:06 ` David Hildenbrand
2025-06-02 16:52 ` Steven Rostedt
2025-05-28 14:25 ` Rik van Riel
2025-05-28 5:35 ` [PATCH 2/2] mm: Remove tlb_flush_reason::NR_TLB_FLUSH_REASONS Tal Zussman
2025-05-28 9:06 ` David Hildenbrand
2025-05-28 14:26 ` Rik van Riel
2025-05-28 9:09 ` [PATCH 0/2] x86, mm: minor tlb_flush tracepoint adjustments David Hildenbrand
2025-06-03 22:52 ` Tal Zussman
2025-06-17 20:43 ` Tal Zussman
2025-08-04 9:15 ` Tal Zussman
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).