diff options
| author | Masami Hiramatsu (Google) <mhiramat@kernel.org> | 2026-07-02 21:12:40 +0900 |
|---|---|---|
| committer | Masami Hiramatsu (Google) <mhiramat@kernel.org> | 2026-07-14 22:43:16 +0900 |
| commit | 777bcbd2ac7d0af949d9f9741a93e939b81b04e7 (patch) | |
| tree | eba6ea1f78956fffad8c13d7c9e69c48cfbc8766 /tools/bootconfig/scripts | |
| parent | dccddc39aa7d0167e16e9fb94942fd37a30d581b (diff) | |
tools/bootconfig: Ignore comment lines in dynamic_events/kprobe_events file
Since dynamic_events/kprobe_events files show the fetcharg debug
information as comment lines, its reader needs to ignore it.
Link: https://lore.kernel.org/all/178271360563.1176915.423090353815990910.stgit@devnote2/
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Diffstat (limited to 'tools/bootconfig/scripts')
| -rwxr-xr-x | tools/bootconfig/scripts/ftrace2bconf.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/bootconfig/scripts/ftrace2bconf.sh b/tools/bootconfig/scripts/ftrace2bconf.sh index 1603801cf126..8eed445c295e 100755 --- a/tools/bootconfig/scripts/ftrace2bconf.sh +++ b/tools/bootconfig/scripts/ftrace2bconf.sh @@ -57,6 +57,8 @@ EOF kprobe_event_options() { cat $TRACEFS/kprobe_events | while read p args; do case $p in + \#*) + continue;; r*) cat 1>&2 << EOF # WARN: A return probe found but it is not supported by bootconfig. Skip it. |
