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.

Merge tag 'probes-fixes-v6.17-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace

Pull probes fix from Masami Hiramatsu:
"Sanitize wildcard for fprobe event name

Fprobe event accepts wildcards for the target functions, but unless
the user specifies its event name, it makes an event with the
wildcards. Replace the wildcard '*' with the underscore '_'"

* tag 'probes-fixes-v6.17-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:
tracing: fprobe-event: Sanitize wildcard for fprobe event name

+1 -1
+1 -1
kernel/trace/trace.h
··· 2204 2204 static inline void sanitize_event_name(char *name) 2205 2205 { 2206 2206 while (*name++ != '\0') 2207 - if (*name == ':' || *name == '.') 2207 + if (*name == ':' || *name == '.' || *name == '*') 2208 2208 *name = '_'; 2209 2209 } 2210 2210