linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 0/7] tracing: Creation of event probe
@ 2021-08-17  3:42 Steven Rostedt
  2021-08-17  3:42 ` [PATCH v6 1/7] tracing: Add DYNAMIC flag for dynamic events Steven Rostedt
                   ` (6 more replies)
  0 siblings, 7 replies; 20+ messages in thread
From: Steven Rostedt @ 2021-08-17  3:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: Ingo Molnar, Andrew Morton, Masami Hiramatsu, Tzvetomir Stoyanov,
	Tom Zanussi, linux-trace-devel

This is a patch series that adds the event probe feature and tries to
incorporate all of Masami's comments.

While updating Tzvetomir's patch, I found some other things that could be
changed as well, and some was added as extra patches.

For instance, removing the customize struct size macros from kprobe and
uprobe events and using the struct_size() macro.

To implement "REC->type" and show the event type for the trace event, the
traceprobe_set_print_fmt() needed to be updated to allow for that.

Instead of allocating a temp buffer that traceprobe_parse_probe_arg() can
manipulate, just have that function do the allocation instead of placing the
burden onto the callers.

Anyway, here's version 6!

-- Steve


Steven Rostedt (VMware) (6):
      tracing: Add DYNAMIC flag for dynamic events
      tracing: Have dynamic events have a ref counter
      tracing/probe: Have traceprobe_parse_probe_arg() take a const arg
      tracing/probes: Allow for dot delimiter as well as slash for system names
      tracing/probes: Use struct_size() instead of defining custom macros
      tracing/probe: Change traceprobe_set_print_fmt() to take a type

Tzvetomir Stoyanov (VMware) (1):
      tracing: Add a probe that attaches to trace events

----
 include/linux/trace_events.h        |  52 ++-
 kernel/trace/Makefile               |   1 +
 kernel/trace/trace.c                |   4 +-
 kernel/trace/trace.h                |  18 +
 kernel/trace/trace_dynevent.c       |  38 ++
 kernel/trace/trace_dynevent.h       |   4 +-
 kernel/trace/trace_eprobe.c         | 895 ++++++++++++++++++++++++++++++++++++
 kernel/trace/trace_event_perf.c     |   6 +-
 kernel/trace/trace_events.c         |  22 +-
 kernel/trace/trace_events_synth.c   |  21 +-
 kernel/trace/trace_events_trigger.c |  20 +-
 kernel/trace/trace_kprobe.c         |  43 +-
 kernel/trace/trace_probe.c          |  81 ++--
 kernel/trace/trace_probe.h          |  15 +-
 kernel/trace/trace_probe_tmpl.h     |   6 +-
 kernel/trace/trace_uprobe.c         |  34 +-
 16 files changed, 1156 insertions(+), 104 deletions(-)
 create mode 100644 kernel/trace/trace_eprobe.c

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

end of thread, other threads:[~2021-08-19  4:28 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-17  3:42 [PATCH v6 0/7] tracing: Creation of event probe Steven Rostedt
2021-08-17  3:42 ` [PATCH v6 1/7] tracing: Add DYNAMIC flag for dynamic events Steven Rostedt
2021-08-18  8:15   ` Masami Hiramatsu
2021-08-17  3:42 ` [PATCH v6 2/7] tracing: Have dynamic events have a ref counter Steven Rostedt
2021-08-18 16:14   ` Masami Hiramatsu
2021-08-17  3:42 ` [PATCH v6 3/7] tracing/probe: Have traceprobe_parse_probe_arg() take a const arg Steven Rostedt
2021-08-18 16:16   ` Masami Hiramatsu
2021-08-17  3:42 ` [PATCH v6 4/7] tracing/probes: Allow for dot delimiter as well as slash for system names Steven Rostedt
2021-08-18 10:57   ` Masami Hiramatsu
2021-08-17  3:43 ` [PATCH v6 5/7] tracing/probes: Use struct_size() instead of defining custom macros Steven Rostedt
2021-08-18 11:08   ` Masami Hiramatsu
2021-08-17  3:43 ` [PATCH v6 6/7] tracing/probe: Change traceprobe_set_print_fmt() to take a type Steven Rostedt
2021-08-18 16:19   ` Masami Hiramatsu
2021-08-17  3:43 ` [PATCH v6 7/7] tracing: Add a probe that attaches to trace events Steven Rostedt
2021-08-19  2:29   ` Masami Hiramatsu
2021-08-19  3:37     ` Steven Rostedt
2021-08-19  3:56       ` Masami Hiramatsu
2021-08-19  4:03         ` Steven Rostedt
2021-08-19  4:10           ` Steven Rostedt
2021-08-19  4:28           ` Masami Hiramatsu

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