diff mbox series

libtraceeval task-eval: Fix passing wrong teval to helper function

Message ID 20241025060532.4f2d6418@rorschach.local.home (mailing list archive)
State New
Headers show
Series libtraceeval task-eval: Fix passing wrong teval to helper function | expand

Commit Message

Steven Rostedt Oct. 25, 2024, 10:05 a.m. UTC
From: "Steven Rostedt (Google)" <rostedt@goodmis.org>

The addition of helper functions was supposed to make the code simpler,
but instead it ended up passing the wrong teval into one of the helper
functions due to a cut-and-paste error.

Pass the teval_cpus descriptor to the cpu helper function and not the
teval_threads descriptor.

Fixes: f38b05e1 ("libtraceeval task-eval: Simplify logic by adding more helper functions")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
 samples/task-eval.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/samples/task-eval.c b/samples/task-eval.c
index 178936d..5b6da1a 100644
--- a/samples/task-eval.c
+++ b/samples/task-eval.c
@@ -677,7 +677,7 @@  static void sched_out(struct task_data *tdata, const char *comm,
 	/* Update the individual thread as well */
 
 	insert_thread_data(pdata->teval_threads, pid, RUNNING, prio, delta, record->ts);
-	insert_cpu_data(pdata->teval_threads, record->cpu, RUNNING, delta, record->ts);
+	insert_cpu_data(pdata->teval_cpus, record->cpu, RUNNING, delta, record->ts);
 }
 
 static void sched_in(struct task_data *tdata, const char *comm,