Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

x86/mm/tlb/trace: Export the TLB_REMOTE_WRONG_CPU enum in <trace/events/tlb.h>

When the TLB_REMOTE_WRONG_CPU enum was introduced for the tlb_flush
tracepoint, the enum was not exported to user-space. Add it to the
appropriate macro definition to enable parsing by userspace tools, as
per:

Link: https://lore.kernel.org/all/20150403013802.220157513@goodmis.org

[ mingo: Capitalize IPI, etc. ]

Fixes: 2815a56e4b72 ("x86/mm/tlb: Add tracepoint for TLB flush IPI to stale CPU")
Signed-off-by: Tal Zussman <tz2294@columbia.edu>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Reviewed-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Rik van Riel <riel@surriel.com>
Link: https://patch.msgid.link/20251212-tlb-trace-fix-v2-1-d322e0ad9b69@columbia.edu

authored by

Tal Zussman and committed by
Ingo Molnar
8b62e64e 04350714

+3 -2
+3 -2
include/trace/events/tlb.h
··· 12 12 EM( TLB_FLUSH_ON_TASK_SWITCH, "flush on task switch" ) \ 13 13 EM( TLB_REMOTE_SHOOTDOWN, "remote shootdown" ) \ 14 14 EM( TLB_LOCAL_SHOOTDOWN, "local shootdown" ) \ 15 - EM( TLB_LOCAL_MM_SHOOTDOWN, "local mm shootdown" ) \ 16 - EMe( TLB_REMOTE_SEND_IPI, "remote ipi send" ) 15 + EM( TLB_LOCAL_MM_SHOOTDOWN, "local MM shootdown" ) \ 16 + EM( TLB_REMOTE_SEND_IPI, "remote IPI send" ) \ 17 + EMe( TLB_REMOTE_WRONG_CPU, "remote wrong CPU" ) 17 18 18 19 /* 19 20 * First define the enums in TLB_FLUSH_REASON to be exported to userspace