[lttng-dev] [LTTNG-TOOLS PATCH] Fix: increment channel refcount on add_stream

Julien Desfossez jdesfossez at efficios.com
Thu May 23 17:43:51 EDT 2013


Signed-off-by: Julien Desfossez <jdesfossez at efficios.com>
---
 src/common/consumer.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/common/consumer.c b/src/common/consumer.c
index c9e4bae..bfb809a 100644
--- a/src/common/consumer.c
+++ b/src/common/consumer.c
@@ -663,6 +663,9 @@ static int add_stream(struct lttng_consumer_stream *stream,
 		uatomic_inc(&relayd->refcount);
 	}
 
+	/* Update channel refcount once added without error(s). */
+	uatomic_inc(&stream->chan->refcount);
+
 	/*
 	 * When nb_init_stream_left reaches 0, we don't need to trigger any action
 	 * in terms of destroying the associated channel, because the action that
-- 
1.7.10.4




More information about the lttng-dev mailing list