kernel/trace: Fix cleanup logic of enable_trace_eprobe
authorTzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
Mon, 3 Jul 2023 04:28:53 +0000 (07:28 +0300)
committerMasami Hiramatsu (Google) <mhiramat@kernel.org>
Mon, 10 Jul 2023 15:44:57 +0000 (00:44 +0900)
commitcf0a624dc706c306294c14e6b3e7694702f25191
treea02574a4c77d36b656ab8ac11404a696897ab7ba
parent5f81018753dfd4989e33ece1f0cb6b8aae498b82
kernel/trace: Fix cleanup logic of enable_trace_eprobe

The enable_trace_eprobe() function enables all event probes, attached
to given trace probe. If an error occurs in enabling one of the event
probes, all others should be roll backed. There is a bug in that roll
back logic - instead of all event probes, only the failed one is
disabled.

Link: https://lore.kernel.org/all/20230703042853.1427493-1-tz.stoyanov@gmail.com/
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Fixes: 7491e2c44278 ("tracing: Add a probe that attaches to trace events")
Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Reviewed-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
kernel/trace/trace_eprobe.c