diff mbox series

libtracefs: Fixe tracefs_iterate_stop() when instance is used

Message ID 20221114235651.7c1b98d7@gandalf.local.home (mailing list archive)
State Accepted
Commit ad79e3d6799286f329db3e0521a97b1c5690f884
Headers show
Series libtracefs: Fixe tracefs_iterate_stop() when instance is used | expand

Commit Message

Steven Rostedt Nov. 15, 2022, 4:56 a.m. UTC
From: "Steven Rostedt (Google)" <rostedt@goodmis.org>

There was a cut and paste error where tracefs_iterate_stop() was using the
instance->pipe_keep_going instead of the instance->iterate_keep_going and
it caused the tracefs_iterate_stop() to not stop the iterator on
instances.

Fixes: ffcc062c6352d ("libtracefs: Add tracefs_iterate_stop()")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
 src/tracefs-events.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/src/tracefs-events.c b/src/tracefs-events.c
index e92663656688..daa81c07ecb5 100644
--- a/src/tracefs-events.c
+++ b/src/tracefs-events.c
@@ -418,7 +418,7 @@  int tracefs_iterate_raw_events(struct tep_handle *tep,
 						int, void *),
 				void *callback_context)
 {
-	bool *keep_going = instance ? &instance->pipe_keep_going :
+	bool *keep_going = instance ? &instance->iterate_keep_going :
 				      &top_iterate_keep_going;
 	struct cpu_iterate *all_cpus;
 	int count = 0;