The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [GIT PULL] probes: Updates for v6.19
@ 2025-12-03  0:35 Masami Hiramatsu
  2025-12-05 19:00 ` pr-tracker-bot
  2025-12-05 19:00 ` pr-tracker-bot
  0 siblings, 2 replies; 3+ messages in thread
From: Masami Hiramatsu @ 2025-12-03  0:35 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Masami Hiramatsu, Menglong Dong, Thorsten Blum, Steven Rostedt,
	Masami Hiramatsu, linux-kernel

Hi Linus,

Probes for v6.19

- fprobe: Performance enhancement of the fprobe using rhltable
  . fprobe: use rhltable for fprobe_ip_table. The fprobe IP table has
    been converted to use an rhltable for improved performance when
    dealing with a large number of probed functions.
  . Fix a suspicious RCU usage warning of the above change in the
    fprobe entry handler.
  . Remove an unused local variable of the above change.
  . Fix to initialize fprobe_ip_table in core_initcall().

- fprobe: Performance optimization of fprobe by ftrace
  . fprobe: Use ftrace instead of fgraph for entry only probes. This
    avoids the unneeded overhead of fgraph stack setup.
  . Also update fprobe selftest for entry-only probe.
  . fprobe: Use ftrace only if CONFIG_DYNAMIC_FTRACE_WITH_ARGS or
    WITH_REGS is defined.

- probes: Cleanup probe event subsystems.
  . uprobe/eprobe: Allocate traceprobe_parse_context per probe instead
    of each probe argument parsing. This reduce memory allocation/free
    of temporary working memory.
  . uprobes: Cleanup code using __free().
  . eprobes: Cleanup code using __free().
  . probes: Cleanup code using __free(trace_probe_log_clear) to clear
    error log automatically.
  . probes: Replace strcpy() with memcpy() in __trace_probe_log_err().


Please pull the latest probes-v6.19 tree, which can be found at:


  git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
probes-v6.19

Tag SHA1: f5c785618b77385ed4fa930a17db87df26497f65
Head SHA1: cd06078a38aaedfebbf8fa0c009da0f99f4473fb


Masami Hiramatsu (Google) (6):
      tracing: probes: Use __free() for trace_probe_log
      tracing: eprobe: Cleanup eprobe event using __free()
      tracing: uprobes: Cleanup __trace_uprobe_create() with __free()
      tracing: uprobe: eprobes: Allocate traceprobe_parse_context per probe
      tracing: fprobe: Remove unused local variable
      tracing: fprobe: Fix to init fprobe_ip_table earlier

Menglong Dong (5):
      tracing: fprobe: use rhltable for fprobe_ip_table
      tracing: fprobe: fix suspicious rcu usage in fprobe_entry
      tracing: fprobe: optimization for entry only case
      lib/test_fprobe: add testcase for mixed fprobe
      tracing: fprobe: use ftrace if CONFIG_DYNAMIC_FTRACE_WITH_ARGS

Thorsten Blum (1):
      tracing: probes: Replace strcpy() with memcpy() in __trace_probe_log_err()

----
 include/linux/fprobe.h      |   3 +-
 kernel/trace/fprobe.c       | 301 ++++++++++++++++++++++++++++++++------------
 kernel/trace/trace_eprobe.c | 108 +++++++---------
 kernel/trace/trace_probe.c  |   5 +-
 kernel/trace/trace_probe.h  |   4 +-
 kernel/trace/trace_uprobe.c |  82 +++++-------
 lib/tests/test_fprobe.c     |  99 ++++++++++++++-
 7 files changed, 405 insertions(+), 197 deletions(-)

-- 
Masami Hiramatsu (Google) <mhiramat@kernel.org>

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

* Re: [GIT PULL] probes: Updates for v6.19
  2025-12-03  0:35 [GIT PULL] probes: Updates for v6.19 Masami Hiramatsu
@ 2025-12-05 19:00 ` pr-tracker-bot
  2025-12-05 19:00 ` pr-tracker-bot
  1 sibling, 0 replies; 3+ messages in thread
From: pr-tracker-bot @ 2025-12-05 19:00 UTC (permalink / raw)
  To: Masami Hiramatsu (Google)
  Cc: Linus Torvalds, Masami Hiramatsu (Google), Menglong Dong,
	Thorsten Blum, Steven Rostedt, Masami Hiramatsu, linux-kernel

The pull request you sent on Wed, 3 Dec 2025 09:35:46 +0900:

> git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git probes-v6.19

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/d1d36025a617906c1f442fe47af4a43532bff374

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* Re: [GIT PULL] probes: Updates for v6.19
  2025-12-03  0:35 [GIT PULL] probes: Updates for v6.19 Masami Hiramatsu
  2025-12-05 19:00 ` pr-tracker-bot
@ 2025-12-05 19:00 ` pr-tracker-bot
  1 sibling, 0 replies; 3+ messages in thread
From: pr-tracker-bot @ 2025-12-05 19:00 UTC (permalink / raw)
  To: Masami Hiramatsu (Google)
  Cc: Linus Torvalds, Masami Hiramatsu (Google), Menglong Dong,
	Thorsten Blum, Steven Rostedt, Masami Hiramatsu, linux-kernel

The pull request you sent on Wed, 3 Dec 2025 09:35:46 +0900:

> git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git probes-v6.19

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/d1d36025a617906c1f442fe47af4a43532bff374

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2025-12-05 19:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-03  0:35 [GIT PULL] probes: Updates for v6.19 Masami Hiramatsu
2025-12-05 19:00 ` pr-tracker-bot
2025-12-05 19:00 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox